:root {
  --bg: #0b0f17;
  --card: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.2);
       --primary: #6c63ff;
      --primary-dark: #5651d9;
      --secondary: #00c9a7;
  --text: #e6eaf2;
  --muted: #a7b0c0;
  --brand: #6c8cff; /* Primary */
  --brand-2: #7ef2c6; /* Accent */
  --warn: #ffb86b;
  --danger: #ff6b7a;
  --ok: #5ee39f;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-lg: 28px;
  --grad-1: radial-gradient(
      1200px 600px at 10% -20%,
      rgba(108, 140, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 100% 20%,
      rgba(126, 242, 198, 0.18),
      transparent 60%
    ),
    linear-gradient(180deg, #0b0f17 0%, #0a0e16 100%);
    
  --grad-btn: linear-gradient(135deg, var(--brand), #a78bfa 60%, #7ef2c6 120%);
   --grad-btn-p: linear-gradient(135deg, var(--brand), #35d477 60%, #70c2a2 120%);

  --padding-container: 100px 0;

  --padding-container: clamp(30px, 5vw, 100px) 0;
  --max-width-container: min(90%, 1200px);
  --color-primary: #0dd241;
  --color-secondary: #13c041;
  /* --color-accent: #2091F9; */

  --container: 1200px;
  --grad-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.09),
    rgba(255, 255, 255, 0.04)
  );

  --ff-h: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --ff-b: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --gap: 28px;
  --fs-h1: clamp(1.6rem, 5.2vw, 4.4rem);
  --fs-h2: clamp(2rem, 4vw, 2.8rem);
  --fs-h3: clamp(1.4rem, 2.8vw, 1.6rem);
  --fs-lg: clamp(1.1rem, 1.8vw, 1.3rem);
  --fs-md: clamp(1rem, 1.5vw, 1.1rem);

  --accent: #a2ff5e; /* verde neón mejorado */
  --accent2: #4acfff; /* azul eléctrico mejorado */
  --accent3: #c396ff; /* violeta mejorado */

  --rad: 18px;
  --rad-lg: 24px;
  --rad-xl: 32px;

  --bg-light: #191972;
  --text-light: #ffffff;
  --text-gray: #2b0e0e;
  --text-dark: #1c1c1e;
  --border-radius: 15px;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}
* {
  box-sizing: border-box;
  
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: var(--grad-1);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(12px);
  background: linear-gradient(
    180deg,
    rgba(11, 15, 23, 0.8),
    rgba(11, 15, 23, 0.15)
  );
  border-bottom: 1px solid var(--stroke);
}

/* HERO */



  #hero.hero {
    min-height: 95vh;
    display: flex;
    flex-direction: column;   /* apila el contenido */
    justify-content: flex-start; /* ⬅️ alinea arriba */
    align-items: center;
    padding: 80px 10px 60px;      /* <-- Ajusta este valor para bajar un poco */
    position: relative;
    overflow: hidden;
    text-align: center;
    
  }


.hero {
  position: relative;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* background: url("nosotros.jpg") no-repeat center center; */
  background-size: cover;
  background-attachment: fixed;
}

/* Overlay para mejorar contraste */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.068);
  z-index: 1;
}

/* Contenido */
.hero .hero-grid {
  position: relative;
  z-index: 3; 
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Nuevo elemento para la imagen de fondo */
.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Debajo del canvas de partículas */
  background: url("/salud-mental.png") no-repeat center center/cover;
  opacity: 0.8;
  filter: saturate(1.1) contrast(1.05);
  pointer-events: none;

  /* Máscara para desvanecer la parte inferior de la imagen */
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.822) 0%,
    rgba(0, 0, 0, 0.411) 30%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.267) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.74) 0%,
    rgba(0, 0, 0, 0.9) 30%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.4) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Canvas de partículas */
#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  display: block;
  opacity: 0.6;
  z-index: 0; /* detrás de blobs y overlay */
  pointer-events: none;
}

/* Blobs */
.blob { z-index: 2; }

/* ********** Botón flecha hacia abajo ********** */
.scroll-down-indicator-pro {
  position: absolute;
  bottom: 5rem; /* distancia desde abajo */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 4; /* sobre el overlay */
}

.scroll-down-indicator-pro .arrow {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: arrowDown 1.8s infinite;
  opacity: 0;
}

.scroll-down-indicator-pro .arrow.delay-1 {
  animation-delay: 0.3s;
}
.scroll-down-indicator-pro .arrow.delay-2 {
  animation-delay: 0.6s;
}

@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(6px) rotate(45deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(12px) rotate(45deg) scale(0.8);
  }
}

.nav a.active,
.mobile-panel a.active {
  color: #1dd1a1; /* verde */
  font-weight: 700;
  position: relative;
}

.nav a.active::after,
.mobile-panel a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background-color: #1dd1a1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}
.brand .logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--grad-btn);
  box-shadow: 0 6px 18px rgba(108, 140, 255, 0.45);
}
.nav ul {
  list-style: none;
  display: none;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.nav a {
  color: var(--muted);
  font-weight: 500;
  opacity: 0.9;
}
.nav a:hover {
  color: var(--text);
}
.nav .cta {
  display: none;
}
.hamb {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--stroke);
  border-radius: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--grad-btn);
  color: #0b0f17;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(124, 111, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
  filter: saturate(110%);
  box-shadow: 0 16px 40px rgba(124, 111, 255, 0.35);
}
.btn.outline {
  /* background: transparent; */
  background: rgba(2, 2, 8, 0.692);
  color: var(--text);
  border: 1px solid var(--stroke);
}
.btn.outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* Animación de gradiente luminoso en movimiento */
/* Animación de gradiente luminoso en movimiento */
@keyframes liquidGlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn-glow {
  background: linear-gradient(
    135deg,
    var(--brand),
    #bae9b8f6 40%,
    #4fc2f7cb 80%,
    /* 💧 Nuevo color agregado */ #7ecdf2 120%
  );
  background-size: 300% 300%; /* más grande para movimiento fluido */
  animation: liquidGlow 6s ease-in-out infinite;
  color: #0b0f17;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(124, 111, 255, 0.35);
}

/* Hero */

.hero-title {
  /* color: white; */
   background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  line-height: 1.2;
  max-width: 800px;

  /* NUEVO: permite saltos de línea naturales */
  white-space: normal;
  word-break: break-word;

  /* Para efecto escritura */
  overflow: hidden;
  position: relative;
  min-height: 6rem; /* previene salto vertical al inicio */
  text-align: center;
}
#typewriter {
  padding: 12px;
  font-size: 2.4rem;
  
}

#areas .section-title {
  text-align: center;
}

#diferenciales .section-title {
  text-align: center;
}

#funciona .section-title {
  text-align: center;
}

.section-title {
  text-align: center;
}


.hero-grid {
  display: grid;
  gap: 28px;

}

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}


h1.hero-title {
  font-size: clamp(2rem, 3.6vw + 1rem, 4rem);
  line-height: 1.05;
  margin: 10px 0 14px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 10px;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
}



.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
  justify-content: center; /* Centra los botones */
}
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex; /* Mantendremos flex pero ajustaremos la dirección */
  flex-direction: column; /* Cambia a apilado vertical */
  align-items: center; /* Centra horizontalmente los elementos */
  text-align: center; /* Centra el texto dentro */
  margin: 14px auto; /* Centra el card como bloque */
  max-width: 700px; /* Ancho máximo legible */
  box-sizing: border-box;
}

.hero-card i {
  font-size: 1.8rem;
  color: var(--primary);
  vertical-align: middle;
  margin-bottom: 10px; /* Espacio entre el icono y el texto */
}

.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 60ch;
  margin: 0 auto; /* Centra el párrafo largo */
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
}

.badge-soft i {
  font-size: 1.2rem;
  /* color: var(--primary); */
}


/* Decorative blobs */
.blob {
  position: absolute;
  filter: blur(48px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}
.blob.b1 {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #6c8cff, transparent 60%);
  left: -120px;
  top: -120px;
}
.blob.b2 {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 30%, #7ef2c6, transparent 60%);
  right: -180px;
  top: -160px;
}

/* Stats */
.stats {
  margin: 30px 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}
.stat {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  
}
.stat i {
  font-size: 1.1rem;
  color: var(--brand-2);
  opacity: 0.9;
  /* animation: iconFadeIn 0.9s ease-out forwards, iconPulse 2.5s infinite 1.2s; */
  animation: pulseIcon 2.8s infinite ease-in-out;
}
.stat b {
  font-size: 1.6rem;
}
.stat small {
  color: var(--muted);
}

/* 
********************** */
#areas {
  position: relative;
  background: 
    radial-gradient(
      500px 400px at 50% 80%,  /* más pequeño y pegado al borde inferior */
      rgba(255, 120, 181, 0.116), 
      transparent 70%
    ),
    var(--grad-1);
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: screen; /* ayuda a que se note más sobre fondo oscuro */
}

/* Contenedor principal */
#planes {
  position: relative;
  padding: 2rem 1rem;
  background: 
    radial-gradient(
      500px 400px at 40% 30%,   /* 👈 subido al 30% para evitar borde */
      rgba(255, 182, 193, 0.096), 
      transparent 50%
    ),
    radial-gradient(
      700px 350px at 30% 30%,  
      rgba(173, 216, 230, 0.2), 
      transparent 70%
    ),
    linear-gradient(180deg, #0b0f17 0%, #0a0e16 100%);
  background-repeat: no-repeat;
  background-size: cover;
  border-top: none;
  margin-top: 0;
}


/* Contenedor principal */
#faq {
  position: relative;
  padding: 2rem 1rem;
  background: 
    /* toque rosado */
    radial-gradient(
      400px 400px at 10% 40%, 
      rgba(255, 182, 193, 0.15),
      transparent 70%
    ),
    /* toque celeste */
    radial-gradient(
      400px 350px at 20% 50%,  
      rgba(173, 216, 230, 0.22), 
      transparent 70%
    ),
    /* desvanecido superior ajustado */
    linear-gradient(
      to bottom,
      #0b0f17 0%,       /* sólido desde el inicio */
      #0b0f17 45%,      /* extiende el sólido un poco más */
      transparent 65%   /* transición suave */
    ),
    /* fondo base */
    linear-gradient(180deg, #0b0f17 0%, #0a0e16 100%);
    
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 0;
  border-top: none;
}

/* 📱 Móvil: desvanecido más largo */
@media (max-width: 768px) {

  
.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.05)
  );
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-sizing: border-box;
}
.hero-card i {
  font-size: 1.15rem;
  color: var(--brand);
}

  #typewriter {
    font-size: 2rem;
  padding: 12px;
  
}
  
/* Hero */

.hero-title {
  /* color: white; */
   background: linear-gradient(90deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  margin-bottom: 1.8rem;
  line-height: 1.2;
  max-width: 800px;

  /* NUEVO: permite saltos de línea naturales */
  white-space: normal;
  word-break: break-word;

  /* Para efecto escritura */
  overflow: hidden;
  position: relative;
  min-height: 6rem; /* previene salto vertical al inicio */
  text-align: center;
}
#typewriter {
  padding: 10px;
  
}
  #faq {
    background: 
      radial-gradient(
        400px 400px at 10% 50%, 
        rgba(255, 182, 193, 0.082),
        transparent 50%
      ),
      radial-gradient(
        400px 350px at 20% 60%,  
        rgba(173, 216, 230, 0.116), 
        transparent 40%
      ),
      linear-gradient(
        to bottom,
        #0b0f17 0%,      
        #0b0f17 55%,     /* más sólido en móvil */
        transparent 75%  /* desvanecido más tarde */
      ),
      linear-gradient(180deg, #0b0f17 0%, #0a0e16 100%);
  }
}


