:root {
  --bg-1: #0b0b0b;
  --text: #ffffff;
  --accent: #ffd166;
  /* botón/amarillo */
}

body {
  background: var(--bg-1);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1,
.display-5 {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: x-large;
}

.hero {
  min-height: 100vh;
  isolation: isolate;
}

/* crea contexto de apilado */
.hero-bg {
  background:
    radial-gradient(1200px 600px at 20% 20%, rgba(255, 209, 102, .2), transparent 60%),
    radial-gradient(1200px 600px at 95% 10%, rgba(255, 255, 255, .08), transparent 50%),
    linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .85) 40%, rgba(0, 0, 0, .95));
  z-index: 0;
  /* detrás del contenido */
}

.hero .container-xl {
  position: relative;
  z-index: 2;
}

/* contenido por encima de fondos */

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.highlight-2 {
  color: var(--accent);
  font-weight: 700;
}

.bi {
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: .15rem;
}

.btn-warning {
  background: var(--accent);
  border-color: var(--accent);
  color: #151515;
}

.btn-warning:hover {
  filter: brightness(.95);
}

.avatar-stack {
  display: inline-flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #111;
  object-fit: cover;
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

/* Imagen: full width en móvil, y limitada en desktop */
.hero-person {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  background: transparent !important;
}

@media (min-width: 992px) {
  .hero-person {
    max-width: 850px;
  }
}

/* Gradiente lateral: fuera de la columna derecha */
.hero-right-gradient {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 55%;
  right: -25vw;
  /* se extiende hacia la derecha para evitar el “cuadro” */
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, .55) 35%,
      rgba(0, 0, 0, .92) 100%);
  pointer-events: none;
  z-index: 1;
  /* debajo del contenido, encima del bg */
}

/* ---------- Sección clases ---------- */
.section-classes {
  padding: 56px 0 0px;
}

/* Acento reutilizable */
.text-accent {
  color: var(--accent) !important;
}

/* Ticker con loop continuo (2 pistas) */
.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  height: 44px;
}

/* ambas pistas animan igual */
.ticker-track {
  position: absolute;
  top: 0;
  left: 0;
  /* Pista 1 arranca desde la izquierda */
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  height: 44px;
  padding-inline: 1rem;
  white-space: nowrap;
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
  width: max-content;
  min-width: 100%;
  /* evita huecos si el texto es corto */
  will-change: transform;
  animation: ticker-scroll 22s linear infinite;
}

/* la segunda pista arranca justo a la derecha de la primera */
.ticker-track--2 {
  left: 100%;
  animation-delay: 0s;
  /* importante: sin delay para que no se monten */
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }

  /* se mueve su propio ancho */
}

/* Tarjetas de la galería */
.class-card {
  position: relative;
  background: #0f0f0f;
  border-radius: 24px;
  overflow: hidden;
}

.class-card__img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
}

@media (min-width: 992px) {
  .class-card__img {
    height: 420px;
  }
}

.class-card__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  padding: .375rem .9rem;
  border-radius: 999px;
  font-size: .8rem;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.class-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, .6) 75%,
      rgba(0, 0, 0, .95) 100%);
  z-index: 1;
}

.class-card__content {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  color: #fff;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.class-card__kicker {
  margin: 0 0 .25rem 0;
  font-weight: 600;
  letter-spacing: .4px;
  opacity: .9;
}

.class-card__title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
}

.class-card__subtitle {
  margin: .25rem 0 0 0;
  opacity: .9;
  font-weight: 600;
}

/* Hero base */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  /* asegura stacking correcto */
}

/* Imagen de fondo */
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('/img/fondo1-1.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

/* Overlay para sombra */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1;
}

/* Contenido siempre por encima */
.hero .container-xl {
  position: relative;
  z-index: 2;
}

/* Desktop: desplaza el fondo a la derecha */
@media (min-width: 992px) {
  .hero-bg-img {
    background-position: right center;
  }

  .hero-overlay {
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%);
  }
}

