/* =========================
   Paleta U-nido (del doc)
   ========================= */
:root{
  --base:   #E3D2BA;  /* PANTONE 48 C */
  --ink:    #53565A;  /* PANTONE 425 C */
  --acc1:   #F4DC94;  /* PANTONE 7401 C */
  --acc2:   #B5CDAE;  /* PANTONE 559 C */
  --white:  #F7F7F7;  /* Blanco neutro */

  --radius: 20px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --maxw:   1200px;
}

/* =========================
   Reset & base
   ========================= */
*{
  box-sizing: border-box;
}

html,

body{
  height: 100%;
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial;
  color: var(--ink);
  background: var(--white); /* fondo neutro */
}

.main{
  min-height: 100vh;
  background:
    radial-gradient(1200px 800px at 90% -10%, rgba(244,220,148,.35), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(181,205,174,.35), transparent 60%),
    var(--white);
}


/* =========================
   Layout genérico
   ========================= */
.container{
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(16px, 4vw, 32px);
}

/* =========================
   Header & navegación
   ========================= */
.header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  position: relative; /* para posicionar el menú móvil */
}

/* Toggle menú móvil (hidden en desktop) */
.nav-toggle{
  display: none;
}

.nav-toggle__btn{
  display: none; /* se muestra solo en mobile */
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(83,86,90,.18);
  background: #fff;
  box-shadow: var(--shadow);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle__btn span{
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
}

.nav-toggle__btn span::before,
.nav-toggle__btn span::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform .2s ease,
    top .2s ease,
    bottom .2s ease,
    opacity .2s ease;
}

.nav-toggle__btn span::before{
  top: -6px;
}

.nav-toggle__btn span::after{
  bottom: -6px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: .2px;
}

.brand__img{
  height: 42px;
  width: auto;
  display: block;
}

.brand__logo{
  font-size: 22px;
}

.brand__name{
  font-size: 1.05rem;
}

.nav{
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav__link{
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  opacity: .9;
}

.nav__link:hover{
  opacity: 1;
}

/* =========================
   SECCIÓN 1
   ========================= */
.hero{
  display: grid;
  gap: clamp(24px, 3vw, 40px);
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  min-height: 86dvh;
}

.kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(227,210,186,.55);
  color: #4b4e52;
  font-weight: 600;
  letter-spacing: .2px;
  font-size: .9rem;
  box-shadow: var(--shadow);
}

.kicker i{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--acc2);
  display: inline-block;
}

h1{
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  margin: 14px 0 10px;
}

.hl{
  background: linear-gradient(transparent 60%, rgba(244,220,148,.6) 60%);
}

.subtitle{
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  opacity: .92;
  max-width: 48ch;
}