/* Animación al cargar */
@keyframes iconFadeIn {
  from {
    transform: translateY(-15px) scale(0.85);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Pulso continuo sutil */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(59, 130, 246, 0);
  }
  50% {
    transform: scale(1.09);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.3);
  }
}


/* Sections */
section {
  padding: 70px 0;
  box-sizing: border-box;
}




.section-sub-tex {
  color: var(--muted);          /* tono secundario */
  font-size: 1rem;              /* tamaño legible */
  line-height: 1.6;             /* mejora la lectura */
  max-width: 65ch;              /* buena longitud óptima */
  margin: 0 0 1.5rem;           /* separación limpia */
  font-weight: 400;             /* texto ligero */
  
  /* tipografía más suave en pantallas de alta resolución */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-align: center;   /* centra el texto */
  margin: 0 auto;       /* lo coloca en el medio */
  max-width: 70ch;      /* mantiene legibilidad */
  margin: -5px auto 30px; /* se pega un poco más al bloque de abajo */
  
}



.section-sub-tex-contact {
  color: var(--muted);          /* tono secundario */
  font-size: 1rem;              /* tamaño legible */
  line-height: 1.6;             /* mejora la lectura */
  max-width: 65ch;              /* buena longitud óptima */
  margin: 0 0 1.5rem;           /* separación limpia */
  font-weight: 400;             /* texto ligero */
  
  /* tipografía más suave en pantallas de alta resolución */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-align: center;   /* centra el texto */
  margin: 0 auto;       /* lo coloca en el medio */
  max-width: 70ch;      /* mantiene legibilidad */
  margin: -5px auto 30px; /* se pega un poco más al bloque de abajo */
  
}



.section-sub {
  color: var(--muted);          /* tono secundario */
  font-size: 1rem;              /* tamaño legible */
  line-height: 1.6;             /* mejora la lectura */
  max-width: 65ch;              /* buena longitud óptima */
  margin: 0 0 1.5rem;           /* separación limpia */
  font-weight: 400;             /* texto ligero */
  
  /* tipografía más suave en pantallas de alta resolución */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

/* ===== Frase Section ===== */
.frase-section {
  position: relative;
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(18, 25, 38, 0.95), rgba(10, 15, 25, 0.97));
  backdrop-filter: blur(14px);
  overflow: hidden;
}

/* Luces de ambiente difusas */
.frase-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -20%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle at 20% 30%, rgba(142, 197, 252, 0.25), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(224, 195, 252, 0.2), transparent 60%);
  filter: blur(100px);
  z-index: 0;
}

.container-frase {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 2rem;
  padding: 3.5rem 2.5rem;
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  animation: floatCard 7s ease-in-out infinite;
}



.section-title {
  font-size: 2.2rem;
  background: linear-gradient(90deg, #8ec5fc, #e0c3fc, #7ef2c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;

  /* margin-bottom: 12px; */
  line-height: 1.3;   /* controla la separación entre líneas */
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* deja que se divida en móviles */
}








.section-title-h2 {

  
  background: linear-gradient(90deg, #8ec5fc, #e0c3fc, #7ef2c6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: clamp(2.2rem, 1.8vw + 0.9rem, 2.2rem);
  margin-bottom: 12px;
  line-height: 1.3;   /* controla la separación entre líneas */
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* deja que se divida en móviles */
  text-align: center;
}

.dividers {
  width: 90px;
  height: 4px;
  margin: 0 auto 2.2rem auto;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb6c1, #7ef2c6, #8ec5fc);
  animation: glowDivider 4s ease-in-out infinite;
}

/* ===========================
   Centro: blockquote + author
   =========================== */
.testimonial,
.frase {
  display: flex;
  flex-direction: column;
  align-items: center;    /* centra horizontalmente */
  justify-content: center;
  gap: 0.75rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

/* Ajuste de la cita para mantener legibilidad y centrado */
.testimonial blockquote,
.frase blockquote {
  max-width: 72ch;           
  margin: 0;                 
  padding: 0 1rem;           
  font-size: 1.35rem;
  line-height: 1.85;
  font-style: italic;
  color: rgba(255, 255, 255, 0.92);
  word-break: break-word;
  display: block;
  transition: transform 0.3s ease;
}

.testimonial blockquote:hover,
.frase blockquote:hover {
  transform: scale(1.01);
}

/* Firma / autor centrado y elegante */
.testimonial .author,
.frase .author {
  display: inline-block;
  margin-top: 0.25rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: #7ef2c6;
  letter-spacing: 0.8px;
  opacity: 0.95;
  text-align: center;
}

/* Guion decorativo controlado por pseudo-elemento */
.testimonial .author::before,
.frase .author::before {
  content: "—";
  margin-right: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

/* Evitar doble guion si el HTML ya lo incluye */
.testimonial .author[data-hassymbol="true"]::before,
.frase .author[data-hassymbol="true"]::before {
  content: "";
}

/* Animaciones */
@keyframes glowDivider {
  0%, 100% { box-shadow: 0 0 15px rgba(255, 182, 193, 0.6); }
  50% { box-shadow: 0 0 28px rgba(126, 242, 198, 0.7); }
}

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

/* Responsive ajustes */
@media (max-width: 600px) {
  .testimonial blockquote,
  .frase blockquote {
    font-size: 1.05rem;
    max-width: 48ch;
    padding: 0 .75rem;
  }
  .testimonial .author,
  .frase .author {
    font-size: 0.95rem;
  }
}

/* ===== Horarios Premium ===== */
.schedule-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.97), rgba(18, 25, 38, 0.95));
  backdrop-filter: blur(12px);
  text-align: center;
}

.schedule-section .section-title {
  background: linear-gradient(90deg, #7ef2c6, #8ec5fc, #e0c3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.time-block {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1.7rem;
  padding: 2.5rem 2rem;
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.034);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.123);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  cursor: pointer;
}

.time-block:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 38px rgba(126, 242, 198, 0.075);
}

.time-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: #e0c3fc;
}

.time-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.time-block i {
  font-size: 1.9rem;
  color: #7ef2c6;
  animation: pulseIcon 2.8s infinite ease-in-out;
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.75; }
}

/* ===== Horarios Premium ===== */
.schedule-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, rgba(15, 20, 30, 0.95), rgba(18, 25, 38, 0.98));
  backdrop-filter: blur(12px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.schedule-section::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  /* background: radial-gradient(circle at 30% 40%, rgba(142, 197, 252, 0.1), transparent 70%),
              radial-gradient(circle at 70% 60%, rgba(224, 195, 252, 0.08), transparent 70%); */
  filter: blur(120px);
  z-index: 0;
  animation: ambientGlow 15s infinite alternate;
}

@keyframes ambientGlow {
  0% { opacity: 0.5; }
  100% { opacity: 0.9; }
}

.section-title-frase {
  background: linear-gradient(90deg, #7ef2c6, #8ec5fc, #e0c3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.divider {
  width: 90px;
  height: 4px;
  margin: 0 auto 2rem;
  border-radius: 50px;
  background: linear-gradient(90deg, #ffb6c1, #7ef2c6, #8ec5fc);
  box-shadow: 0 0 10px rgba(126, 242, 198, 0.3);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.time-block {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.time-block::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  z-index: 0;
  transition: transform 0.6s ease;
}

.time-block:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 32px rgba(126, 242, 198, 0.151);
}

.time-block:hover::after {
  transform: translate(20%, 20%);
}

.time-block h3 {
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  margin-bottom: 0.5rem;
  color: #e0c3fc;
  position: relative;
  z-index: 1;
}

.time-block p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}

.time-block i {
  font-size: clamp(1.6rem, 2.5vw, 1.9rem);
  color: #7ef2c6;
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
  display: inline-block;
}

/* Animaciones por periodo */

.morning i {
  animation: sunrise 8s infinite ease-in-out;
  background: linear-gradient(45deg, #ffeb3b, #ff9800, #ffe082);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.afternoon i { 
  animation: midday 8s infinite ease-in-out;
  background: linear-gradient(45deg, #ffeb3b, #f9a825, #ffca28);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

.night i {
  animation: moonlight 10s infinite ease-in-out;
  background: linear-gradient(45deg, #b0bec5, #455a64, #263238);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(176, 190, 197, 0.3), 0 0 15px rgba(255, 255, 255, 0.1); /* Estrellas */
}

.time-block.active i {
  transform: scale(1.3);
  color: #fff;
  text-shadow: 0 0 20px rgba(126, 242, 198, 0.6), 0 0 30px rgba(255, 255, 255, 0.2);
  animation: activeGlow 2s infinite alternate;
}

@keyframes activeGlow {
  0% { text-shadow: 0 0 15px rgba(126, 242, 198, 0.5), 0 0 25px rgba(255, 255, 255, 0.1); }
  100% { text-shadow: 0 0 25px rgba(126, 242, 198, 0.7), 0 0 35px rgba(255, 255, 255, 0.3); }
}

/* Animaciones del ciclo del día */
@keyframes sunrise {
  0% { transform: translateY(15px) rotate(-10deg); opacity: 0.6; }
  50% { transform: translateY(-5px) rotate(5deg); opacity: 0.9; }
  100% { transform: translateY(0) rotate(0deg); opacity: 1; }
}
@keyframes midday {
  0% { transform: scale(1) rotate(0deg); opacity: 0.8; }
  50% { 
    transform: scale(1.15) rotate(5deg); 
    opacity: 1; 
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.8); 
  }
  100% { transform: scale(1) rotate(-5deg); opacity: 0.9; }
}

@keyframes moonlight {
  0% { transform: translateY(10px) scale(1); opacity: 0.6; }
  50% { transform: translateY(-10px) scale(1.1); opacity: 0.9; text-shadow: 0 0 10px #fff, 0 0 20px #b0bec5; }
  100% { transform: translateY(0) scale(1); opacity: 0.7; }
}

/* Media Query para móviles */
@media (max-width: 768px) {
  .scroll-down-indicator-pro {
  position: absolute;
  bottom: 10rem; /* distancia desde abajo */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 4; /* sobre el overlay */
}

  .schedule-section {
    padding: 3.5rem 1rem;
  }

  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .time-block {
    padding: 1.5rem 1rem;
    border-radius: 1.2rem;
  }

  .time-block i {
    font-size: clamp(1.5rem, 2.5vw, 1.6rem);
  }
}


@media (max-width: 768px) {
  .section-sub {
    font-size: 0.95rem;     /* ligeramente más pequeño en móvil */
    line-height: 1.5;       /* menos espaciado */
    margin: 0 0 1rem;
  }
}


#approach .section-title {
  font-size: 2rem; /* Cambia a tu preferencia: 2rem = ~32px */
  font-weight: bold;
  text-align: center;
}



#beneficios .section-title {
  font-size: 2rem; /* Cambia a tu preferencia: 2rem = ~32px */
  font-weight: bold;
  text-align: center;
}




#testimonios .section-title {
  font-size: 2rem; /* Cambia a tu preferencia: 2rem = ~32px */
  font-weight: bold;
  text-align: center;
}






#planes.section-title {
  font-size: 2rem; /* Cambia a tu preferencia: 2rem = ~32px */
  font-weight: bold;
  text-align: center;
}

/* Areas grid */
.areas {
  display: grid;
  gap: 14px;
}
.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}
.card .icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--stroke);
  margin-bottom: 10px;
   animation: iconFadeIn 0.9s ease-out forwards, iconPulse 2.5s infinite 1.2s;
}
.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--stroke);
  color: var(--muted);
}