/* === Foco del fondo en móvil/tablet: empuja a la derecha === */
/* XS: <576px */
@media (max-width: 575.98px) {
  .hero-bg-img {
    /* mueve el foco a la derecha */
    background-position: 88% center;
    /* prueba 85–92% según se vea */
  }

  /* oscurece un poco más a la izquierda para el texto */
  .hero-overlay {
    background: linear-gradient(90deg,
        rgba(0, 0, 0, .10) 0%,
        rgba(0, 0, 0, .10) 30%,
        rgba(0, 0, 0, .10) 55%,
        rgba(0, 0, 0, .10) 75%,
        rgba(0, 0, 0, .10) 100%);
  }
}

/* SM: 576–767px */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-bg-img {
    background-position: 84% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%);
  }



}

/* MD: 768–991px (tablets) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-bg-img {
    background-position: 80% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.6) 35%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0) 100%);
  }
}

/* 1) Móvil/Tablet: que el hero NO se centre vertical ni mida 100vh */
@media (max-width: 991.98px) {
  .hero {
    min-height: 80vh;
    /* antes: 100vh */
    display: block;
    /* evita el align-items center implícito */
    padding-top: 0;
    /* por si quedó algo heredado */
  }

  .hero .container-xl {
    /* reduce el padding grande del py-5 */
    padding-top: 1rem !important;
    padding-bottom: 0rem !important;
  }
}

/* 2) Desktop: mantenemos el look centrado y alto */
@media (min-width: 992px) {
  .hero {
    display: flex;
    align-items: center;
  }
}

/* 3) Evita doble espacio por navbar fija:
      Si usas el script que setea paddingTop al <main>,
      anula el padding de la clase .pt-nav para no sumar dos veces */
.pt-nav {
  padding-top: 0 !important;
}

/* 4) iOS notch: agrega un mínimo seguro en móviles (opcional) */
@supports (padding: max(0px)) {
  @media (max-width: 991.98px) {
    .hero {
      padding-top: max(0.5rem, env(safe-area-inset-top));
    }
  }
}

/* ===== MOBILE/TABLET CARD ===== */
.feature-card {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 4 / 5;
  /* forma vertical agradable */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

.feature-card__bg {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  /* un pelín de zoom para evitar bordes */
}

.feature-card__overlay {
  position: absolute;
  inset: 0;
  /* oscurecido + leve viñeta para resaltar textos */
  background:
    radial-gradient(120% 100% at 80% 50%, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 60%, rgba(0, 0, 0, .75) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .6) 70%, rgba(0, 0, 0, .85));
}

.feature-card__content {
  position: absolute;
  inset: 0;
  padding: 1rem 1rem 1.25rem;
  color: #fff;
}

/* Quote arriba-izquierda */
.feature-quote {
  position: absolute;
  top: .85rem;
  left: .85rem;
  right: 1rem;
  max-width: 75%;
  font-weight: 500;
  line-height: 1.25;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.feature-quote__mark {
  font-size: 1.4rem;
  color: var(--accent);
  margin-right: .35rem;
  vertical-align: top;
}

/* Autor abajo-izquierda */
.feature-author {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .55);
}

.feature-author__name {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: .95;
  letter-spacing: .5px;
}

.feature-author__role {
  margin: .15rem 0 0 0;
  font-weight: 600;
  opacity: .95;
}

/* ===== DESKTOP (2 columnas) ===== */
@media (min-width: 992px) {
  .feature-photo {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    /* relación vertical elegante */
    aspect-ratio: 4 / 5;
    background: #0f0f0f;
  }

  .feature-photo__img {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1.015);
  }

  /* sutil overlay para coherencia con el resto del sitio */
  .feature-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .35));
    pointer-events: none;
  }
}

/* ===== MOBILE/TABLET STACK: imagen clara + panel ===== */
.feature-stack {
  width: min(100%, 720px);
}

