:root {
  --bg-light: #f8fafc;
  --text-dark: #0f172a;
  --text-gray: #64748b;
  --primary: #2563eb;
  --accent: #7c3aed;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(0, 0, 0, 0.05);
  --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --font-main: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.5;
}

/* --- DECORACIÓN DE FONDO --- */
.glow-bg {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.5;
}
.left-glow { top: -300px; left: -200px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%); }
.right-glow { bottom: -200px; right: -200px; background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%); }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; width: 100%;
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.logo { font-weight: 800; font-size: 22px; color: var(--text-dark); }

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  margin: 0 15px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}
.nav-links a:hover { color: var(--primary); }

.btn-nav {
  background: var(--text-dark);
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

/* --- LAYOUT --- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- HERO --- */
.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: white;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid var(--glass-border);
}

h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.04em;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-gray);
  margin-bottom: 40px;
  max-width: 520px;
}

.cta-group { display: flex; gap: 16px; }

.btn {
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.5); }

.btn-outline {
  background: white;
  border: 1px solid var(--glass-border);
  color: var(--text-dark);
}
.btn-outline:hover { background: #f8fafc; }

/* --- HERO VISUAL --- */
.visual-container { position: relative; }

.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.5);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid white;
}

.card-1 { top: 20%; left: -30px; animation: float 5s ease-in-out infinite; }
.card-2 { bottom: 15%; right: -20px; animation: float 6s ease-in-out infinite reverse; }

.user-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* --- FEATURES SECTION --- */
.features { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }

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

.card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  transition: 0.3s;
}
.card:hover { transform: translateY(-10px); border-color: var(--primary); }
.card-icon { font-size: 32px; margin-bottom: 20px; }

/* --- SECCIÓN MOCKUP ANCHO --- */
.full-mockup { margin: 60px 0; }
.wide-img {
    width: 100%;
    border-radius: 30px;
    height: 500px;
    object-fit: cover;
    box-shadow: var(--card-shadow);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-text p, .cta-group { margin: 0 auto 30px auto; justify-content: center; }
  h1 { font-size: 40px; }
  .grid { grid-template-columns: 1fr; }
  .floating-card { display: none; } /* Ocultar en móviles para evitar scroll horizontal */
}
/* --- COMPONENTE CHAT DINÁMICO --- */
.chat-window {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  height: 450px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.chat-header {
  background: #f8fafc;
  padding: 15px 20px;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-gray);
}

.status-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  overflow-y: auto;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  animation: msgAppear 0.5s ease backwards;
}

/* Burbujas */
.user-msg {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  border-bottom-right-radius: 4px;
}

.ai-msg {
  align-self: flex-start;
  background: #f1f5f9;
  color: var(--text-dark);
  border-bottom-left-radius: 4px;
  display: flex;
  gap: 10px;
}

.ai-avatar {
  min-width: 24px; height: 24px;
  background: var(--accent);
  color: white;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: bold;
}

.source-tag {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  font-style: italic;
  opacity: 0.8;
}

/* Animaciones de aparición escalonada */
@keyframes msgAppear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.delay-msg { animation-delay: 2s; }
.delay-msg-ai { animation-delay: 3.5s; }

/* Refuerzo visual para el contenedor */
.hero-visual {
  perspective: 1000px;
}

.visual-container {
  transform: rotateY(-5deg) rotateX(2deg);
  transition: 0.5s;
}

.visual-container:hover {
  transform: rotateY(0) rotateX(0);
}

/* --- CHAT REALISTA Whatafarma --- */
.chat-window {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  border: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  height: 550px; /* Un poco más alto para el flujo largo */
  width: 100%;
  max-width: 440px;
  position: relative;
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: #ffffff;
}

/* Animación de entrada para cada mensaje */
.chat-msg {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInMsg 0.4s ease forwards;
}

@keyframes fadeInMsg {
  to { opacity: 1; transform: translateY(0); }
}