/* How it works */
.steps {
  display: grid;
  gap: 14px;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.badge {
  width: 98px;
  height: 50px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--stroke);
  font-weight: 800;
    animation: iconFadeIn 0.9s ease-out forwards, iconPulse 2.5s infinite 1.2s;
  
}


/* Badges */

.badge i{
 
   animation: iconFadeIn 0.9s ease-out forwards, iconPulse 2.5s infinite 1.2s;
}

/* Benefits list */
.benefits {
  display: grid;
  gap: 12px;
}
.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.benefit i {
  color: var(--brand-2);
}

/* Testimonials */
.testis {
  display: grid;
  gap: 14px;
}
.quote {
  position: relative;
  padding: 0px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow);
}
.quote:before {
  content: "\201C";
  position: absolute;
  left: 14px;
  top: 18px;
  font-size: 64px;
  line-height: 0;
  color: rgba(255, 255, 255, 0.16);
}

.quote {
  position: relative;
  padding: 20px; /* antes era 0, ahora da aire al contenido */
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow);
}

.quote blockquote {
  margin: 0; /* elimina márgenes por defecto del <blockquote> */
}

.quote .section-sub {
  display: flex; /* ícono + texto alineados en fila */
  align-items: center; /* centra verticalmente */
  gap: 6px; /* espacio entre ícono y texto */
  margin-top: 12px; /* separación del texto principal */
  font-size: 0.9rem; /* tamaño uniforme y más discreto */
  opacity: 0.85; /* opcional: estilo secundario */
}

.quote-header {
  display: flex;
  align-items: flex-start;
  gap: 1px;
}

.quote-avatar {
  width: 38px;       /* tamaño pequeño */
  height: 38px;
  border-radius: 50%; /* hace la imagen circular */
  object-fit: cover; /* evita distorsión */
  flex-shrink: 0;    /* evita que se deforme */
  margin-left: 200px;
  margin-top: -50px;
}




/* 
******************************************************************* */


.btn-premium {
  display: inline-block;
  background: linear-gradient(135deg, #6c63ff, #9b8fff);
  color: #fff;
  padding: 1rem 5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
}


/* efecto hover */
.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.6),
    0 0 40px rgba(155, 143, 255, 0.4);
}


/* animación suave de glow */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
  }
}

.btn-premium {
  animation: glowPulse 3s infinite ease-in-out;
}


/* ---------------------------
       APPROACH SECTION MEJORADA
    --------------------------- */
.approach-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.approach-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.approach-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}
.approach-card i { 
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary));
  background-size: 250% 250%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 8s ease-in-out infinite, pulseGlow 6s ease-in-out infinite;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: inline-block;
}



/* Hover */
.approach-card:hover i {
  transform: scale(1.2) rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(255,255,255,0.4));
}

/* Gradiente líquido más fluido */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Pulso realista, suave */


/* Pulso realista, suave (solo glow, no usa transform) */
@keyframes pulseGlow {
  0%   { filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)); }
  25%  { filter: drop-shadow(0 0 14px rgba(255,255,255,0.35)); }
  50%  { filter: drop-shadow(0 0 20px rgba(255,255,255,0.45)); }
  75%  { filter: drop-shadow(0 0 14px rgba(255,255,255,0.35)); }
  100% { filter: drop-shadow(0 0 6px rgba(255,255,255,0.25)); }
}



.approach-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.approach-card p {
  color: var(--text-muted);
}


/* ---------------------------
       BENEFICIOS MEJORADOS
    --------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
   background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  
}


.benefit-item:hover {
  background: var(--glass);
  background: rgba(255, 255, 255, 0.06);
   border: 1px solid var(--stroke);
  transform: translateY(-5px);
}



.benefit-item i {
  color: rgba(238, 234, 234, 0.945);
  font-size: 1.8rem;
  background: rgba(165, 164, 189, 0.1);
  padding: 0.8rem;
  border-radius: 10px;
  min-width: 60px;
  text-align: center;
}


.benefit-item p {
  margin: 0;
  font-weight: 500;
  color: var(--text-light);
}





/* Benefits grid layout */
.benefitp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}


/* Featured image with shadow and subtle animation */
.problems-image-2 {
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--shadow-color);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}


.problems-image-2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}




/* ---------------------------
       PLANES MEJORADOS (ACTUALIZADO)
    --------------------------- */
.plans-section {
  position: relative;
}

.share-container {
  text-align: center;
  margin-bottom: 2rem;
}

.compartir-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 2px solid rgba(218, 165, 32, 0.705);
  color: rgba(218, 165, 32, 0.705);
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.compartir-btn:hover {
  background: rgba(218, 165, 32, 0.466);
  /* background: var(--primary); */
  color: white;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.plan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
   /* border: 1px solid rgba(36, 211, 144, 0.76); */
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.plan-card.featured {
  transform: scale(1.03);
  border:2px solid rgba(162, 248, 23, 0.541);
  /* border: 2px solid var(--primary); */
  box-shadow: 0 15px 35px rgba(108, 99, 255, 0.2);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  /* border-color: var(--primary); */
   border: 1px solid rgba(36, 211, 144, 0.76);
}

.plan-card.featured:hover {
  transform: translateY(-8px) scale(1.03);
}

.plan-header {
  padding: 2rem;
  text-align: center;
  position: relative;
}

.plan-header-gratis {
  background: linear-gradient(135deg, #91d18b, #c1e1a6b4);
  border-radius: 14px;
}


/* 
************************ */

.plan-header-gratis { 
  background: linear-gradient(135deg, rgba(145, 209, 139, 0.589), rgba(193, 225, 166, 0.35));
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.35); 
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 25px rgba(145, 209, 139, 0.25), inset 0 0 15px rgba(255,255,255,0.08);
  color: #fff; /* para mantener buen contraste */
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

/* efecto de brillo sutil animado */
.plan-header-gratis::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 234, 234, 0), transparent 60%);
  transform: rotate(25deg);
  animation: shine 8s linear infinite;
}

@keyframes shine {
  0%   { transform: translate(-30%, -30%) rotate(25deg); }
  50%  { transform: translate(30%, 30%) rotate(25deg); }
  100% { transform: translate(-30%, -30%) rotate(25deg); }
}


.plan-header-standard {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(108, 184, 230, 0.25),
    rgba(157, 217, 243, 0.15)
  );
  border-radius: 14px;
  padding: 1.2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    /* sombra realista */ inset 0 1px 1px rgba(255, 255, 255, 0.4),
    /* brillo interno */ inset 0 -1px 2px rgba(0, 0, 0, 0.1); /* contraste interno */
  overflow: hidden;
}

/* Efecto de brillo/reflejo diagonal */
.plan-header-standard::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    transparent 60%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}
.plan-header-mind {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(108, 212, 143, 0.25),
    rgba(230, 157, 179, 0.15)
  );
  border-radius: 14px;
  padding: 1.2rem;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    inset 0 1px 1px rgba(81, 252, 209, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #fff;
}

/* Reflejo de cristal */
.plan-header-mind::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 60%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 2;
}

/* Canvas de partículas */
.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* *********************************     */
.plan-header-evolut {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(65, 195, 255, 0.651),
    /* #a177e8 */ rgba(207, 230, 245, 0.397) /* #c7b5ff */
  );
  border-radius: 14px;

  /* Efecto glass */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  /* Bordes y sombras sutiles */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
    /* sombra externa */ inset 0 1px 1px rgba(255, 255, 255, 0.4),
    /* brillo interno superior */ inset 0 -1px 2px rgba(0, 0, 0, 0.1); /* sombra interna inferior */
  overflow: hidden;
}

/* Reflejo de cristal */
.plan-header-evolut::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 40%,
    transparent 60%
  );
  transform: skewX(-25deg);
  pointer-events: none;
}

.plan-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.price-01 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.plan-content {
  padding: 1.5rem;
  margin-left: -20px;
}

.plan-content ul {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-content li {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.li-destacado {
  font-weight: 600;
  color: var(--text-light) !important;
}

.li-destacado {
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: bold;
  padding: 10px 0;
  list-style: none;
  margin-bottom: 1rem;
  border-bottom: 0.3px solid #ddd;
}

.plan-content li i {
  color: var(--secondary);
  min-width: 20px;
}

.note {
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-style: italic;
}
/* 
/////////////////////////////PDF////////////// */

.btn-pdf {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  background-color: #0066cc;
  color: white;
  border: none;
}

.btn-pdf:hover {
  background-color: #004a99;
}



.pdf-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  overflow-y: auto; /* Permite scroll en el modal */
}

.pdf-modal-content {
  position: relative;
  margin: 5% auto;
  width: 95%;
  max-width: 600px;
  max-height: 99vh; /* Altura máxima */
  background: #301111b4;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto; /* Scroll interno si el contenido es muy largo */
}

#pdfCanvas {
  max-width: 100%;
  max-height: 99vh; /* Ajusta según necesidad */
  margin-bottom: 1rem;
}

/* Resto del CSS se mantiene igual */
.pdf-close {
  position: absolute;
  top: 8px;
  right: 17px;
  font-size: 37px;
  font-weight: bold;
  color: #61dd0f;
  cursor: pointer;
}

.pdf-controls {
  margin-top: 10px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.pdf-controls button {
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
}


.pdf-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
  color: #0f0; /* Verde */
  font-weight: bold;
}

.spinner {
  border: 4px solid rgba(255,255,255,0.2);
  border-top: 4px solid #0f0; /* Verde brillante */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* 

///////////////////////////// */
/* En escritorio → PDF más ancho */
@media (min-width: 992px) {
  .pdf-modal-content {
    max-width: 90%;   /* Ocupa casi todo el ancho */
    width: 95%;
    height: 95vh;     /* Altura más grande */
    max-height: 90vh;
    background: #301111b4;
    padding: 2rem;
  }

  #pdfCanvas {
    max-width: 100%;
    max-height: 145vh;  /* Aprovecha casi toda la pantalla */
  }
}




.popular-badge {
  position: absolute;
  top: 30px;
  right: -32px;
  background: linear-gradient(135deg, #ff4d4f, #ff6a00);
  color: white;
  padding: 6px 50px;
  font-size: 0.75rem;
  font-weight: 500;
  transform: rotate(45deg);
  z-index: 1;
  animation: fadeBounce 2s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(255, 77, 79, 0.2);
  letter-spacing: 1px;
}
/*     
    .discount-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: linear-gradient(135deg, #00c9a7, #00a98a);
      color: white;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 500;
      z-index: 1;
      box-shadow: 0 4px 10px rgba(0, 201, 167, 0.2);
      display: flex;
      align-items: center;
      gap: 5px;
    } */

@keyframes fadeBounce {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: rotate(45deg) scale(1.08);
    opacity: 0.9;
  }
}

/* Entrada suave */
@keyframes badgeFadeIn {
  from {
    transform: translateY(-20px) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Pulsación suave */
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 77, 79, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 77, 79, 0.5);
  }
}