/* Contenedor de imagen */
.feature-stack__media {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

/* Usa <img> para asegurar nitidez y mejor recorte de Osmar */
.feature-stack__img {
  width: 100%;
  height: clamp(280px, 55vw, 440px);
  object-fit: cover;
  /* Empuja el encuadre hacia la derecha para centrar a Osmar */
  object-position: 70% center;
  /* ajusta 65–85% según tu foto */
  display: block;
}

/* Panel de texto debajo (sin oscurecer la foto) */
.feature-stack__panel {
  margin-top: -14px;
  /* ligera superposición elegante */
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 1.25rem 1rem 1.25rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

/* Tipografía/espaciados suaves en móvil */
@media (max-width: 575.98px) {
  .feature-stack__panel {
    padding: 1rem .875rem 1.125rem;
  }

  .feature-stack__img {
    height: clamp(260px, 58vw, 420px);
    object-position: 75% center;
  }
}

/* Tablet (más altura de imagen y panel más cómodo) */
@media (min-width: 576px) and (max-width: 991.98px) {
  .feature-stack__img {
    height: clamp(360px, 48vw, 520px);
    object-position: 72% center;
  }

  .feature-stack__panel {
    padding: 1.5rem 1.25rem 1.5rem;
  }
}

/* ===== DESKTOP (sigues con tu layout de 2 columnas) ===== */
@media (min-width: 992px) {
  /* Mantén tu CSS anterior de .feature-photo / .feature-photo__img */
}

/* --- Sección por-que-ayudarte --- */
.section {
  padding: clamp(2.25rem, 4vw, 4rem) 0;
}

.eyebrow {
  letter-spacing: .08em;
  opacity: .8;
}

.pill-accent {
  background: var(--accent);
  color: #151515;
  border-radius: 999px;
  padding: .35rem .75rem;
  font-weight: 700;
}

.metric-card {
  background: #111;
  /* coherente con tu bg */
  border: 1px solid rgba(255, 255, 255, .06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

/* Título y lead con máximo ancho para lectura */
#por-que-ayudarte .lead,
#por-que-ayudarte p {
  max-width: 62ch;
}

/* Responsive: respiración en móvil/tablet */
@media (max-width: 991.98px) {
  #por-que-ayudarte .display-6 {
    font-size: clamp(1.6rem, 4.5vw, 2rem);
  }

  .metric-card {
    padding: 1rem 1rem;
  }

  .pill-accent {
    padding: .3rem .65rem;
  }
}

/* Ajuste de padding superior en la sección */
#por-que-ayudarte {
  padding-top: 2rem !important;
  /* antes estaba en 4rem aprox */
}

/* Quita margen excesivo en el título */
#por-que-ayudarte h2 {
  margin-top: 0 !important;
}

/* En móviles, menos aire todavía */
@media (max-width: 991.98px) {
  #por-que-ayudarte {
    padding-top: 1.5rem !important;
  }
}

/* Compactar secciones para evitar huecos */
.section {
  padding-top: 0rem !important;
  /* ya lo bajamos antes */
  padding-bottom: 2rem !important;
  /* reduce aire abajo */
}

/* Ajustar filas dentro de secciones */
.section .row {
  margin-bottom: 0 !important;
}

/* Forzar que columnas se alineen bien */
.section .col-12,
.section .col-lg-5,
.section .col-lg-7 {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Quitar espacio extra debajo de los botones */
.section a.btn {
  margin-bottom: 0 !important;
}

@media (max-width: 991.98px) {
  #por-que-ayudarte {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  #por-que-ayudarte .metric-card {
    margin-bottom: 1rem;
    /* separa solo lo justo entre tarjetas */
  }
}

.icon-metric {
  font-size: 2rem;
  color: var(--accent);
  flex-shrink: 0;
}

.metric-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.site-footer {
  background: #0b0b0b;
  /* mismo tono que el hero */
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .8);
  font-size: 0.85rem;
}