/* Tiempos de retardo para simular conversación real */
.chat-msg:nth-child(1) { animation-delay: 0.5s; }
.chat-msg:nth-child(2) { animation-delay: 2s; }
.chat-msg:nth-child(3) { animation-delay: 3s; }
.chat-msg:nth-child(4) { animation-delay: 5s; }
.chat-msg:nth-child(5) { animation-delay: 6s; }
.chat-msg:nth-child(6) { animation-delay: 7.5s; }
.chat-msg:nth-child(7) { animation-delay: 8.5s; }
.chat-msg:nth-child(8) { animation-delay: 10s; }
.chat-msg:nth-child(9) { animation-delay: 11s; }
.chat-msg:nth-child(10) { animation-delay: 12.5s; }
.chat-msg:nth-child(11) { animation-delay: 13.5s; }
.chat-msg:nth-child(12) { animation-delay: 15.5s; }
.chat-msg:nth-child(13) { animation-delay: 16.5s; }

/* Estilo de burbujas mejorado */
.ai-content {
  background: #f1f5f9;
  padding: 12px 16px;
  border-radius: 4px 18px 18px 18px;
  font-size: 13.5px;
  color: #1e293b;
  line-height: 1.5;
}

.user-msg {
  align-self: flex-end;
  background: var(--primary);
  color: white;
  padding: 10px 16px;
  border-radius: 18px 18px 4px 18px;
  font-size: 14px;
}

.ai-avatar {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

/* Scroll automático visual (Simulado con animación de contenedor) */
.demo-chat-animation {
  animation: scrollUpChat 18s linear infinite;
}

@keyframes scrollUpChat {
  0% { transform: translateY(0); }
  70% { transform: translateY(-30%); }
  90% { transform: translateY(-30%); opacity: 1; }
  100% { opacity: 0; }
}/* --- SECCIÓN CÓMO FUNCIONA (ZIG-ZAG) --- */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 80px; /* Espacio entre filas */
  margin-top: 40px;
}

.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.step-row.reverse {
  direction: rtl; /* Invierte el orden visual */
}

.step-row.reverse .step-text {
  direction: ltr; /* Devuelve el texto a su dirección normal */
}

.step-image img {
  width: 100%;
  height: 400px; /* Altura fija para que todas sean iguales */
  object-fit: cover; /* Ajusta la imagen sin deformarla */
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--glass-border);
}

.step-text {
  padding: 20px;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  display: block;
  margin-bottom: 10px;
}

.step-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.step-text p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* --- RESPONSIVE PARA IMÁGENES GRANDES --- */
@media (max-width: 900px) {
  .step-row, .step-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
    text-align: center;
  }

  .step-image img {
    height: 300px; /* Reducimos un poco la altura en móvil */
  }

  .step-text {
    padding: 0;
  }
}


/* --- ESTILO BASE DEL LOGO --- */
.logo img {
  height: 40px; /* Tamaño ideal en escritorio */
  width: auto;
  display: block;
  transition: height 0.3s ease;
}

/* --- AJUSTE ESPECÍFICO PARA MÓVILES --- */
@media (max-width: 600px) {
  .logo img {
    height: 28px; /* Tamaño más pequeño y elegante para pantallas reducidas */
  }
  
  .navbar {
    padding: 10px 0; /* Reducimos el relleno de la barra para ganar espacio vertical */
  }

  .nav-content {
    padding: 0 16px; /* Ajustamos el margen lateral en móvil */
  }
}


@media (max-width: 600px) {
  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Si tienes muchos links, podrías ocultarlos o hacerlos más pequeños */
  .nav-links {
    display: none; /* Opcional: oculta links internos para dejar solo el logo y Acceder */
  }

  .btn-nav {
    padding: 6px 12px;
    font-size: 12px;
  }
}


/* --- SECCIÓN HERO ANCHO COMPLETO --- */
.hero-split {
  position: relative;
  width: 100vw;           /* 100% del ancho de la ventana */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;    /* Estos márgenes negativos fuerzan el ancho completo si está dentro de un contenedor */
  
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  padding: 100px calc((100vw - 1200px) / 2); /* Centra el contenido internamente */
  overflow: hidden;
}

/* El fondo que ocupa todo */
.hero-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/back.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.35; /* Intensidad suave para no molestar la vista */
  pointer-events: none;
  transition: transform 0.1s ease-out; /* Para el movimiento suave */
}

/* Contenedor del texto (sin cajas blancas ni bordes) */
.hero-text {
  max-width: 550px;
  z-index: 2;
}