/* Badge animado para ahorro */
.discount-badge.animated-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ff6a00, #ff4d4f);
  color: white;
  font-size: 0.65rem; /* reducido */
  font-weight: 600; /* más ligero */
  padding: 3px 9px; /* reducido */
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  box-shadow: 0 2px 10px rgba(255, 77, 79, 0.3);
  z-index: 10;
  text-transform: uppercase;
  animation: badgeFadeIn 1s ease-out forwards, badgePulse 2.5s infinite 1.2s;
  opacity: 0;
}

.discount-badge.animated-badge i {
  font-size: 0.85rem;
}

/* Entrada suave */
@keyframes badgeFadeIn {
  from {
    transform: translateY(-20px) scale(0.7);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Pulsación suave */
@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(255, 77, 79, 0.3);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(255, 77, 79, 0.5);
  }
}



.btn-center-wrapper {
  text-align: center;
  margin-top: 3rem;
}


.btn-pdf {
  display: inline-block;
  background: linear-gradient(135deg, #7bf18b98, #27e797);
  color: #fff;
  padding: 1rem 5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 10px rgba(202, 201, 229, 0.4);
}

.btn-pdf:hover {
  background-color: #004a99;
}


.btn-wrapper {
  text-align: center; /* centra el botón */
  margin-top: 20px;
}
.btn-wrapper {
  text-align: center;
  margin-top: 30px;
}

.btn-p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #070603;
  background: linear-gradient(135deg, #d4af37, #ffd900d8, #f5d76e, #b8860b);
  background-size: 300% 300%;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  animation: goldGlow 6s ease infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-p:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 215, 0, 0.7);
  filter: brightness(1.1);
}

/* Animación gradiente líquido oro */
@keyframes goldGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}




/* Benefits list */
.benefits {
  display: grid;
  gap: 12px;
}
.benefit {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.benefit i {
  color: var(--brand-2);
}




/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}
.faq-q {
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding: 16px;
  background: transparent;
  color: var(--text);
  border: none;
  font-weight: 600;
  text-align: left;
}

.faq-q[aria-expanded="true"] {
  color: #1fe260; /* Verde brillante */
}


.faq-q i {
  transition: transform 0.25s ease;
}
.faq-q[aria-expanded="true"] i {
  transform: rotate(45deg);
}
.faq-a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 16px;
}
.faq-a p {
  color: var(--muted);
}

.faq-link {
  color: #16a34a;   /* verde tono tailwind (emerald-600) */
  font-weight: 600; /* opcional, lo hace más visible */
  text-decoration: none; /* quita subrayado */
}

.faq-link:hover {
  color: #15803d;   /* un verde más oscuro al pasar el mouse */
  text-decoration: underline; /* opcional: lo subraya en hover */
}

/* Solo la viñeta en verde */
.faq-a ul li::marker {
  color: #16a34a; /* verde */
}

/* Solo el texto en <strong> en verde */
.faq-a ul li strong {
  color: #21ce60; /* verde */
}

/* Asegura que el resto del texto quede en blanco */
.faq-a ul li {
  color: #ffffffc4; /* blanco */
}


.faq-link {
  display: inline-block;   /* permite margen vertical */

  color: #16a34a;          /* verde llamativo */
  font-weight: 600;        /* más destacado */
  text-decoration: none;   /* sin subrayado */
}

.faq-link:hover {
  text-decoration: underline; /* subrayado al pasar el mouse */
  color: #15803d;             /* verde más oscuro en hover */
}

.faq-a ul {
  margin-left: 0;     /* elimina márgenes extra */
  padding-left: 1rem; /* ajusta la sangría (puedes poner 0 si quieres todo pegado) */
}






/* CTA */
#cta {
  margin-top: 90px; /* agrega espacio antes del CTA */
}

#cta {
  margin-top: 80px; /* espacio antes del CTA */
  margin-bottom: 60px; /* 💡 espacio después del CTA */
}

.cta-wrap {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: linear-gradient(
    135deg,
    rgba(108, 140, 255, 0.18),
    rgba(126, 242, 198, 0.14)
  );
  box-shadow: var(--shadow);
}


/* Badge: mantiene forma pill */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  
}

/* ******************************** */

/* === BLUR DEL FONDO VIA OVERLAY === */

/* Al abrir menú */
body.menu-open #nav-overlay {
  opacity: 1;
  pointer-events: auto; /* captura clic para cerrar */
}

/* === PANEL MÓVIL === */
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 420px;
  height: 100dvh;

  background: #0b0f17;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.445);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100; /* por encima del overlay */
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.mobile-panel.open {
  transform: translateX(0);
}

/* Evita scroll de la página cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
}


/* Preferencias de reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  #particles-canvas {
    display: none;
  }
}

/* Contenedor reveal */
.reveal-img {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center; /* centra vertical si el contenedor tiene altura */
  margin: 20px auto;
  max-width: 1200px; /* límite en pantallas grandes */
  padding: 0 16px; /* espacio lateral en móviles */
}

/* Imagen */
.reveal-img img {
  width: 60%; /* ocupa todo el ancho disponible */
  max-width: 900px; /* límite en desktop */
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin-top: 60px;
}




/* Contenedor reveal */
.reveal-img-2 {
  display: flex;
  justify-content: center; /* centra horizontal */
  align-items: center; /* centra vertical si el contenedor tiene altura */
  margin: 20px auto;
  max-width: 1200px; /* límite en pantallas grandes */
  padding: 0 16px; /* espacio lateral en móviles */
}

/* Imagen */
.reveal-img-2 img {
  width: 40%; /* ocupa todo el ancho disponible */
  max-width: 900px; /* límite en desktop */
  height: auto;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  margin-top: 60px;
}












.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 40px; /* ajusta el tamaño del logo */
  width: auto;
  border-radius: 10px; /* opcional: esquinas redondeadas */
}

/* Efecto hover en desktop */
@media (hover: hover) {
  .reveal img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  }
}




@media (max-width: 1024px) {
 
  
}

/* Ajustes para tablets */
@media (max-width: 992px) {
  .reveal img {
    max-width: 700px;
  }
  
}


/* Ajustes para móviles */
@media (max-width: 576px) {
  .reveal img {
    max-width: 100%;
    border-radius: 16px;
  }
}

/* En pantallas pequeñas: centrar */

@media (max-width: 768px) {
  /* Imagen */
   /* .kicker {
    font-size: 0.9rem;
    letter-spacing: 0.22em;
  } */
  .reveal-img img {
    width: 100%; /* ocupa todo el ancho disponible */
    max-width: 900px; /* límite en desktop */
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .reveal-img-2 img {
    width: 100%; /* ocupa todo el ancho disponible */
    max-width: 900px; /* límite en desktop */
    height: auto;
    border-radius: 24px;
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    margin-top: 10px;
  }

  .foot-grid > div:first-child .center {
    justify-content: center;
    text-align: center;
  }
}

/* Pulsation */
.puls {
  position: relative;
}
.puls:after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid rgba(126, 242, 198, 0.35);
  transform: scale(0.9);
  opacity: 0;
  animation: puls 2.2s infinite ease-out;
}
@keyframes puls {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.66s ease, transform 0.66s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* Responsive */
@media (min-width: 768px) {
  .nav ul {
    display: flex;
  }
  .nav .cta {
    display: inline-flex;
  }
  .hamb {
    display: none;
  }
  
  .hero-grid {
    /* grid-template-columns: 1.1fr 0.9fr; */
    align-items: center;
  }
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .areas {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .testis {
    grid-template-columns: repeat(3, 1fr);
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  /* .foot-grid{ grid-template-columns: 1.2fr .8fr .8fr 1fr } */
}

@media (min-width: 1024px) {
  .hero {
    padding: 110px 0 70px;
  }
}

/* Mobile menu */
.mobile-panel {
  display: none;
}
.mobile-panel.open {
  display: block;
  border-top: 1px solid var(--stroke);
  background: rgba(11, 15, 23, 0.945);
  backdrop-filter: blur(80px);
  padding: 12px 0;
  position: absolute;
  width: 100%;
  left: 0;
  top: 70px;
  z-index: 100;
}
.mobile-panel a {
  display: block;
  padding: 10px 20px;
  color: var(--muted);
}
.mobile-panel a:hover {
  color: var(--text);
}

/* ==== Extensiones suaves sin romper estilo ==== */

/* Animación sutil de blobs (realista) */
@keyframes blobFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, 10px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}
.blob {
  animation: blobFloat 12s ease-in-out infinite;
}
.blob.b2 {
  animation-duration: 16s;
}

/* Micro-tilt en cards (sin cambiar tu hover base) */
.card.tilt-aware {
  will-change: transform;
  transform-style: preserve-3d;
}

/* Grid para diferenciales y planes */
.grid-3 {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tarjetas mini */
.mini {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.03)
  );
  box-shadow: var(--shadow);
}
.mini i {
  color: var(--brand);
  font-size: 1.05rem;
}

/* Barra de progreso de scroll */
.scrollbar {
  position: fixed;
  inset: 0 auto auto 0;
  height: 3px;
  width: 0;
  z-index: 60;
  box-shadow: 0 0 12px rgba(108, 140, 255, 0);
}
/* .scrollbar{ position:fixed; inset:0 auto auto 0; height:3px; width:0; background:var(--grad-btn); z-index:60; box-shadow:0 0 12px rgba(108, 140, 255, 0) } */

/* Cinta CTA móvil */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 34px;
  margin: auto;
  width: min(94%, 520px);
  z-index: 55;
  display: none;
}
.sticky-cta .wrap {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--stroke);
  border-radius: 18px;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.sticky-cta .wrap b {
  font-size: 0.95rem;
  margin-left: 5px;
}
.sticky-cta .cta-close {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  transition: opacity 0.2s ease;
}

.sticky-cta .cta-close:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}

/* Badges */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.82rem;
  
}













    /* ---------------------------
       FOOTER MEJORADO
    --------------------------- */
 /* ---------------------------
   FOOTER GLASS ELEGANTE
--------------------------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 0 60px;
  background: rgba(20, 20, 20, 0.45); /* semitransparente */
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  /* box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.05); */
  /* border-radius: 18px 18px 0 0;  */
}

/* Grid de columnas */
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Marca */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Social links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.social-links a i {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: linear-gradient(135deg, #7dd87d, #4fb14f);
  transform: translateY(-3px) scale(1.05);
}

.social-links a:hover i {
  color: #fff;
}

/* Títulos */
footer h4 {
  margin-left: 5px;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

/* Links */
footer ul {
  list-style: none;
}

footer ul li {
  margin: 1rem 0;
  margin-left: -20px;
}

footer ul li a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s ease;
}

footer ul li a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: #7dd87d;
  transform: translateX(4px);
}

footer ul li a:hover i {
  color: #7dd87d;
}

/* Copyright */
footer .copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}












/* Accessibilidad: foco visible */
/* a:focus, button:focus{ outline:2px solid var(--brand-2); outline-offset:2px } */

/* Respeta reduce-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* MEJORAS PARA MÓVIL - Solución a problemas específicos */

/* Prevenir desbordamiento horizontal */
body,
html {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}






