/* bot.css - Estilos para la sección del Bot IA */
/* Paleta: Naranja (#f57c00 / #ff9800), Azul oscuro (#1a2a4a), Blanco (#ffffff), Gris claro (#f5f7fa) */

/* ========== VARIABLES ========== */
.bot-section {
  --color-primary: #f57c00;
  --color-primary-hover: #e05a00;
  --color-primary-light: #ff9800;
  --color-secondary: #1a2a4a;
  --color-secondary-light: #2a3a6a;
  --color-bg: #f5f7fa;
  --color-white: #ffffff;
  --color-text: #1a2a4a;
  --color-text-light: #6b7a8f;
  --shadow-sm: 0 2px 8px rgba(26, 42, 74, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 42, 74, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 42, 74, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ========== SECCIÓN GENERAL ========== */
.bot-section {
  background: var(--color-bg);
  padding: 0 0 60px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
}

.bot-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: block;
}

.bot-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.bot-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 124, 0, 0.12);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.bot-section .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.bot-section .section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.bot-section .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  color: var(--color-white);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.35);
}

.bot-section .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 124, 0, 0.45);
}

.bot-section .btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-white);
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 1rem;
}

.bot-section .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-secondary);
}

/* ========== HERO ========== */
.bot-section .bot-hero {
  background: var(--color-secondary);
  padding: 100px 0 60px 0;
  position: relative;
  overflow: hidden;
}

.bot-section .bot-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 124, 0, 0.15), transparent 70%);
  border-radius: 50%;
}

.bot-section .bot-hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.bot-section .bot-hero-text {
  flex: 1;
  color: var(--color-white);
}

.bot-section .bot-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 124, 0, 0.2);
  color: var(--color-primary-light);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 124, 0, 0.3);
}

.bot-section .bot-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.bot-section .bot-hero-text h1 span {
  color: var(--color-primary-light);
}

.bot-section .bot-hero-text p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.bot-section .bot-hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}

.bot-section .stat-item {
  display: flex;
  flex-direction: column;
}

.bot-section .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
}

.bot-section .stat-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.bot-section .bot-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bot-section .bot-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ========== FUNCIONES PRINCIPALES ========== */
.bot-section .bot-features {
  padding: 70px 0 40px 0;
}

.bot-section .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bot-section .feature-card {
  background: var(--color-white);
  padding: 30px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--color-primary);
}

.bot-section .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bot-section .feature-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.bot-section .feature-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.bot-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bot-section .feature-list li {
  font-size: 0.95rem;
  color: var(--color-text-light);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.bot-section .feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.bot-section .feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 124, 0, 0.10);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 12px;
}

/* ========== SINCRONIZACIÓN ========== */
.bot-section .bot-sync {
  padding: 70px 0 40px 0;
  background: var(--color-white);
}

.bot-section .sync-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.bot-section .sync-text {
  flex: 1;
}

.bot-section .sync-text .section-tag {
  background: rgba(245, 124, 0, 0.10);
}

.bot-section .sync-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.bot-section .sync-text > p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.bot-section .sync-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bot-section .sync-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-bg);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.bot-section .sync-icon {
  font-size: 1.2rem;
  color: var(--color-primary);
}
.sync-image{
    background-color: #1a2a4a;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-md);
}

.bot-section .sync-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bot-section .sync-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ========== BENEFICIOS ========== */
.bot-section .bot-benefits {
  padding: 70px 0 40px 0;
}

.bot-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.bot-section .benefit-card {
  background: var(--color-white);
  padding: 30px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.bot-section .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bot-section .benefit-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.bot-section .benefit-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

.bot-section .benefit-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.5;
  margin: 0;
}

/* ========== CTA ========== */
.bot-section .bot-cta {
  padding: 40px 0 20px 0;
}

.bot-section .cta-box {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
  padding: 60px 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.bot-section .cta-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.bot-section .cta-box p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.bot-section .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bot-section .cta-box .btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
  box-shadow: 0 4px 15px rgba(245, 124, 0, 0.4);
}

.bot-section .cta-box .btn-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.bot-section .cta-box .btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-secondary);
  border-color: var(--color-white);
}
.bot-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);

}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .bot-section .bot-hero-content {
    flex-direction: column;
    text-align: center;
  }

  .bot-section .bot-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .bot-section .bot-hero-stats {
    justify-content: center;
  }

  .bot-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bot-section .sync-content {
    flex-direction: column;
    text-align: center;
  }

  .bot-section .sync-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bot-section .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .bot-section .bot-hero-text h1 {
    font-size: 2.2rem;
  }

  .bot-section .bot-hero-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .bot-section .features-grid {
    grid-template-columns: 1fr;
  }

  .bot-section .sync-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bot-section .benefits-grid {
    grid-template-columns: 1fr;
  }

  .bot-section .cta-box {
    padding: 40px 20px;
  }

  .bot-section .cta-box h2 {
    font-size: 1.6rem;
  }

  .bot-section .section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .bot-section .sync-grid {
    grid-template-columns: 1fr;
  }

  .bot-section .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .bot-section .btn-primary,
  .bot-section .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
}