/* Responsive para que en móviles no se rompa el ancho */
@media (max-width: 1250px) {
  .hero-split {
    padding-left: 5%;
    padding-right: 5%;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .hero-text {
    max-width: 100%;
  }
}

/* --- FOOTER 100% ANCHO REAL --- */
.footer-full {
    background-color: #0f172a;
    width: 100%;
    margin-top: 100px;
    color: #94a3b8;
    font-size: 14px;
    /* Esto asegura que rompa cualquier contenedor si por error sigue dentro del main */
    position: relative;
    left: 0;
}

/* Este contenedor centra el contenido dentro del fondo oscuro */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1.2fr 0.8fr;
    gap: 60px;
    padding: 80px 0 60px 0;
}

.footer-logo {
    height: 38px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2563eb;
}

/* Barra inferior negra */
.footer-bottom {
    background-color: #020617;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal a {
    margin-left: 20px;
    font-size: 12px;
    color: #64748b;
    text-decoration: none;
}

/* AJUSTE MÓVIL */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p { margin: 0 auto; }
    .bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* =========================
   PRICING IMPROVED
========================= */

.pricing {
  padding: 100px 0;
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.pricing-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--card-shadow);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

/* Plan Destacado (Pro) */
.pricing-card.featured {
  background: white;
  border: 2px solid var(--primary);
  scale: 1.05; /* Un poco más grande para resaltar */
  z-index: 10;
}

@media (max-width: 900px) {
  .pricing-card.featured { scale: 1; margin: 20px 0; }
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.plan-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.plan-subtitle {
  font-size: 14px;
  color: var(--text-gray);
  min-height: 40px;
}

.plan-price {
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #f1f5f9;
}

.plan-price .price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -1px;
}

.plan-price .period {
  font-size: 16px;
  color: var(--text-gray);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  flex-grow: 1;
}

.plan-features li {
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

/* Icono Check estilizado */
.plan-features li::before {
  content: "✓";
  color: #22c55e;
  font-weight: 900;
  background: rgba(34, 197, 94, 0.1);
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.full-width {
  width: 100%;
  display: block;
  text-align: center;
  padding: 16px !important;
}

 .trial-cta {
    max-width: 1100px;
    margin: 18px auto 26px;
    padding: 22px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 18px;
    align-items: center;
  }

  .trial-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(16,185,129,0.16);
    border: 1px solid rgba(16,185,129,0.35);
    color: rgba(255,255,255,0.92);
    width: fit-content;
  }

  .trial-title {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.2;
    color: #fff;
  }

  .trial-text {
    margin: 0 0 14px;
    color: rgba(255,255,255,0.78);
    max-width: 620px;
  }

  .trial-bullets {
    margin: 0;
    padding-left: 18px;
    color: rgba(255,255,255,0.88);
  }

  .trial-bullets li { margin: 6px 0; }

  .trial-cta-right {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .trial-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
  }

  .trial-eur {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
  }

  .trial-small {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
  }

  .trial-note {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.68);
  }

  @media (max-width: 900px) {
    .trial-cta { grid-template-columns: 1fr; }
  }

  /* Caja de contenido del Trial */
.trial-content-box {
  padding: 18px 20px;
  border-radius: 14px;
  background: rgb(49 94 179 / 100%);
  border: 1px solid rgba(255,255,255,0.18);
}

/* Ajustes de texto para máxima legibilidad */
.trial-title {
  color: #ffffff;
}

.trial-text {
  color: rgba(255, 255, 255, 0.85);
}

.trial-bullets {
  color: rgba(255, 255, 255, 0.9);
}


.faq-accordion {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-weight: 600;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.12);
}

.faq-body {
  padding: 0 18px 16px 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

.faq-body p {
  margin: 0;
}

/* pequeño “feedback” al foco para accesibilidad */
.faq-item summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
  border-radius: 12px;
}

/* --- FIX VISIBILIDAD FAQ --- */

#faq .faq-item summary {
  color: #0f172a; /* gris muy oscuro */
}

#faq .faq-body {
  color: #1f2937; /* texto legible */
}

#faq .faq-item {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

#faq .faq-icon {
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.15);
  background: rgba(15, 23, 42, 0.04);
}