.site-footer strong {
  color: var(--accent);
}

.site-footer .text-muted {
  font-size: 0.75rem;
  opacity: .65;
}

@media (max-width: 576px) {

  /* vuelve flex-col al contenedor de tu contenido */
  .hero .col-12,
  .hero .col-lg-6 {
    display: flex;
    flex-direction: column;
    min-height: 90dvh;
    /* que ocupe alto de pantalla */
  }

  /* este es el bloque que quieres al final */
  .hero .d-flex.gap-2.mb-4 {
    margin-top: auto !important;
    /* lo empuja al fondo */
    margin-bottom: 0 !important;
  }
}

.lista {
  font-size: medium;
}

/* por defecto, en desktop/tablet sin fondo */
.bg-mobile-only {
  background: none !important;
}

/* en móvil (<768px), aplica el fondo */
@media (max-width: 767.98px) {
  .bg-mobile-only {
    background-color: rgba(0, 0, 0, 0.65) !important;
    border-radius: .75rem;
    /* rounded-3 */
  }

  h1,
  .display-5 {
    font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: medium;
  }

  .lista {
    font-size: small;
  }

  .justificado {
    text-align: justify;
  }
}

/* Franja debajo del CTA */
.cta-band {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  max-width: 100%;
  padding: .65rem .95rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 193, 7, .35);
  /* dorado tipo btn-warning */
  color: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  font-size: 1.1rem;
  line-height: 1.25rem;
}

.cta-band strong {
  color: #ffc107;
  /* dorado bootstrap warning */
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .cta-band {
    width: 100%;
  }
}

/* =========================
   BASE
========================= */
:root {
  --bg: #070707;
  --bg2: #0d0d0d;
  --text: rgba(255, 255, 255, .92);
  --muted: rgba(255, 255, 255, .78);
  --muted2: rgba(255, 255, 255, .65);
  --border: rgba(255, 255, 255, .14);
  --soft: rgba(255, 255, 255, .06);
  --accent: #f5c84b;
  /* dorado */
}

body {
  background: var(--bg);
  color: var(--text);
}

/* =========================
   HERO
========================= */
.hero {
  min-height: 92vh;
  /* mantiene CTA arriba del fold */
  display: flex;
  align-items: center;
}

.hero-inner {
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 20% 20%, rgba(245, 200, 75, .10), transparent 60%),
    radial-gradient(800px 500px at 80% 30%, rgba(255, 255, 255, .06), transparent 55%),
    linear-gradient(180deg, #060606 0%, #000 100%);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 20% 20%, rgba(0, 0, 0, .25), rgba(0, 0, 0, .75));
}

/* headline */
.hero-title {
  font-weight: 800;
  line-height: 1.08;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -.02em;
  max-width: 680px;
}

.hero-sub {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.55;
  font-size: 16px;
}

.highlight {
  color: var(--accent);
  font-weight: 800;
}

/* CTA button */
.hero-cta {
  white-space: normal;

}

.btn.btn-warning {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.btn.btn-warning:hover {
  filter: brightness(.96);
  color: #111;
}

/* Trust text */
.hero-trust {
  color: var(--muted2);
  line-height: 1.45;
}

/* Right image */
.hero-person-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-person {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .55));
  opacity: .98;
}

/* hide image on mobile to avoid distraction & keep CTA above fold */
@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero-right-col {
    display: none;
  }

  .hero-inner {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

/* info band */
.cta-band {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 200, 75, .35);
  background: rgba(245, 200, 75, .08);
  border-radius: 14px;
  color: var(--muted);
  max-width: 720px;
}

/* badge tweaks (Bootstrap badges are fine, this just ensures consistency) */
.badge.bg-dark {
  background: rgba(0, 0, 0, .55) !important;
}

/* =========================
   SECTIONS
========================= */
.section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