/* Ajustar blobs para móviles */
@media (max-width: 767px) {
 .sticky-cta .cta-close {
  border: none;
  color: #12db6d;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  transition: opacity 0.2s ease;

  /* 🔹 Borde interno con sombra */
  box-shadow: inset 0 0 0 0px #12db6d;
  
}

  .blob.b1,
  .blob.b2 {
    display: none;
  }
}

/* Mejorar visualización de stats en móviles */
@media (max-width: 480px) {
  .sticky-cta .cta-close {
  border: none;
  color: #12db6d;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 6px;
  transition: opacity 0.2s ease;

  /* 🔹 Borde interno con sombra */
  box-shadow: inset 0 0 0 0px #12db6d;
  
}
  .stats {
    grid-template-columns: 1fr;
  }

  .stat {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }

  .stat b {
    font-size: 1.4rem;
  }
}

/* Ajustar grid de áreas en móviles */
@media (max-width: 767px) {
  .areas {
    grid-template-columns: 1fr;
  }
}

/* Ajustar grid de pasos en móviles */
@media (max-width: 767px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Ajustar grid de testimonios en móviles */
@media (max-width: 767px) {
  .testis {
    grid-template-columns: 1fr;
  }
}

/* Ajustar hero para móviles */
@media (max-width: 767px) {
  .hero {
    padding: 60px 0 30px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    flex-direction: column;
    text-align: center;
  }
}

/* Ajustar botones para móviles */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center; /* centra los botones */
    margin-bottom: 80px;
  }

  .hero-actions .btn {
    width: 95%; /* ocupa el 95% */
    max-width: 400px; /* opcional: límite para que no se vean demasiado anchos en tablets */
    justify-content: center;
    text-align: center;
    /* 🔥 Animación de pulso */
    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(124, 111, 255, 0.6);
      }
      70% {
        box-shadow: 0 0 0 20px rgba(124, 111, 255, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(124, 111, 255, 0);
      }
    }

    /* Efecto de entrada + latido solo en "Empieza ahora" */
    .btn.pulse {
      animation: fadeInUp 0.8s ease-out, pulse 2s infinite;
    }
    /* Entrada + latido solo en botones con .pulse */
    .btn.pulse {
      animation: fadeInUp 0.8s ease-out, pulse 2s infinite;
      animation-delay: 0.2s; /* opcional: acompasa con delay-2 */
      animation-fill-mode: both;
    }

    /* ✅ Solo aplica al botón con clase .pulse */
    .btn.pulse {
      animation: pulse 2s infinite;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    .pulse {
      animation: pulse 2s infinite;
    }

    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
      100% {
        transform: translateY(0) rotate(0deg);
      }
    }

    .hero-actions {
      flex-direction: column;
    }
  }
}
/* Ajustar grid de beneficios en móviles */
@media (max-width: 767px) {
  .benefits {
    grid-template-columns: 1fr;
  }
}

/* Ajustar footer para móviles */
@media (max-width: 767px) {
 
.problems-image-2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
}

/* Asegurar que las imágenes no causen desbordamiento */


/* Mejorar visualización de iconos */
.icon i {
  font-size: 1.5rem;
}

/* Ajustar grid-3 para móviles */
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Ajustar navegación para móviles */
@media (max-width: 767px) {
  .nav {
    padding: 0 10px;
  }
}

/* Ajustar secciones para móviles */
@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }
}

/* Ajustar padding del container para móviles pequeños */
@media (max-width: 480px) {
  /* .kicker {
    color: var(--brand-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
  } */
  .container {
    padding: 0 15px;
       /* padding: 0 5px; */
  }
}

/* 
*********************FORMULARIO*************** */

input[type="date"]::-webkit-calendar-picker-indicator {
  transition: opacity 0.5s;
}

input[type="date"].fecha-seleccionada::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  transition: opacity 0.5s;
}

input[type="date"].fecha-seleccionada::-webkit-calendar-picker-indicator {
  opacity: 0;
  pointer-events: none;
}

.fecha-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.fecha-input:focus {
  border-color: #aaa;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#formulario label {
  /* color: #2091F9; */
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 900;
  font-size: 20px;
}
#formulario label strong {
  color: #7da0bd;
  font-weight: bold;
  margin-bottom: 10px;
}
#formulario label p {
  color: #d0e5e7cc;
  font-style: oblique;
  font-weight: 100;
  /* font-style: italic; */
  margin-bottom: 5px;
  font-size: 14px;
}

#formulario label span {
  color: #d0e5e7cc;
  font-style: oblique;
  font-weight: 100;
  /* font-style: italic; */
  margin-bottom: 5px;
  font-size: 14px;
  margin-left: 80px;
}

.iti--allow-dropdown {
  width: 100%;
  padding: 0px;
}
.iti__selected-flag {
  margin-left: 14px;
}

.iti--allow-dropdown input,
.iti--allow-dropdown input[type="text"],
.iti--allow-dropdown input[type="tel"],
.iti--separate-dial-code input,
.iti--separate-dial-code input[type="text"],
.iti--separate-dial-code input[type="tel"] {
  padding-left: 5px;
}

.centrado-etiqueta {
  text-align: center;
  display: block;
  width: 100%;
  margin-bottom: 8px;
  font-weight: bold;
  color: #ffffff; /* color blanco para fondo oscuro */
}

.centrado-etiqueta p {
  font-size: 0.95em;
  font-weight: normal;
  margin: 0;
  color: #ccc; /* gris claro */
}

#formulario select,
#formulario textarea {
  padding: 10px;
  border-radius: 15px;
  /* background-color: #1C1C1E; */
  box-shadow: 0 10px 30px #0005;
  border: 1px solid #179e5f88;
  transition: background-image 0.5s, opacity 0.5s, border 0.5s;
  margin-left: 0px;
  width: 100%;
}

textarea {
  padding: 10px;
  border-radius: 15px;
  background-color: #1c1c1e;
  box-shadow: 0 10px 30px #0005;
  border: 1px solid #71717188;
  transition: background-image 0.5s, opacity 0.5s, border 0.5s;
  margin-left: -20px;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #fff;
  opacity: 0.8;
}

textarea::placeholder {
  color: #71717188;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

#formulario option {
  padding: 10px;
  border-radius: 15px;
  background-color: #3a746528;
  box-shadow: 0 10px 30px #0005;
  border: 1px solid #71717188;
  transition: background-image 0.5s, opacity 0.5s, border 0.5s;
  margin-left: -20px;
}
#Area-interes {
  color: #fff;
  background-color: #1c1c1e;
  font: 1.3em;
  font-weight: bold;
  font-weight: 800;
}

.form-group.scroll-item p {
  font-style: oblique;
  font-size: 12px;
  color: #ffffffab;
}


#horarios {
  color: #fff;
  background-color: #1c1c1e;
}
#fecha {
  color: #fff;
  background-color: #0f110d8a;
  margin-left: 0px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  background-color: #083e9b3b;
  -webkit-mask-image: linear-gradient(to right, #80ca5eb4, #141d3ba9);
  border-radius: 15%;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(100) contrast(100); /* Cambia el color del icono a blanco */
}

#horarios strong {
  color: #1eb9b9;
}

label[for="notes"] {
  font-size: 1.3rem; /* Tamaño del texto del label "Duda adicional" */
  display: block;
  margin-bottom: 0.4rem;
}

#notes {
  height: 50px; /* Aumenta la altura */
  margin-bottom: 0.5rem;
}

#hora {
  color: #fff;
  background-color: #1c1c1e;
}
#formulario button[type="submit"] {
  background-color: #2091f9;
  color: #fff;
  padding: 12px 20px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  transition: background-color 0.5s;
  font-size: 16px;
  font-weight: bold;
}

#formulario button[type="submit"]:hover {
  background-color: #1c1e1c;
}
#enviar {
  transform: scale(0.7);
  margin-left: 0px;
}
.text-info {
  text-align: center;
  margin-top: 20px;
}
.text-info a {
  color: #3ebe17;
  text-decoration: none;
  font-weight: bold;
}

.text-info a:hover {
  color: #1c1c1e;
}

.formulario-container {
  background-color: rgba(255, 255, 255, 0.062);
  backdrop-filter: blur(7px);
  border-radius: 15px;
  border-radius: 10px;
  padding: 20px;
  width: 40%;
  margin: 40px auto;
  margin: 4px auto;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  margin-top: 400px;
}

/* ********************************************************************************************************** */
form {
  display: flex;
  margin: auto;
  margin-block: 30px;
  width: min(300px, 90vw);
  gap: 7px;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
}

/* ******************************************************************************************************************** */

form input,
form button {
  all: unset;
  padding: 10px;
  border-radius: 15px;
  background-color: #1c1c1e;
  box-shadow: 0 10px 30px #0005;
  border: 1px solid #71717188;
  transition: background-image 0.5s, opacity 0.5s, border 0.5s;
  margin-left: -20px;
}

option,
option button {
  all: unset;
  padding: 10px;
  border-radius: 15px;
  background-color: #d1d1e696;
  box-shadow: 0 10px 30px #0005;
  border: 1px solid #71717188;
  transition: background-image 0.5s, opacity 0.5s, border 0.5s;
  margin-left: -20px;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"],
form input[type="duda-adicional"],
form select,
form textarea {
  width: 100%;
  margin-left: -12px;
}

/* Corrige el wrapper de intl-tel-input */
.iti {
  width: 105% !important;
  margin-left: -10px;
}

/* Corrige el input de WhatsApp para que tenga el mismo alto y padding */
.iti input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;

  color: #fff;
  box-sizing: border-box;
  height: auto; /* Permite adaptar igual que los otros */
}

form input {
  color: #fff;
}

form button {
  cursor: pointer;
}

/* color: #e0e0f7; */

.or {
  position: relative;
}
.or::before {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  left: 0;
  top: 45%;
  background-image: linear-gradient(
    to right,
    #71717155 0 40%,
    transparent 40% 60%,
    #71717155 60%
  );
}
p a {
  border-bottom: 1px solid #717171;
}
input + p {
  font-size: small;
  text-align: left;
}
.sso {
  margin-bottom: 30px;
}
.sso + p {
  font-size: small;
}
p input:invalid:not(:placeholder-shown) {
  border-color: red;
  background-image: url(/img/checked_red.png);
}
input:valid:not(:placeholder-shown) {
  background-image: url(/img/checked_green.png);
}
input:invalid:not(:placeholder-shown),
input:valid:not(:placeholder-shown) {
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px);
}
input:invalid:not(:placeholder-shown) + p {
  color: #a20e0e;
}
input:invalid ~ button[type="button"] {
  opacity: 0.6;
  pointer-events: none;
}

input:invalid ~ button[type="button"] {
  opacity: 0.6;
  pointer-events: none;
}

.btn-f {
  width: 100%;
  height: 24px;
  border-radius: 25px;
  outline: none;

  background-size: 200%;
  font-size: 1.2rem;
  color: #110707ec;

  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.6s;
  align-items: center;
  text-align: center;
  margin-top: 150px;
}

