: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: 2rem !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: 2rem !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: 95dvh;          /* 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;
}
}