.cta-row{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: .2px;
  transition:
    transform .06s ease,
    box-shadow .2s ease,
    background .2s ease,
    filter .2s ease;
  box-shadow: var(--shadow);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn:active{
  transform: translateY(1px);
}

.btn--primary{
  background: var(--ink);
  color: #fff;
}

.btn--primary:hover{
  filter: brightness(1.05);
}

.btn--ghost{
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn--ghost:hover{
  background: rgba(83,86,90,.06);
}

.btn--sm{
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
}

.badges{
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.badge{
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge img{
  height: 44px;  /* misma altura para ambos botones */
  width: auto;
  object-fit: contain;
  display: block;
}

.trust{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: .92rem;
  opacity: .9;
}

.trust span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acc2);
}

.hero__visual{
  display: flex;
  justify-content: flex-end;
}

.phone{
  position: relative;
  aspect-ratio: 10 / 13;
  max-width: 520px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(227,210,186,.85), rgba(181,205,174,.85));
  border: 1px solid rgba(83,86,90,.12);
}

.phone__bezel{
  position: absolute;
  inset: 10px;
  border-radius: 22px;
  border: 2px solid rgba(83,86,90,.15);
}

.screen{
  position: absolute;
  inset: 24px;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.screen__header{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--base);
  border-bottom: 1px solid rgba(83,86,90,.08);
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .3px;
}

.logo__icon{
  font-size: 18px;
}

.logo__text{
  font-weight: 800;
}

.logo__img{
  height: 26px;
  width: auto;
  display: block;
  margin-inline: auto;
}

.screen__body{
  padding: 16px;
  display: grid;
  gap: 12px;
  align-content: start;
  background: linear-gradient(180deg, #fff, #fdfbf7);
}

.chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(181,205,174,.2);
  color: #335244;
  font-weight: 700;
  font-size: .82rem;
}

.card{
  border: 1px solid rgba(83,86,90,.12);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #fff;
}

.card h4{
  margin: 0;
  font-size: .95rem;
}

.card p{
  margin: 0;
  font-size: .86rem;
  color: #5a5f64;
}

.screen__footer{
  padding: 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(83,86,90,.08);
}

.btn-mini{
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(83,86,90,.18);
  background: var(--white);
  font-weight: 700;
  cursor: pointer;
}

.btn-mini--primary{
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   Sección 2 – Problema y contexto
   ========================= */

.section-problem{
  padding-block: clamp(40px, 8vh, 80px);
}

.section-problem__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: flex-start;
}

/* Columna texto */
.section-title{
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  margin: 12px 0 10px;
}

.section-lead{
  margin: 0 0 10px;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 46ch;
}

.section-note{
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  max-width: 48ch;
}

/* Columna viñetas */
.section-problem__points{
  align-self: stretch;
}

.problem-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.problem-item{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(247,247,247,0.9); /* muy suave para no cortar el degradado */
  border: 1px solid rgba(83,86,90,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.problem-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(244,220,148,0.4); /* acc1 muy suave */
}

.problem-text h3{
  margin: 0 0 4px;
  font-size: 0.98rem;
}

.problem-text p{
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
}
/* =========================
   Sección 3 – La solución / Cómo funciona (fondo gris + texto blanco)
   ========================= */

.section-how{
  padding-block: clamp(40px, 8vh, 80px);
  background: #53565A;      /* gris principal en toda la sección */
  color: #F7F7F7;           /* texto blanco/gris muy claro */
}

.section-how__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: flex-start;
}

/* Columna texto */
.section-how__copy .kicker{
  color: #F7F7F7;
  opacity: 0.8;
}

.section-how__copy .section-title{
  margin-top: 10px;
  color: #FFFFFF;
}

.section-how__copy .section-lead{
  color: rgba(247,247,247,0.9);
}

/* Lista de pasos */
.steps{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.step{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #606369; /* un gris un poco más claro que el fondo */
  border: 1px solid rgba(0,0,0,0.25);
  box-shadow: 0 10px 24px rgba(0,0,0,0.45);
}

.step-icon{
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #53565A;
  background: #F4DC94; /* toque de color sutil */
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.step-text h3{
  margin: 0 0 4px;
  font-size: 0.98rem;
  color: #FFFFFF;
}

.step-text p{
  margin: 0;
  font-size: 0.9rem;
  color: rgba(247,247,247,0.9);
}

.section-how__cta{
  margin-top: 20px;
}

/* Columna visual: video + highlights */
.section-how__visual{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Tarjeta de video */
.video-card{
  border-radius: 20px;
  padding: 14px 14px 16px;
  background: #686C72;  /* gris más claro que el fondo, pero no blanco */
  border: 1px solid rgba(0,0,0,0.35);
  box-shadow: 0 14px 34px rgba(0,0,0,0.6);
  color: #F7F7F7;
}

.video-card__badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: rgba(0,0,0,0.25);
  color: #F7F7F7;
  margin-bottom: 10px;
}

.video-card__frame{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #2A2C30; /* gris muy oscuro tipo “pantalla apagada” */
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-card__glow{
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 35px rgba(0,0,0,0.8) inset;
}

.video-card__play{
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

.video-card__caption{
  margin: 10px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(247,247,247,0.9);
}

/* Mini highlights debajo del video */
.mini-highlights{
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 10px;
}

.mini-highlight{
  padding: 10px 12px;
  border-radius: 14px;
  background: #6E7278;  /* gris intermedio */
  border: 1px solid rgba(0,0,0,0.4);
  color: #F7F7F7;
}

.mini-highlight h3{
  margin: 0 0 4px;
  font-size: 0.92rem;
}

.mini-highlight p{
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.9;
}

/* Botón dentro de la sección (override suave si ya tenés .btn--primary) */
.section-how .btn--primary{
  background-color: #F4DC94;
  color: #53565A;
  border: none;
}

.section-how .btn--primary:hover{
  background-color: #e5ca7e;
}
/* =========================
   Sección 4 – Tipos de servicios
   ========================= */

.section-services{
  padding-block: clamp(40px, 8vh, 80px);
}

.section-services__header{
  max-width: 560px;
  margin: 0 auto 28px;
}

.section-services__header .section-title{
  margin-top: 10px;
}

.section-services__header .section-lead{
  margin-top: 6px;
}

/* Grid de servicios */
.section-services__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.service-card{
  padding: 16px 16px 18px;
  border-radius: 18px;
  background: rgba(247,247,247,0.96); /* similar a sección 2 */
  border: 1px solid rgba(83,86,90,0.08);
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-icon{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(244,220,148,0.4); /* acc1 suave */
}

.service-title{
  margin: 4px 0 0;
  font-size: 0.98rem;
}

.service-text{
  margin: 2px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* CTA inferior */
.section-services__cta{
  margin-top: 28px;
  display: flex;
  justify-content: flex-start;
}

.section-services__cta .btn--primary{
  background-color: var(--ink);
  color: #fff;
}
.section-services__cta .btn--primary:hover{
  filter: brightness(1.05);
}

/* =========================
   Sección 5 – Testimonios y confianza
   ========================= */

.section-testimonials{
  padding-block: clamp(48px, 9vh, 88px);
  background: linear-gradient(135deg,
    rgba(244,220,148,1) 0%,
    rgba(227,210,186,1) 40%,
    rgba(181,205,174,1) 100%);
  color: var(--ink);
}

.section-testimonials__inner{
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.section-testimonials__header{
  flex: 1 1 45%;
  max-width: 480px;
}

.section-testimonials__header .section-title{
  margin-top: 10px;
}

.section-testimonials__header .section-lead{
  margin-top: 8px;
}

/* Stats */
.section-testimonials__stats{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.stat-pill{
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247,247,247,0.96);
  border: 1px solid rgba(83,86,90,0.12);
  display: inline-flex;
  flex-direction: column;
  min-width: 140px;
}

.stat-number{
  font-weight: 700;
  font-size: 1rem;
}

.stat-label{
  font-size: 0.82rem;
  opacity: 0.85;
}

/* Sellos de confianza */
.section-testimonials__badges{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.badge-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(247,247,247,0.96);
  border: 1px dashed rgba(83,86,90,0.25);
}

.badge-icon{
  font-size: 1rem;
}

.badge-text{
  font-size: 0.86rem;
}

/* Carrusel */
.section-testimonials__carousel{
  flex: 1 1 55%;
  position: relative;
}

/* Radios ocultos */
.section-testimonials__carousel input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Contenedor slider */
.testimonials-slider{
  position: relative;
  width: 100%;
  min-height: 220px;
}

/* Tarjetas de testimonio */
.testimonial-card{
  position: absolute;
  inset: 0;
  padding: 20px 22px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-tag{
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(181,205,174,0.2);
  color: var(--ink);
}

.testimonial-tag--student{
  background: rgba(83,86,90,0.12);
}

.testimonial-text{
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-user{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.testimonial-avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244,220,148,0.7);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name{
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.testimonial-meta{
  font-size: 0.8rem;
  opacity: 0.8;
  margin: 0;
}

/* Mostrar la tarjeta según el radio activo */
#testimonial-1:checked ~ .testimonials-slider .testimonial-card:nth-child(1),
#testimonial-2:checked ~ .testimonials-slider .testimonial-card:nth-child(2),
#testimonial-3:checked ~ .testimonials-slider .testimonial-card:nth-child(3){
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Dots del carrusel */
.testimonials-dots{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonials-dots .dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(83,86,90,0.6);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

/* Dot activo según radio */
#testimonial-1:checked ~ .testimonials-dots .dot:nth-child(1),
#testimonial-2:checked ~ .testimonials-dots .dot:nth-child(2),
#testimonial-3:checked ~ .testimonials-dots .dot:nth-child(3){
  background: var(--ink);
  transform: scale(1.08);
}

/* =========================
   Sección 6 – Footer
   ========================= */

.site-footer{
  background-color: var(--ink); /* #53565A si no usás variables */
  color: #F7F7F7;
  padding-block: 32px 18px;
  margin-top: 0;
}

.site-footer .container{
  border-top: 1px solid rgba(247,247,247,0.08);
  padding-top: 24px;
}

.site-footer__top{
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr) minmax(0, 1.6fr);
  gap: 32px;
  align-items: flex-start;
}

.site-footer__col{
  font-size: 0.9rem;
}

/* Marca */
.footer-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-logo{
  height: 26px;
  width: auto;
}

.footer-logo-text{
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-text{
  margin: 0 0 10px;
  opacity: 0.9;
  line-height: 1.5;
}

.footer-text--small{
  font-size: 0.86rem;
}

/* Alianzas */
.footer-alliances{
  margin-top: 10px;
}

.footer-alliances__label{
  margin: 0 0 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  opacity: 0.8;
}

.footer-alliances__logos{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-chip{
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(247,247,247,0.16);
  font-size: 0.78rem;
  opacity: 0.9;
}

/* Enlaces */
.footer-title{
  font-size: 0.92rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.footer-links a{
  color: #F7F7F7;
  text-decoration: none;
  font-size: 0.88rem;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.footer-links a:hover{
  opacity: 1;
  transform: translateX(2px);
}

/* Redes sociales */
.footer-social{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.social-pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #F7F7F7;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(247,247,247,0.05);
  border: 1px solid rgba(247,247,247,0.12);
  font-size: 0.86rem;
  transition: background 0.2s ease, transform 0.15s ease;
}

.social-pill:hover{
  background: rgba(247,247,247,0.12);
  transform: translateY(-1px);
}

.social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #F7F7F7;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.social-handle{
  opacity: 0.95;
}

/* Parte inferior */
.site-footer__bottom{
  margin-top: 22px;
  border-top: 1px solid rgba(247,247,247,0.08);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.footer-copy{
  margin: 0;
  font-size: 0.78rem;
  opacity: 0.8;
}



/* =========================
   RESPONSIVE RESPONSIVE RES
   ========================= */

/* Tablet / layout de hero */
@media (max-width: 1024px){
  .section-services__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .section-testimonials__inner{
    flex-direction: column;
  }

  .section-testimonials__header{
    max-width: none;
  }

  .section-testimonials__carousel{
    max-width: 560px;
  }
}

@media (max-width: 940px){
  .hero{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 56px;
  }

  .hero__visual{
    justify-content: stretch;
  }

  .site-footer__top{
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
  }

  .site-footer__col:last-child{
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px){
  .section-problem__grid{
    grid-template-columns: 1fr;
  }

  .section-problem__points{
    order: 2;
  }

  .section-problem__copy{
    order: 1;
  }
  .section-how__grid{
    grid-template-columns: 1fr;
  }

  .section-how__visual{
    order: 2;
  }

  .section-how__copy{
    order: 1;
  }

  .section-services__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-services__header{
    text-align: left;
  }

  .section-services__cta{
    justify-content: flex-start;
  }
}

/* Mobile: header + nav responsive */
@media (max-width: 768px){
  .header{
    gap: 10px;
  }

  .nav-toggle__btn{
    display: inline-flex;
  }

  /* Menú se vuelve panel desplegable */
  .nav{
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin-top: 10px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition:
      opacity .18s ease,
      transform .18s ease;
  }

  .nav__link{
    width: 100%;
  }

  /* botón Descargar ocupa todo el ancho para que parezca item del menú */
  .nav .btn{
    width: 100%;
    justify-content: center;
  }

  /* Cuando el toggle está ON, mostramos el menú */
  .nav-toggle:checked ~ .nav{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Animación del ícono hamburguesa -> X */
  .nav-toggle:checked + .nav-toggle__btn span{
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle__btn span::before{
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle:checked + .nav-toggle__btn span::after{
    bottom: 0;
    transform: rotate(-45deg);
  }

}
@media (max-width: 600px){
  .problem-item{
    padding: 10px 12px;
    border-radius: 14px;
  }

  .problem-icon{
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .step{
    padding: 8px 10px;
    border-radius: 16px;
  }

  .step-icon{
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .video-card{
    padding-inline: 12px;
  }
  .section-services__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-services__header{
    text-align: left;
  }

  .section-services__cta{
    justify-content: flex-start;
  }
  .section-testimonials{
    padding-block: 40px;
  }

  .testimonial-card{
    padding: 18px 16px;
  }

  .section-testimonials__stats{
    gap: 8px;
  }

  .stat-pill{
    min-width: 120px;
  }

  .site-footer{
    padding-block: 26px 16px;
  }

  .site-footer .container{
    padding-top: 18px;
  }

  .site-footer__top{
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .site-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-alliances__logos{
    gap: 4px;
  }
}