.btn-f {
  cursor: pointer;
  border: 1px solid #fff;

  background-color: #0dd241;
  background-image: linear-gradient(to right, #86dc15d0, #59d338e1, #6ff02446);
  box-shadow: 8px 8px 10px #0000005d;
  align-items: center;
  text-align: center;
  margin-left: -52px;
}

.btn-f:hover {
  background-position: right;

  background-image: linear-gradient(to right, #3bff66, #74f158, #12ff22c0);
  box-shadow: 8px 8px 10px #0000005d;
}

input:invalid ~ .btn[type="button"] {
  opacity: 0.6;
  cursor: pointer;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #1eb9b9;
  box-shadow: 0 0 0 2px rgba(30, 185, 185, 0.2);
}

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

label {
  color: #e4faea;
}

/* ***************ICONO SVG************ */

.service-icon-box img {
  width: 45px;
  margin-left: 400px;
  /* margin-left: 700px;
    /* margin-right: 90px; */
  margin-top: 40px;
  animation: animate 2s infinite;
}

/* ======== FAQ ======== */

#faq .section-title {
  font-size: 2rem; /* Cambia a tu preferencia: 2rem = ~32px */
  font-weight: bold;
  text-align: center;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: var(--border-radius);
  overflow: hidden;
  background-color: rgba(28, 28, 30, 0.6);
  backdrop-filter: blur(5px);
  box-shadow: var(--box-shadow);
}

.faq-question {
  width: 100%;
  padding: 1.2rem;
  text-align: left;
  background-color: rgba(2, 2, 8, 0.966);
  border: none;
  color: var(--text-light);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: space-between;
}
.styled-list {
  text-align: left;
}

.faq-answer {
  text-align: left;
}

.fa-whatsapp {
  gap: 0rem;
  padding: 10px;
  color: #0dd22e;
}

.fa-calendar-check {
  padding: 10px;
  /* color: #0dd22e; */
}

#list-iconos {
  margin-top: -90px;
}

.faq-question:hover {
  background-color: rgba(44, 44, 46, 0.8);
}

.faq-question::after {
  content: "+";
  font-size: 1.2rem;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.show {
  padding: 1.2rem;
  max-height: 1000px;
}

.faq-intro {
  margin-bottom: 1rem;
  font-weight: 500;
}

.styled-list {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.styled-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.styled-list li::before {
  content: "•";
  color: var(--color-primary);
  position: absolute;
  left: 0;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;

  font-weight: 500;
  transition: var(--transition);

  color: #c0dce9;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
  margin-left: 0px;
}

.whatsapp-link-contactar {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  /* color: var(--color-primary); */
  font-weight: 500;
  transition: var(--transition);

  color: #c0dce9;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
  margin-left: -50px;
}

.whatsapp-link:hover {
  color: var(--color-secondary);
}

#whatsapp-link-contactar-01 {
  text-decoration: none;
}

.swal2-popup .swal2-title {
  font-size: 0.7rem; /* reduce tamaño del título */

  text-align: center; /* centra el texto */
  margin-bottom: 0.7rem; /* espacio debajo del título */
}

/* ======== CALENDARIO DE RESERVAS ======== */
.booking-section {
  position: relative;
  background-color: rgba(28, 28, 30, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 12px;
  margin: 2rem auto;
  box-shadow: 0 0 12px rgba(13, 210, 65, 0.2);
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  min-height: 250px; /* 👈 MUY IMPORTANTE */
}

.booking-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

.booking-content {
  position: relative;
  z-index: 1; /* 👈 asegura que el contenido esté encima */
}


.booking-section {
  position: relative;   /* referencia para el canvas */
  overflow: hidden;     /* evita que partículas se salgan */
  z-index: 1;
}

canvas.particles {
  position: absolute;
  top: 0;
  left: 0;
  display: block;       /* evita espacios raros */
  z-index: 0;
  pointer-events: none; /* no bloquea clics */
}

canvas.particles {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

.booking-section > *:not(canvas) {
  position: relative;     /* todo el contenido va encima */
  z-index: 1;
}







.section-title-2 {
  display: flex;
  font-size: 1rem;

  flex-direction: column; /* Alinea verticalmente */
  justify-content: center;
  align-items: center; /* Centra horizontalmente */
  margin-bottom: 2rem;
  text-align: center; /* Centra texto si hay varios elementos */
}

.section-title-2 h5 {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.current-month {
  font-weight: 500;
  color: var(--color-primary);

  /* color: #1dd1a1; */
  font-weight: bold;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.nav-button {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  /* Icono */
  color: #fff;
  font-size: 1.2rem;

  /* Estilo elegante */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
              inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.nav-button:hover {
  transform: scale(1.08) translateY(-2px);
  background: rgba(255, 255, 255, 0.25);
  color: #6cd48f; /* verde elegante */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25),
              inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.nav-button:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.35);
}


/* 
**********boton hacia abajo******* */
.scroll-down-indicator-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 2rem;
  z-index: 10;
}

.scroll-down-indicator-pro .arrow {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: arrowDown 1.8s infinite;
  opacity: 0;
}

.scroll-down-indicator-pro .arrow.delay-1 {
  animation-delay: 0.3s;
}
.scroll-down-indicator-pro .arrow.delay-2 {
  animation-delay: 0.6s;
}

@keyframes arrowDown {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(45deg) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translateY(6px) rotate(45deg) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(12px) rotate(45deg) scale(0.8);
  }
}

/* =============================== */
/* 🔹 Scroll to Top Button (Izquierda) */
/* =============================== */
.scroll-top-btn {
  position: fixed;
  bottom: -120px; /* 👈 oculto bien abajo */
  right: 30px; /* 👈 pegado a la izquierda */
  background-color: #2b7c94;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: bottom 0.4s ease, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 999;
}

.scroll-top-btn.show {
  bottom: 200px; /* 👈 aparece más arriba */
  opacity: 1;
  visibility: visible;
}


/* =============================== */
/* 🔹 WhatsApp Float (Derecha) */
/* =============================== */
.whatsapp-float {
  position: fixed;
  bottom: -120px; /* 👈 oculto bien abajo */
  right: 30px;   /* 👉 siempre a la derecha */
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff !important; /* 👈 ícono siempre blanco */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  transition: all 0.5s ease;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.whatsapp-float.visible {
  bottom: 350px; /* 👈 aparece más arriba */
  opacity: 1;
  visibility: visible;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  animation: none;
  transform: scale(1.1) translateY(0);
  background: #128C7E; /* verde oscuro */
  color: #fff !important; /* 👈 ícono sigue blanco */
}


/* Forzar ícono blanco dentro del botón de WhatsApp */
.whatsapp-float i,
.whatsapp-float svg {
  color: #fff !important;
  fill: #fff !important; /* para SVG */
}


/* =============================== */
/* 🔹 Animación de WhatsApp */
/* =============================== */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}



/* ======== ESTILO DE NAVEGACIÓN EN MODO ESCRITORIO ======== */

/* Opcional: que el hero ocupe al menos el 80% de la altura de pantalla en móviles */
/* Ajuste del HERO en móviles */
/* HERO ocupa toda la pantalla en móviles */


@media (max-width: 768px) {
  .scroll-down-indicator-pro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: -2rem;
  z-index: 10;
}
  
.scroll-down-indicator-pro .arrow {
  width: 16px;
  height: 16px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  animation: arrowDown 1.8s infinite;
  opacity: 0;
}

  
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    margin-top: 28px;              /* <-- separa botones del texto */
  }

  .hero-actions a {
    width: 100%;
    padding: 15px;
  }

  .hero-grid {
    max-width: 600px;
    z-index: 2;
  }


  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 1.1rem;
    margin: 12px 0 20px;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    padding: 14px;
  }


}