.group-benefits {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.card-soft {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.card-soft__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(245, 200, 75, .12);
  border: 1px solid rgba(245, 200, 75, .25);
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 20px;
}

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

/* =========================
   FAQ
========================= */
.faq {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  border-radius: 16px;
  padding: 14px 16px;
}

.faq-q {
  font-weight: 800;
  margin-bottom: 6px;
}

.faq-a {
  color: var(--muted);
  line-height: 1.55;
}

/* =========================
   OPTIONAL: reduce distractions in hero on very small screens
========================= */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 15px;
  }
}

.hero-person-wrap {
  position: absolute;
  inset: 0;
  background: url('/img/fondo1-1.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
}

@media (max-width: 991.98px) {
  .hero-person-wrap {
    background: none !important;
  }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto !important;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.bi-whatsapp {
  color: #ffffff !important;
  /* verde oficial de WhatsApp */
}

.hero-bg-img,
.hero-overlay,
.hero-person-wrap,
.hero-right-gradient {
  pointer-events: none;
}

.hero-cta {
  position: relative;
  z-index: 10;

}

/* =========================
   ESPACIADOR SOLO MÓVIL
   ========================= */
@media (max-width: 767.98px) {

  .hero-mobile-spacer {
    width: 100%;
    margin: 0.75rem 0 1rem;
    /* separa badges del título */
    display: flex;
    justify-content: center;
  }

  .hero-mobile-spacer-img {

    width: 100%;
    max-width: 320px;
    /* controla el ancho visual */
    height: 150px;
    /* AJUSTA: 40–64px según necesites */
    object-fit: contain;
    opacity: 0.9;
    /* elegante, no distrae */
    pointer-events: none;
  }

  /* =========================
   MICRO-INTERACCIONES + REVEAL + RELOJ + CTA STICKY (ADD-ON)
   Pegar al final del style.css
========================= */

  /* CTA principal: pulso sutil (no molesto) */
  .hero-cta {
    position: relative;
    overflow: hidden;
    transform: translateZ(0);

  }

  .hero-cta.cta-pulse {
    animation: ctaPulse 2.6s ease-in-out infinite;
  }

  @keyframes ctaPulse {

    0%,
    100% {
      transform: scale(1);
    }

    50% {
      transform: scale(1.015);
    }
  }

  /* Glow suave en hover/focus */
  .hero-cta:hover,
  .hero-cta:focus-visible {
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
    filter: brightness(1.02);
  }

  /* Ripple effect */
  .btn-ripple {
    position: relative;
    overflow: hidden;
  }

  .btn-ripple .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    opacity: .55;
    background: rgba(255, 255, 255, .55);
    animation: rippleAnim .55s ease-out;
    pointer-events: none;
  }

  @keyframes rippleAnim {
    to {
      transform: scale(3.2);
      opacity: 0;
    }
  }

  /* Reveal animation – versión lenta y elegante */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.9s ease,
      transform 0.9s ease;
    will-change: opacity, transform;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Respeta accesibilidad */
  @media (prefers-reduced-motion: reduce) {
    .hero-cta.cta-pulse {
      animation: none;
    }

    .reveal {
      transition: none;
      transform: none;
      opacity: 1;
    }
  }

  /* Bloque reloj/urgencia */
  .time-nudge {
    border: 1px solid rgba(245, 200, 75, .22);
    background: rgba(245, 200, 75, .08);
    border-radius: 14px;
    padding: 10px 12px;
    max-width: 720px;
    color: rgba(255, 255, 255, .86);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .time-nudge__top {
    display: flex;
    gap: 10px;
    align-items: baseline;
    justify-content: space-between;
  }

  .time-nudge__label {
    font-weight: 700;
    letter-spacing: .02em;
  }

  .time-nudge__time {
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: var(--accent);
  }

  .time-nudge__msg {
    margin-top: 4px;
    color: rgba(255, 255, 255, .78);
    line-height: 1.25rem;

  }

  /* CTA sticky móvil */
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .72) 35%, rgba(0, 0, 0, .92));
    z-index: 9999;
    width: 80%;
  }

  .mobile-sticky-cta__btn {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 200px;
    padding: 10px;
    text-decoration: none;
    font-weight: 800;
    color: #0b0b0b;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
  }

  .mobile-sticky-cta__btn i {
    font-size: 1.35rem;
    color: #0b0b0b;
  }

  /* Para que el sticky no tape el footer en móvil */
  @media (max-width: 991.98px) {
    body {
      padding-bottom: 78px;
    }
  }

  /* =========================
   RELOJ DIGITAL ESTILO LED
========================= */

  .digital-clock {
    text-align: center;
    border-radius: 18px;
    padding: 14px 18px;
    background: radial-gradient(circle at top,
        rgba(255, 255, 255, 0.08),
        rgba(0, 0, 0, 0.85)),
      linear-gradient(180deg, #0b0b0b, #000);
    border: 1px solid rgba(255, 215, 120, 0.25);
    box-shadow:
      inset 0 0 20px rgba(255, 200, 90, 0.08),
      0 18px 40px rgba(0, 0, 0, 0.6);
    max-width: 420px;
  }

  /* Texto superior */
  .digital-clock .time-nudge__label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 6px;
  }

  /* Números del reloj */
  .digital-time {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-family: "Courier New", "JetBrains Mono", monospace;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    font-weight: 700;
    color: #f5c84b;
    text-shadow:
      0 0 6px rgba(245, 200, 75, 0.6),
      0 0 14px rgba(245, 200, 75, 0.35);
  }

  /* Cada bloque de número */
  .digital-time span {
    min-width: 2ch;
    text-align: center;
  }

  /* Separadores ":" con parpadeo */
  .digital-time .colon {
    animation: blink 1s infinite;
    opacity: 0.8;
  }

  @keyframes blink {

    0%,
    50% {
      opacity: 1;
    }

    51%,
    100% {
      opacity: 0.2;
    }
  }

  /* Texto inferior */
  .digital-clock .time-nudge__msg {
    margin-top: 6px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
  }

  /* Accesibilidad */
  @media (prefers-reduced-motion: reduce) {
    .digital-time .colon {
      animation: none;
    }
  }

  .digital-clock {
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA STICKY MÓVIL – versión premium */
  .mobile-sticky-cta__btn {
    background: linear-gradient(135deg, #25D366, #1ebe5d);
  }

  .mobile-sticky-cta__btn span {
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }

  .mobile-sticky-cta__btn i {
    color: #ffffff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  }

  /* =========================
   RELOJ – TIPOGRAFÍA PREMIUM
========================= */

  .digital-clock {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  }

  /* Título "El tiempo avanza" */
  .digital-clock .time-nudge__label {
    font-size: 0.85rem;
    /* antes 0.75 */
    font-weight: 700;
    letter-spacing: 0.22em;
  }

  /* Hora digital */
  .digital-time {
    font-size: clamp(2.2rem, 6vw, 3.1rem);
    /* más grande */
    font-weight: 800;
    letter-spacing: 0.06em;
  }

  /* Texto inferior */
  .digital-clock .time-nudge__msg {
    font-size: 0.95rem;
    /* más legible */
    font-weight: 500;
  }

  .digital-time {
    text-shadow:
      0 0 8px rgba(245, 200, 75, 0.65),
      0 0 18px rgba(245, 200, 75, 0.35);
  }

  /* =========================
   CTA STICKY: MÓVIL + TABLET PRO
========================= */

  /* Que el botón no quede gigante en pantallas medianas: lo centramos y limitamos ancho */
  .mobile-sticky-cta__btn {
    max-width: 720px;
    margin: 0 auto;
  }

  /* Tipografía e ícono (base) */
  .mobile-sticky-cta__btn span {
    color: #fff;
    font-weight: 900;
    font-size: 1.05rem;
    line-height: 1.15;
  }

  .mobile-sticky-cta__btn i {
    color: #fff;
    font-size: 2rem;
    /* ya no inline */
  }

  /* TABLET (MD: 768–991.98) – más “premium” */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .mobile-sticky-cta {
      padding: 16px 18px;
    }

    .mobile-sticky-cta__btn {
      padding: 16px 18px;
    }

    .mobile-sticky-cta__btn i {
      font-size: 2.2rem;
    }

    .mobile-sticky-cta__btn span {
      font-size: 1.18rem;
    }
  }

  /* IMPORTANTE:
   Si tu sticky se muestra hasta XL (d-xl-none),
   el padding-bottom del body debe cubrir también tablets grandes (hasta 1199.98px) */
  @media (max-width: 1199.98px) {
    body {
      padding-bottom: 88px;
      /* evita que el sticky tape el footer */
    }
  }

  /* =========================
   RELOJ: MISMO ESTILO EN MÓVIL Y ESCRITORIO
   (forzado y consistente)
========================= */

  .time-nudge.digital-clock {
    /* contenedor */
    width: 100%;
    max-width: 420px;
    /* mismo look en todos */
    margin: 0 auto;
    /* centrado siempre */
    text-align: center;

    border-radius: 18px;
    padding: 14px 18px;

    background:
      radial-gradient(circle at top, rgba(255, 255, 255, .08), rgba(0, 0, 0, .85)),
      linear-gradient(180deg, #0b0b0b, #000);

    border: 1px solid rgba(255, 215, 120, 0.25);

    box-shadow:
      inset 0 0 20px rgba(245, 200, 75, 0.08),
      0 18px 40px rgba(0, 0, 0, 0.6);
  }

  /* etiqueta superior */
  .time-nudge.digital-clock .time-nudge__label {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 6px;
  }

  /* hora */
  .time-nudge.digital-clock .digital-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    font-family: "Courier New", "JetBrains Mono", monospace;
    font-size: 2.6rem;
    /* mismo tamaño en todos */
    font-weight: 800;
    letter-spacing: .06em;

    color: #f5c84b;

    text-shadow:
      0 0 8px rgba(245, 200, 75, 0.65),
      0 0 18px rgba(245, 200, 75, 0.35);
  }

  .time-nudge.digital-clock .digital-time span {
    min-width: 2ch;
    text-align: center;
  }

  .time-nudge.digital-clock .digital-time .colon {
    animation: blink 1s infinite;
    opacity: .85;
  }

  /* texto inferior */
  .time-nudge.digital-clock .time-nudge__msg {
    margin-top: 6px;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: .95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    line-height: 1.25rem;
  }

  /* si en móvil quieres un poquito más compacto, SOLO móvil */
  @media (max-width: 767.98px) {
    .time-nudge.digital-clock .digital-time {
      font-size: 2.2rem;
    }
  }

  /* LOGO: Mobile + Tablet (independiente de otros @media) */
  .hero-logo {
    width: 90%;
    max-width: 520px;
  }

  /* Tablet (md): 768px – 991.98px */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .hero-logo {
      width: 55%;
      max-width: 560px;
    }
  }

  /* Mobile (xs/sm): <768px */
  @media (max-width: 767.98px) {
    .hero-logo {
      width: 85%;
      max-width: 420px;
    }
  }

  .text-justificado {
    text-align: justify;
  }

  .audience-list li {
    font-size: 1.05rem;
    line-height: 1.4;
  }

  .audience-list i {
    flex-shrink: 0;
  }

  @media (max-width: 767.98px) {
    .mobile-sticky-cta {
      position: fixed;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;

      width: 80%;
      padding: 12px 14px;

      background: linear-gradient(180deg,
          rgba(0, 0, 0, 0),
          rgba(0, 0, 0, .72) 35%,
          rgba(0, 0, 0, .92));

      z-index: 9999;
    }
  }






}