@media (min-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(30, 30, 32, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: top 0.3s;
  }

  .navbar.hide {
    top: -100px;
  }

  .nav-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1rem;
    background: transparent;
    position: static;
    height: auto;
  }

  .nav-link {
    color: #00e676;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    position: relative;
    padding-bottom: 4px;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffaa00;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .close-menu-btn,
  .mobile-menu-btn {
    display: none;
  }

  .nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #1dd1a1; /* verde lima */
    transition: width 0.3s ease;
  }

  .nav-link:hover {
    color: #1dd1a1;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .logo-inicio {
    margin-top: 150px;
  }

  .title-inicio {
    margin-top: 200px;
  }

  .cta-box {
    background-color: #080b25;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 12px rgba(0, 255, 100, 0.1);
  }

  #whatsapp-link-contactar-01 {
    text-decoration: none;
  }
  /* Contenedor principal del calendario - TAMAÑO AUMENTADO */
  .calendar-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(28, 28, 30, 0.8);
    border-radius: 15px;
    margin: 2rem auto;
    width: 100%;
    max-width: 600px; /* Tamaño aumentado de 420px a 500px */
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  }

  /* Cabecera con días de la semana - MÁS GRANDE */
  .calendar-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    text-align: center;
    font-weight: 600;
    color: #21e663;
    font-size: 1rem; /* Aumentado de 0.85rem */
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    padding: 0 0.5rem;
  }

  /* Cuerpo del calendario - MÁS ESPACIADO */
  .calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    width: 100%;
    gap: 0.6rem; /* Aumentado de 0.4rem */
    padding: 0 0.5rem;
  }

  /* Celdas de día - MÁS GRANDES */
  .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2c2c2e;
    color: #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem; /* Aumentado de 0.8rem */
    cursor: pointer;
    min-height: 40px; /* Aumentado de 32px */
    position: relative;
  }

  /* Efectos hover - MÁS NOTORIOS */
  .calendar-day:hover:not(.disabled):not(.other-month) {
    background-color: #21e663;
    color: #000;
    transform: scale(1.08);
    box-shadow: 0 3px 8px rgba(33, 230, 99, 0.5);
  }

  /* Día seleccionado - MÁS DESTACADO */
  .calendar-day.selected {
    background-color: #21e663;
    color: #000;
    font-weight: 700; /* Más grueso */
    box-shadow: 0 4px 10px rgba(33, 230, 99, 0.6);
    transform: scale(1.08);
  }

  /* Día actual - BORDE MÁS GRUESO */
  .calendar-day.today {
    border: 2px solid #21e663; /* Aumentado de 1.5px */
    font-weight: 700;
  }

  /* Sección de zona horaria - MÁS GRANDE */
  .timezone-info {
    margin-top: 1.2rem;
    font-size: 0.9rem; /* Aumentado de 0.75rem */
    color: #aaa;
    text-align: center;
  }

  /* Sección de horas - MÁS GRANDE */
  .time-slots-container {
    margin-top: 1.5rem;
    width: 80%;
    padding: 0 0.5rem;
  }

  .time-slots-container h4 {
    color: #21e663;
    margin-bottom: 1rem;
  }

  .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(
      auto-fill,
      minmax(85px, 1fr)
    ); /* Aumentado de 70px */
    gap: 0.6rem; /* Aumentado de 0.4rem */
  }

  .time-slot {
    padding: 0.7rem 0; /* Aumentado de 0.5rem */
    text-align: center;
    background-color: #2c2c2e;
    color: #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem; /* Aumentado de 0.8rem */
    font-weight: 500;
  }

  .time-slots-container {
    margin-top: 1.5rem;
    max-width: 900px; /* Ajusta según necesidad */
    margin-left: auto;
    margin-right: auto;
  }

  .time-slots-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* Primera fila con 9 elementos */
    gap: 0.5rem;
    margin-top: 0.7rem;
  }

  /* Segunda fila con 1 elemento centrado */
  .time-slots-grid:nth-of-type(2) {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    max-width: 100px;
    margin: 0.5rem auto;
  }

  /* Tercera fila con 10 elementos */
  .time-slots-grid:nth-of-type(3) {
    grid-template-columns: repeat(10, 1fr);
  }

  .time-slots-grid button {
    background-color: #2c2c2c;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    text-align: center;
    min-width: 70px; /* Ancho mínimo consistente */
  }

  .time-slots-grid button:hover {
    background-color: #3a3a3a;
    border-color: #1dd1a1;
    transform: scale(1.03);
  }

  /* ************************************* */

  .booking-summary {
    max-width: 680px;
    margin: 1rem auto;
    padding: 1.2rem;
    background-color: #2c2c2c;
    border-radius: 10px;
    border: 1px solid #444;
    color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .booking-summary p {
    margin: 0.7rem 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .booking-summary .change-date-btn {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 16px;
    background-color: transparent;
    border: 1px solid #1dd1a1;
    color: #1dd1a1;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
  }

  .booking-summary .change-date-btn:hover {
    background-color: rgba(29, 209, 161, 0.1);
    transform: translateY(-1px);
  }

  /* Estilos para elementos específicos */
  .booking-summary .date {
    font-weight: bold;
    color: #1dd1a1;
  }

  .booking-summary .time {
    font-weight: bold;
  }

  .booking-summary .duration {
    opacity: 0.8;
    font-size: 0.9rem;
  }

  /* Contenedor FAQ más estrecho y centrado */
  .faq-container {
    max-width: 800px; /* Reduce el ancho total del contenedor */
    width: 90%; /* Permite que se adapte en móviles */
    margin: 0 auto; /* Centrado horizontal */
    margin-top: 40px;
    padding: 0 1rem; /* Espacio interno lateral para evitar que pegue a los bordes */
  }

  /* Ítems individuales, ocupan 100% del contenedor */
  .faq-item {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: rgba(28, 28, 30, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: var(--box-shadow);
  }

  /* ************************************** */

  /* Estilos generales del contenedor */
  .formulario-container {
    backdrop-filter: blur(7px);
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 80%;
    margin: 40px auto;
  }

  /* Estilos del formulario */
  form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 65%;
  }

  #whatsApp {
    width: 96%;
    margin-left: -17px;
  }

  /* Estilos para las áreas de texto */
  #Area-interes,
  #horarios,
  #fecha,
  #hora {
    color: #fff;
    background-color: #2c2c2e;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #444;
    font-size: 1rem;
    transition: all 0.3s ease;
  }

  #Area-interes {
    font-size: 1.2em;
    font-weight: 800;
  }

  /* Estilos para inputs */
  form input,
  form select,
  form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    background-color: #2c2c2e;
    color: #fff;
    border: 1px solid #444;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  form input:focus,
  form select:focus,
  form textarea:focus {
    outline: none;
    border-color: #1eb9b9;
    box-shadow: 0 0 0 2px rgba(30, 185, 185, 0.2);
  }

  /* Estilo especial para el selector de fecha */
  input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
  }

  /* Estilos para el textarea de notas */
  #notes {
    height: 100px;
    resize: vertical;
    margin-bottom: 10px;
  }

  /* Estilos para etiquetas */
  label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
  }

  label[for="notes"] {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* Estilos para botones */
  #formulario button[type="submit"] {
    background: linear-gradient(135deg, #2091f9, #1a73e8);
    color: #fff;
    padding: 14px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
  }

  #formulario button[type="submit"]:hover {
    background: linear-gradient(135deg, #1a73e8, #1666d6);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
  }

  /* Estilos para el texto informativo */
  .text-info {
    text-align: center;
    margin-top: 20px;
    color: #aaa;
    font-size: 0.9rem;
  }

  .text-info a {
    color: #3ebe17;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }

  .text-info a:hover {
    color: #2da812;
    text-decoration: underline;
  }

  #confirmButton {
    background-color: #21e663;
    color: #000;
    font-weight: bold;
    border: none;
    max-width: 200px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3);
    margin-top: 150px;
    align-items: center;
    margin-left: 80px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(29, 209, 161, 0.3);
    max-width: 200px;
    margin: 150px auto 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 170px;
  }

  /* Estilo para el texto interno */
  #confirmButton strong {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  /* Efecto hover para el texto */
  #confirmButton:hover strong {
    transform: scale(1.05);
  }

  /* Estado de carga (opcional) */
  #confirmButton.loading {
    position: relative;
    color: transparent;
  }

  #confirmButton.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  /* Versión responsive */
  @media (max-width: 768px) {
    #confirmButton {
      padding: 12px 24px;
      font-size: 1rem;
      max-width: 180px;
    }
  }

  /* Estilos responsivos */
  @media (max-width: 600px) {
    .formulario-container {
      padding: 20px;
      width: 95%;
      margin: 20px auto;
    }

    #Area-interes {
      font-size: 1.1em;
    }

    form input,
    form select,
    form textarea {
      padding: 10px 12px;
    }
  }

  /* Estilos para elementos destacados */
  #horarios strong {
    color: #1eb9b9;
    font-weight: 600;
  }

  /* Efecto de hover para inputs */
  form input:hover,
  form select:hover,
  form textarea:hover {
    border-color: #666;
  }

  /* Responsive para pantallas pequeñas */
  @media (max-width: 480px) {
    .booking-summary {
      max-width: 100%;
      padding: 2rem;
    }
  }

  /* Responsive para pantallas medianas */
  @media (max-width: 768px) {
    .time-slots-grid {
      grid-template-columns: repeat(4, 1fr) !important;
    }

    .time-slots-grid:nth-of-type(2) {
      max-width: none;
    }
  }

  /* Responsive para pantallas pequeñas */
  @media (max-width: 480px) {
    .time-slots-grid {
      grid-template-columns: repeat(3, 1fr) !important;
    }
  }

  /* Ajustes para móviles - TAMBIÉN AUMENTADOS */
  @media (max-width: 480px) {
    /* Imagen */
    .reveal-img img {
      width: 100%; /* ocupa todo el ancho disponible */
      max-width: 900px; /* límite en desktop */
      height: auto;
      border-radius: 24px;
      border: 1px solid var(--stroke);
      box-shadow: var(--shadow);
      object-fit: cover;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .calendar-grid {
      padding: 1.2rem;
      max-width: 400px; /* Aumentado de 360px */
    }

    .calendar-header {
      font-size: 0.9rem; /* Aumentado de 0.75rem */
    }

    .calendar-day {
      font-size: 0.9rem; /* Aumentado de 0.75rem */
      min-height: 36px; /* Aumentado de 28px */
    }

    .time-slots-grid {
      grid-template-columns: repeat(
        auto-fill,
        minmax(75px, 1fr)
      ); /* Aumentado de 60px */
    }

    .time-slot {
      font-size: 0.85rem; /* Aumentado de 0.75rem */
      padding: 0.6rem 0; /* Aumentado de 0.4rem */
    }
  }
}

#reserva-consulta {
  padding: 2rem 0rem;
}

#reserva-consulta {
  /* background-color: #1a1a1a; */
  /* padding: 2rem; */
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

#reserva-consulta .section-title {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

#reserva-consulta .section-description {
  color: #cccccc;
  text-align: center;
  margin-bottom: 1rem;
}

.cta-box {
  text-align: center;
  background-color: #48725156;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.cta-box strong {
  color: #ffffff;
}

.calendar-grid {
  margin-top: 1rem;
  border: 1px solid #444;
  border-radius: 10px;
  padding: 1rem;
  background-color: #1f1f1f;
  color: #ffffff;
}

.calendar-header div {
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.timezone-info {
  color: #cccccc;
  text-align: center;
  font-size: 0.9rem;
}

.timezone-info strong {
  color: #fff;
}

.time-slots-container h4,
.booking-summary h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  /* margin-left: 2rem; */
}

.calendar-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-day:hover {
  background-color: rgba(44, 44, 46, 0.6);
}

.calendar-day.selected {
  background-color: var(--color-primary);
  color: var(--text-dark);
  font-weight: 600;
}

.calendar-day.disabled {
  /* color: var(--text-gray); */
  opacity: 0.5;
  cursor: not-allowed;
}

.calendar-day.today {
  background-color: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  font-weight: bold;
  color: var(--color-primary);
}

.time-slots-container {
  margin-top: 1.5rem;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.time-slots-grid button {
  background-color: #2c2c2c;
  border: 1px solid #444;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.time-slots-grid button:hover {
  background-color: #3a3a3a;
  border-color: #1dd1a1;
}

.booking-form label {
  color: #ffffff;
  font-weight: 600;
  font: 1rem;
  margin-top: 30px;
  margin-bottom: 0.3rem; /* separación con el input */
  display: block; /* asegura que el margin-bottom funcione bien */
}

label[for="fullName"],
label[for="fullApellido"],
label[for="whatsApp"],
label[for="email"],
label[for="Area-interes"] {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Efectos hover - MÁS NOTORIOS */
.calendar-day:hover:not(.disabled):not(.other-month) {
  background-color: #21e663;
  color: #000;
  transform: scale(1.08);
  box-shadow: 0 3px 8px rgba(33, 230, 99, 0.5);
}

/* Día seleccionado - MÁS DESTACADO */
.calendar-day.selected {
  background-color: #21e663;
  color: #000;
  font-weight: 700; /* Más grueso */
  box-shadow: 0 4px 10px rgba(33, 230, 99, 0.6);
  transform: scale(1.08);
}

/* Día actual - BORDE MÁS GRUESO */
.calendar-day.today {
  border: 2px solid #21e663; /* Aumentado de 1.5px */
  font-weight: 700;
}

/* Sección de horas - MÁS GRANDE */
.time-slots-container {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0 0.5rem;
}

.time-slots-container h4 {
  color: #21e663;
  margin-bottom: 1rem;
  /* font-size: 1.1rem;  */
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fill,
    minmax(85px, 1fr)
  ); /* Aumentado de 70px */
  gap: 0.6rem; /* Aumentado de 0.4rem */
}

.time-slot {
  padding: 0.7rem 0; /* Aumentado de 0.5rem */
  text-align: center;
  background-color: #2c2c2e;
  color: #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem; /* Aumentado de 0.8rem */
  font-weight: 500;
}

/* ------------------------------------ */

.booking-form input::placeholder {
  color: #888;
}

.booking-form .form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.btn.btn-primary:hover {
  background-color: #1cbf54;
}

.time-slot {
  padding: 0.5rem;
  text-align: center;
  background-color: rgba(9, 9, 17, 0.171);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
}

.time-slot:hover {
  background-color: rgba(44, 44, 46, 0.8);
}

.time-slot.selected {
  background-color: var(--color-primary);
  color: var(--text-dark);
  font-weight: 600;
}

.booking-summary {
  background-color: rgba(30, 30, 32, 0.411); /* semi-transparente */
  backdrop-filter: blur(15px); /* desenfoque */
  -webkit-backdrop-filter: blur(15px); /* soporte Safari */
  border-bottom: 1px solid rgba(255, 255, 255, 0.582); /* sutil borde */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3); /* sombra suave */
  transition: all 0.3s ease;
  border-radius: var(--border-radius);
  padding: 1.2rem;
  margin-top: 1.5rem;
}

.summary-details div {
  margin-bottom: 0.5rem;
  text-align: left;
}

.summary-details strong {
  color: var(--color-primary);
}

.change-selection {
  display: inline-block;
  margin-top: 1rem;
  /* color: var(--color-primary); */
  color: #1dd1a1;
  text-decoration: none;

  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.change-selection:hover {
  text-decoration: underline;
}

.booking-summary .summary-details {
  /* background-color: #202020; */
  padding: 0.5rem;
  border-radius: 8px;
  margin-top: 0.5rem;
  color: #ccc;
  font-size: 0.82rem; /* detalles aún más compactos */
  text-align: center;
}

.booking-form {
  margin-top: 1.5rem;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.btn-2 {
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius);
  background: none;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  margin-top: -150px;
  margin-left: 1px;
}

.btn-2:hover {
  background-color: var(--color-primary);
  color: var(--text-dark);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--text-dark);
  border: none;
}

.btn-primary:hover {
  background-color: var(--color-secondary);
}

/* ======== INTERES BUTTONS ======== */

.interes-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.6rem; /* <--- reduce separación vertical y horizontal */
  justify-content: flex-start; /* más natural que center si hay muchos */
  margin-bottom: 0; /* elimina separación extra */
  margin-top: 0.5rem;
}

.interes-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid #ccc;
  background-color: white;
  color: #000;
  font-weight: 500;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  /* max-width: 100%; */
  display: inline-block;
  text-align: center;
  line-height: 1.2;
}

.interes-btn:hover {
  background-color: rgba(246, 255, 254, 0.959);
}

.interes-btn.selected {
  background-color: var(--color-primary);
  color: var(--text-dark);
  font-weight: 500;
  /* border-color: var(--color-primary); */
}

.accordion-item {
  margin-left: -20px;
}

.accordion-toggle {
  width: 100%;
  background-color: #20252ed5;

  border: none;
  font-weight: bold;
  font-size: 1rem;

  cursor: pointer;
  margin: 1.7rem 0 0.7rem; /* margen superior e inferior más claro */
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.accordion-toggle::before {
  content: "+";
  display: inline-block;
  margin-right: 0.5rem;
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-toggle.active::before {
  content: "\2212"; /* minus sign */
}
/* 
.grupo-opciones {
  display: none;
  padding: 0.9rem 0.8rem;


  
} */


.grupo-opciones {
  display: none;
  padding: 0.9rem 0.8rem;
  margin-left: 15px ;
}




.grupo-opciones.show {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.5rem; /* igual que .interes-buttons */
  justify-content: center;
  margin-left: 24px;
}






.spinner-download {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #21e663; /* Verde */
  border-radius: 50%;
  width: 28px;
  height: 28px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
  display: inline-block;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.kicker {
  color: var(--brand-2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;

  text-align: center;   /* centra en horizontal */
  margin-bottom: 0.8rem; /* separa del título */


}

@media (min-width: 992px) {
  .booking-summary {
    max-width: 500px;   /* controla el ancho de la tarjeta */
    margin: 0 auto;     /* centra horizontalmente */
    text-align: center; /* centra el contenido interno */
  }

  .booking-summary .summary-details {
    text-align: left;   /* opcional: mantiene Fecha, Hora y Duración alineadas */
    display: inline-block; /* hace que se vean ordenadas dentro del centro */
  }

  /* Centrar el enlace Cambiar Fecha */
.booking-summary .change-selection {
 
  margin-top: 15px;     /* un poco de espacio arriba */
  margin-left: 110px;
}
}

/* Ajustes en tablets */
@media (max-width: 992px) {
  .kicker {
    font-size: 0.8rem;
  }
}

/* Ajustes en móviles */
@media (max-width: 576px) {
  .kicker {
    /* font-size: 0.79rem; */
    color: var(--brand-2);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
  }
}



:root {
  /* --color-primary: #6a11cb;
  --color-secondary: #2575fc; */
  --color-bg: #0f1116;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --text-light: #f1f1f1;
  --text-muted: #b8b8b8;
}



/* Divider elegante */
.divider {
  width: 90px;
  height: 4px;
  margin: 15px auto;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 10px rgba(106,17,203,0.6);
}




/* Elegant color palette */
:root {
  --primary-bg: #1a1a2e; /* Deep navy */
  --accent-color: #e6b800; /* Soft gold */
  --text-color: #ffffff; /* White */
  --card-bg: rgba(255, 255, 255, 0.1); /* Glassmorphism background */
  --shadow-color: rgba(0, 0, 0, 0.3);
  --gradient-bg: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}


/* Container for content */


/* Section title with elegant typography and animation */

.section-title.scroll-item--active {
  opacity: 1;
  transform: translateY(0);
}

/* Divider with animated gradient */
.divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), transparent);
  margin: 0 auto 40px;
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0);
  transition: all 0.6s ease-out 0.2s;
}

.divider.scroll-item--active {
  opacity: 1;
  transform: scaleX(1);
}


/* Títulos */
/* .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
} */

/* Imagen destacada */
/* .problems-image img {
  max-width: 280px;
  margin: 40px auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
} */
.problems-image img:hover {
  transform: scale(1.05);
}

/* ===== PROBLEMS ===== */
/* .problems-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 40px;
} */

.problems-column {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}




.problem-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 25px;
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  color: var(--text-light);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(30px);
 
}
.problem-item i {
  font-size: 1.6rem;
  /* color: var(--color-secondary); */
  color: #00e676;
  text-shadow: 0 0 8px rgba(150, 158, 173, 0.205);
   /* animation: iconFadeIn 0.9s ease-out forwards, iconPulse 2.5s infinite 1.2s; */
   animation: pulseIcon 2.8s infinite ease-in-out;
  
}
.problem-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 30px rgba(23, 32, 28, 0.205);
  
  
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}
.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  backdrop-filter: blur(16px);
  color: var(--text-light);
  box-shadow: 0 8px 25px rgba(38, 52, 65, 0.45);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
  
}

.service-card p{
 color: var(--muted);          /* tono secundario */
  font-size: 1rem;              /* tamaño legible */
  line-height: 1.6;             /* mejora la lectura */
  max-width: 65ch;              /* buena longitud óptima */
  margin: 0 0 1.5rem;           /* separación limpia */
  font-weight: 400;             /* texto ligero */
  
  /* tipografía más suave en pantallas de alta resolución */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.service-card i {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* transition: transform 0.4s;
   animation: iconFadeIn 0.7s ease-out forwards, iconPulse 2.5s infinite 1.2s; */
   animation: pulseIcon 2.8s infinite ease-in-out;
   
   
   
   
   
   
   
}
.service-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: #000000c4;
  /* box-shadow: 0 15px 40px rgba(10, 3, 24, 0.466))); */
  
}
.service-card:hover i {
  transform: scale(1.2);
  
 
}

/* ====== Animaciones Scroll ====== */
.scroll-item {
  animation: fadeUp 0.9s ease forwards;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* HISTORIAS DE ÉXITO */

.section__head {
  text-align: center;
  margin-bottom: 48px;
}
.section__kicker {
  color: #c5f4a3;
  font: 600 0.95rem var(--ff-h);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}
.section__desc {
  color: var(--muted);
  max-width: 860px;
  margin-inline: auto;
  font-size: var(--fs-lg);
}

.stories {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.story {
  background: var(--grad-card);
  border-radius: var(--rad-lg);
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}

.story:hover {
  /* transform: translateY(-5px); */
  box-shadow: var(--shadow-l);
  border-color: rgba(162, 255, 94, 0.4);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0a1508;
}

.story-avatar img {
  width: 60px;      
  height: 60px;
  border-radius: 50%; 
  object-fit: cover; 
}

.story-content {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-rating {
  color: #ffd700;
}

/* 📱 Ajustes SOLO para móviles */
@media (max-width: 768px) {
  .stories {
    grid-template-columns: 1fr; /* solo una por fila */
    gap: 16px;
  }

  .story {
    padding: 25px;
    max-width: 95%;
    margin: 0 auto;
  }

  .story-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .story-avatar {
    width: 55px;
    height: 56px;
    font-size: 18px;
  }

  .story-avatar img {
    width: 52px;
    height: 52px;
  }

  .story-content {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .story-meta {
    font-size: 0.8rem;
  }
}




@media (max-width: 480px) {
  

  
  .btnprograma,
  .btnimg {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .booking-form .form-group {
    margin-bottom: 1.5rem;
  }

  .interes-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}
/* ======== MEDIA QUERIES ======== */
@media (max-width: 768px) {
  booking-form label {
    color: #ffffff;
    font-weight: 600;
    font: 0.8rem;
    margin-top: 30px;
  }

  /* ======== FORMULARIO ======== */
  .contenedor-formulario {
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(7px);
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 90%;
    max-width: 500px;
    margin: 2rem auto;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(23, 158, 95, 0.3);
    margin-top: 250px;
  }

  .accordion-toggle {
    background-color: rgba(255, 255, 255, 0.062);
    backdrop-filter: blur(7px);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(23, 158, 95, 0.3);
    margin-top: 50px;
    background-color: rgba(255, 255, 255, 0.062);
  }

  .booking-section {
    background-color: rgba(255, 255, 255, 0.062);
  }
}

input:invalid ~ .btn[type="button"] {
  opacity: 0.6;
  cursor: pointer;
}



/* 

////////////////////////////NUEVO////////////////////// */
/* ==========================
   Partners Slider - CSS
   ========================== */

/* Animación scroll infinito */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Contenedor principal */
.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: transparent; /* 🔹 Mantener fondo transparente */
  padding: 20px 0;
}

/* Pista de logos */
.logo-track {
  display: flex;
  gap: 60px;
  animation: scroll 45s linear infinite; /* 🔹 Velocidad más lenta en desktop */
  width: max-content;
  will-change: transform;
}

/* Logos */
.logo-track img {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%) brightness(0) invert(1);  */
  /* filter: grayscale(100%) sepia(100%) hue-rotate(90deg) saturate(200%) brightness(50%); */
  filter: grayscale(100%) contrast(50%) brightness(100%);
  
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Hover: vuelve al color original */
.logo-track img:hover {
  filter: none; /* 🔹 Quita el filtro y se ve el color natural */
  transform: scale(1.1);
}

/* ==========================
   Responsive
   ========================== */

/* Tablets */
@media (max-width: 768px) {
  .logo-track {
    gap: 50px;
    animation-duration: 60s; /* 🔹 Más lento */
  }
  .logo-track img {
    height: 100px; /* 🔹 Logos más grandes */
  }
}

/* Móviles */
@media (max-width: 480px) {
  .logo-track {
    gap: 40px;
    animation-duration: 70s; /* 🔹 Mucho más lento */
  }
  .logo-track img {
    height: 85px; /* 🔹 Aún más grandes en móvil */
  }
}


#sfc6en3bsa5h5y8an5q3kwjhcfsk62m32u6,
#sfc6en3bsa5h5y8an5q3kwjhcfsk62m32u6 * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}


p.version-info {
  text-align: center;
  margin: 0 auto;
  color: #ccc;
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 8px 0;
}

/* 🔒 Elimina cualquier subrayado y forzará estilo en todos los navegadores */
p.version-info a.footer-link,
p.version-info a.footer-link:link,
p.version-info a.footer-link:visited,
p.version-info a.footer-link:hover,
p.version-info a.footer-link:focus,
p.version-info a.footer-link:active {
  text-decoration: none !important;    /* elimina subrayado */
  border: none !important;             /* elimina bordes inferiores de frameworks */
  outline: none !important;
  color: #4ea8de !important;           /* color base del enlace */
  font-weight: 500;
}

p.version-info a.footer-link:hover {
  color: #90cdf4 !important;           /* color más claro al pasar el cursor */
}






