
:root {
  /* Colores */
  --c-primary:        #0B1E3B;
  --c-primary-dark:   #081730;
  --c-primary-light:  #142d52;
  --c-accent:         #689D0F;
  --c-accent-dark:    #5da82e;
  --c-accent-light:   #82d04d;
  --c-bg:             #F5F7FA;
  --c-white:          #FFFFFF;
  --c-text:           #1A1A1A;
  --c-text-muted:     #6B7280;
  --c-border:         #E5E7EB;

  /* Tipografía */
  --ff-display: 'Poppins', system-ui, sans-serif;
  --ff-body:    'Inter', system-ui, sans-serif;

  /* Espaciados */
  --container: 1280px;
  --gutter: 24px;

  /* Radios */
  --r-card: 12px;
  --r-btn:  8px;
  --r-pill: 999px;

  /* Sombras */
  --sh-sm: 0 2px 6px rgba(11, 30, 59, 0.06);
  --sh-md: 0 8px 24px rgba(11, 30, 59, 0.10);
  --sh-lg: 0 20px 40px rgba(11, 30, 59, 0.18);
  --sh-green: 0 8px 20px rgba(111, 191, 58, 0.38);

  /* Transiciones */
  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-med:  300ms cubic-bezier(.4,0,.2,1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hide-mobile { display: inline; }


/* ============================================================
   3. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-primary);
  box-shadow: none;
  border: 0;
}

.navbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo__img {
  height: 100px;
  width: auto;
  display: block;
}

/* Barra de búsqueda */
.search {
  display: flex;
  background: var(--c-white);
  border-radius: var(--r-btn);
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  justify-self: center;
}
.search__input {
  flex: 1;
  border: 0;
  padding: 14px 20px;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  color: var(--c-text);
}
.search__input::placeholder { color: #9CA3AF; }
.search__button {
  background: var(--c-accent);
  width: 60px;
  display: grid;
  place-items: center;
  transition: background var(--t-fast);
}
.search__button:hover  { background: var(--c-accent-dark); }
.search__button:active { transform: scale(.96); }
.search__button svg { width: 25px; height: 40px; }

/* Menú */
.nav__list {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-white);
  font-size: .92rem;
  font-weight: 500;
  padding: 8px 4px;
  position: relative;
  transition: color var(--t-fast);
}
.nav__link svg { width: 20px; height: 20px; }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--c-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav__link:hover { color: var(--c-accent-light); }
.nav__link:hover::after { transform: scaleX(1); }

/* Hamburguesa */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: all var(--t-med);
}
.hamburger.is-active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Menú móvil */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--c-primary-dark);
  padding: 8px var(--gutter) 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu__link {
  color: var(--c-white);
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-menu__link:last-child { border-bottom: 0; }


/* ============================================================
   4. HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--c-primary);
  min-height: 460px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__image {
  position: absolute;
  inset: 0;
  background:
    url('../../img/bg/bg.png')
    center / cover no-repeat;
  image-rendering: -webkit-optimize-contrast;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--c-primary) 0%,
    var(--c-primary) 32%,
    rgba(11,30,59,0.88) 44%,
    rgba(11,30,59,0.45) 58%,
    rgba(11,30,59,0)    72%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 60px var(--gutter);
}

.hero__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -.5px;
  max-width: 720px;
}
.hero__title--accent { color: var(--c-accent); }

.hero__description {
  margin-top: 22px;
  color: rgba(255,255,255,.9);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 520px;
  line-height: 1.55;
}

.hero__cta {
  margin-top: 36px;
}

/* Mapa del Maule */
.hero__map {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  height: 290px;
  z-index: 2;
  opacity: 0;
  animation: mapFade 1.2s ease-out .6s forwards;
  pointer-events: none;
}
.hero__map img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 0 18px rgba(104,157,15,0.55)) drop-shadow(0 0 6px rgba(255,255,255,0.2)); }

@keyframes mapFade {
  from { opacity: 0; transform: translateY(-50%) translateX(20px); }
  to   { opacity: .95; transform: translateY(-50%); }
}


/* ============================================================
   5. BOTONES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--t-fast);
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-fast); }

.btn--primary {
  background: var(--c-accent);
  color: var(--c-white);
}

.btn--primary:hover {
  background: var(--c-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(111,191,58,.45);
}

.btn--primary:hover svg { transform: translateX(4px); }
.btn--primary:active { transform: translateY(0); }


/* ============================================================
   6. SECCIÓN: CATEGORÍAS
   ============================================================ */
.section { padding: 70px 0; }

.section__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--c-text);
  letter-spacing: -.5px;
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-accent);
  font-weight: 600;
  font-size: .95rem;
  transition: gap var(--t-fast);
}
.section__link svg { width: 16px; height: 16px; }
.section__link:hover { gap: 10px; color: var(--c-accent-dark); }

/* Grid de cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.card {
  background: transparent;
  border: 0;
  padding: 0;
  text-align: center;
  transition: transform var(--t-med);
  display: block;
}
.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #eee;
  box-shadow: 0 6px 18px rgba(11, 30, 59, 0.10);
  transition: box-shadow var(--t-med);
}
.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.card__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--c-text);
  letter-spacing: -.2px;
}

.card:hover { transform: translateY(-6px); }
.card:hover .card__image {
  box-shadow: 0 14px 28px rgba(11, 30, 59, 0.18);
}
.card:hover .card__image img { transform: scale(1.06); }


/* ============================================================
   7. FEATURES
   ============================================================ */
.features {
  margin-top: 56px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 8px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--c-text);
  font-weight: 600;
  font-size: 1.05rem;
  font-family: var(--ff-display);
  letter-spacing: -.2px;
  padding: 10px 24px 10px 0;
  border-right: 1px solid var(--c-border);
}
.feature:first-child { padding-left: 0; justify-content: center;}
.feature:last-child  { border-right: 0; padding-right: 0; padding-left: 24px; justify-content: center; }
.feature:not(:first-child):not(:last-child) { padding-left: 24px; justify-content: center; }

.feature__icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 2.5px solid var(--c-accent);
  border-radius: 50%;
  color: var(--c-accent);
  flex-shrink: 0;
  transition: background 120ms ease, color 120ms ease;
}
.feature__icon svg { width: 32px; height: 32px; }

.feature:hover .feature__icon {
  background: var(--c-accent);
  color: var(--c-white);
}


/* ============================================================
   8. FOOTER
   ============================================================ */
.footer {
  position: relative;
  background:
    radial-gradient(1200px 400px at 85% -10%, rgba(111,191,58,0.10), transparent 60%),
    linear-gradient(180deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
  color: rgba(255,255,255,.72);
  padding: 80px 0 28px;
  margin-top: 60px;
  overflow: hidden;
  isolation: isolate;
}

/* Glow decorativo animado */
.footer__glow {
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(111,191,58,0.22), transparent 65%);
  filter: blur(20px);
  z-index: -1;
  animation: footerGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes footerGlow {
  from { transform: translate(0, 0) scale(1);   opacity: .55; }
  to   { transform: translate(80px, 40px) scale(1.15); opacity: .9; }
}

/* Borde superior con acento verde sutil */
.footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(111,191,58,0.45) 30%,
    rgba(111,191,58,0.45) 70%,
    transparent 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__col { min-width: 0; }

/* Brand */
.footer__logo {
  display: inline-block;
  margin-bottom: 18px;
  transition: transform 200ms ease;
}
.footer__logo img {
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .92;
}
.footer__logo:hover { transform: translateY(-2px); }

.footer__about {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.62);
  max-width: 340px;
  margin-bottom: 22px;
}

/* Social */
.footer__social {
  display: flex;
  gap: 10px;
}
.social {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.social svg { width: 18px; height: 18px; }
.social:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-white);
  transform: translateY(-3px);
}

/* Headings y links */
.footer__heading {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 18px;
  letter-spacing: .3px;
  position: relative;
  padding-bottom: 10px;
}
.footer__heading::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 26px; height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: .92rem;
  color: rgba(255,255,255,0.65);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 150ms ease, transform 150ms ease;
  position: relative;
}
.footer__links a::before {
  content: '→';
  opacity: 0;
  margin-left: -14px;
  transition: opacity 150ms ease, margin-left 150ms ease;
  color: var(--c-accent);
}
.footer__links a:hover {
  color: var(--c-white);
}
.footer__links a:hover::before {
  opacity: 1;
  margin-left: 0;
}

/* Newsletter */
.footer__newsletter-text {
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.62);
  margin-bottom: 14px;
  max-width: 320px;
}
.newsletter {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 22px;
  transition: border-color 180ms ease, background 180ms ease;
}
.newsletter:focus-within {
  border-color: var(--c-accent);
  background: rgba(255,255,255,0.08);
}
.newsletter__input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  color: var(--c-white);
  font-family: inherit;
  font-size: .92rem;
  outline: none;
  min-width: 0;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter__button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--c-accent);
  border-radius: 7px;
  color: var(--c-white);
  transition: background 150ms ease, transform 150ms ease;
}
.newsletter__button svg { width: 18px; height: 18px; }
.newsletter__button:hover { background: var(--c-accent-dark); transform: translateX(2px); }

/* Contacto */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,0.65);
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__contact svg {
  width: 18px; height: 18px;
  color: var(--c-accent);
  flex-shrink: 0;
}

/* Bottom */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
}
.footer__legal {
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
}
.footer__legal strong {
  color: var(--c-white);
  font-weight: 600;
  letter-spacing: .3px;
}
.footer__legal-links {
  display: flex;
  gap: 22px;
}
.footer__legal-links a {
  font-size: .85rem;
  color: rgba(255,255,255,0.55);
  transition: color 150ms ease;
}
.footer__legal-links a:hover { color: var(--c-accent); }

/* Responsive footer */
@media (max-width: 1080px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__col--brand,
  .footer__col--newsletter { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .footer { padding-top: 60px; }
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   9. ANIMACIÓN FADE-IN (reveal on scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease-out, transform .7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger en cards */
.cards-grid .card.reveal:nth-child(1) { transition-delay: 0ms; }
.cards-grid .card.reveal:nth-child(2) { transition-delay: 80ms; }
.cards-grid .card.reveal:nth-child(3) { transition-delay: 160ms; }
.cards-grid .card.reveal:nth-child(4) { transition-delay: 240ms; }
.cards-grid .card.reveal:nth-child(5) { transition-delay: 320ms; }


/* ============================================================
   10. RESPONSIVE
   ============================================================ */

/* Pantallas grandes -> 5 columnas (default) */

/* Laptops chicas: 1024px */
@media (max-width: 1080px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__map  { width: 200px; height: 252px; right: 4%; opacity: 1; }
  .navbar__inner { gap: 20px; }
}

/* Tablet: 880px */
@media (max-width: 880px) {
  .navbar__inner {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    gap: 14px;
  }
  .nav { display: none; }
  .hamburger { display: flex; }
  .search {
    grid-column: 1 / -1;
    order: 3;
    max-width: 100%;
    justify-self: stretch;
  }
  .hamburger { order: 2; justify-self: end; }
  .logo { order: 1; }

  .hero__map {
    width: 160px;
    height: 200px;
    top: 50%;
    bottom: auto;
    right: 20px;
    transform: translateY(-50%);
    opacity: 1;
  }
  @keyframes mapFade {
    from { opacity: 0; transform: translateY(-50%) translateX(16px); }
    to   { opacity: 1;  transform: translateY(-50%); }
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    padding: 0;
  }
  .feature,
  .feature:first-child,
  .feature:not(:first-child):not(:last-child),
  .feature:last-child {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--c-border);
    padding: 18px 20px;
  }
  .feature:nth-child(odd):nth-child(n)  { border-right: 1px solid var(--c-border); }
  .feature:nth-last-child(-n+2):nth-child(n) { border-bottom: 0; }

  .section { padding: 50px 0; }
}

/* Mobile: 620px */
@media (max-width: 620px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hide-mobile { display: none; }

  .hero__map { display: none; }
  .hero { min-height: 520px; }
  .hero__image {
    inset: auto;
    top: 0;
    bottom: 0;
    left: -15%;
    width: 116%;
    height: 100%;
    background:
      url('../../img/bg/bg.png')
      62% center / cover no-repeat;
  }
  .hero__content { padding: 50px var(--gutter) 80px; }
  .hero__title { font-size: 2rem; }
  .hero__description { font-size: .95rem; }

  .logo__img { height: 42px; }

  .search__input { padding: 12px 16px; font-size: .9rem; }
  .search__button { width: 50px; }

  .section__header { margin-bottom: 24px; }
  .features {
    grid-template-columns: 1fr;
    padding: 0;
    max-width: 100%;
    margin-inline: 0;
    width: 100%;
  }
  .feature,
  .feature:first-child,
  .feature:not(:first-child):not(:last-child),
  .feature:last-child {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--c-border);
    padding: 16px 20px;
    width: 100%;
  }
  .feature:last-child { border-bottom: 0; }
  .feature:nth-child(odd) { border-right: 0; }
}

/* Mobile chico: 380px */
@media (max-width: 380px) {
  .cards-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   11. SECCIONES ADICIONALES (compartidos)
   ============================================================ */

.eyebrow {
  display: inline-block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 14px;
}
.eyebrow--accent { color: var(--c-accent-dark); }
.eyebrow--light  { color: var(--c-accent-light); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-head--dark { color: var(--c-white); }

.section-lead {
  margin-top: 14px;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}
.section-lead--light { color: rgba(255,255,255,0.78); }

.section__title--light { color: var(--c-white); }


/* ============================================================
   11.1 PASOS — ¿Cómo funciona?
   ============================================================ */
.steps-section { background: var(--c-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 28px 26px;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}

.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.step__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--c-accent);
  letter-spacing: -1px;
  line-height: 1;
}
.step__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  color: var(--c-primary);
}
.step__icon svg { width: 22px; height: 22px; }
.step__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--c-text);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.step__text {
  font-size: .95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}


/* ============================================================
   11.15 SLIDES DE PUBLICIDAD
   ============================================================ */
.ads-section {
  padding: 52px 0 60px;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.ads-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.ads-section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.ads-section__label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

/* Slider */
.ads-slider { display: flex; align-items: center; gap: 16px; }
.ads-slider__viewport { overflow: hidden; flex: 1; min-width: 0; }
.ads-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 460ms cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.ads-slider__slide { flex-shrink: 0; }

/* Banner base */
.ad-banner {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 244px;
  border-radius: 18px;
  overflow: hidden;
  color: #fff;
  transition: transform var(--t-med), box-shadow var(--t-med);
}

.ad-banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}


/* Body */
.ad-banner__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 34px 20px 34px 28px;
  position: relative;
  z-index: 2;
}

/* Tag */
.ad-banner__tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .9px;
  text-transform: uppercase;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.2);
  align-self: flex-start;
  white-space: nowrap;
}
.ad-banner__tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.75);
  flex-shrink: 0;
}

/* Title */
.ad-banner__title {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.18;
  margin: 0;
  letter-spacing: -.28px;
  color: #fff;
}

/* Subtext with separator dots */
.ad-banner__text {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  line-height: 1.4;
}
.ad-banner__dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.42);
  flex-shrink: 0;
}

/* CTA */
.ad-banner__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .77rem;
  font-weight: 700;
  letter-spacing: .25px;
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,.18);
  border: 1.5px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  padding: 8px 18px;
  transition: background var(--t-fast), gap var(--t-fast);
  margin-top: 2px;
  white-space: nowrap;
}
.ad-banner__cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform var(--t-fast);
}
.ad-banner:hover .ad-banner__cta     { background: rgba(255,255,255,.28); gap: 10px; }
.ad-banner:hover .ad-banner__cta svg { transform: translateX(3px); }

/* Visual area */
.ad-banner__visual {
  width: 42%;
  min-width: 42%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  flex-shrink: 0;
}
.ad-banner__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.14);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.ad-banner__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 62% 50%, rgba(255,255,255,.11) 0%, transparent 65%);
  z-index: 0;
  transition: opacity var(--t-med);
}
.ad-banner:hover .ad-banner__visual::after { opacity: 1.6; }
.ad-banner__visual > * { position: relative; z-index: 1; }

/* Visual: date number */
.ad-banner__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  line-height: 1;
  transition: transform var(--t-med);
}
.ad-banner:hover .ad-banner__date { transform: scale(1.07); }
.ad-banner__date-day {
  font-family: var(--ff-display);
  font-size: 5.5rem;
  font-weight: 800;
  letter-spacing: -6px;
  color: rgba(255,255,255,.88);
  line-height: .88;
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}
.ad-banner__date-month {
  font-family: var(--ff-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}

/* Visual: bar chart */
.ad-banner__chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
  transition: transform var(--t-med);
}
.ad-banner:hover .ad-banner__chart { transform: translateY(-5px); }
.ad-banner__bar-col {
  width: 14px;
  border-radius: 5px 5px 0 0;
  background: rgba(255,255,255,.28);
  border: 1px solid rgba(255,255,255,.38);
  transition: background var(--t-med);
}
.ad-banner__bar-col:last-child {
  background: rgba(255,255,255,.78);
  border-color: rgba(255,255,255,.92);
  box-shadow: 0 -6px 14px rgba(255,255,255,.28);
}
.ad-banner:hover .ad-banner__bar-col            { background: rgba(255,255,255,.4); }
.ad-banner:hover .ad-banner__bar-col:last-child { background: rgba(255,255,255,.95); }

/* Visual: SVG illustration */
.ad-banner__illus {
  width: 108px;
  height: 108px;
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.45));
  transition: transform var(--t-med);
}
.ad-banner:hover .ad-banner__illus { transform: scale(1.08) rotate(2deg); }

/* Visual: mountain peaks */
.ad-banner__peaks { transition: transform var(--t-med); }
.ad-banner:hover .ad-banner__peaks { transform: translateY(-5px) scale(1.04); }

/* Color variants + unique pattern overlay */
.ad-banner--green {
  background: linear-gradient(118deg, #1d5800 0%, #337c00 42%, #4e9d00 78%, #5caf04 100%);
}
.ad-banner--green::before {
  background-image: repeating-linear-gradient(-55deg, transparent, transparent 18px,
    rgba(255,255,255,.024) 18px, rgba(255,255,255,.024) 19px);
}
.ad-banner--green .ad-banner__bar { background: rgba(255,255,255,.52); }

.ad-banner--navy {
  background: linear-gradient(118deg, #020810 0%, #07122a 42%, #0B1E3B 78%, #132e55 100%);
}
.ad-banner--navy::before {
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.ad-banner--navy .ad-banner__bar { background: var(--c-accent); }

.ad-banner--plum {
  background: linear-gradient(118deg, #100620 0%, #1e0e40 42%, #2d1860 78%, #3c2280 100%);
}
.ad-banner--plum::before {
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 26px 26px;
}
.ad-banner--plum .ad-banner__bar { background: rgba(180,140,255,.65); }

.ad-banner--forest {
  background: linear-gradient(118deg, #051508 0%, #0b2e12 42%, #104418 78%, #14562a 100%);
}
.ad-banner--forest::before {
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px,
    rgba(255,255,255,.022) 14px, rgba(255,255,255,.022) 15px);
}
.ad-banner--forest .ad-banner__bar { background: rgba(80,220,120,.6); }

.ad-banner--amber {
  background: linear-gradient(118deg, #2e0900 0%, #5c1e00 42%, #862e00 78%, #a83c00 100%);
}
.ad-banner--amber::before {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 10px,
      rgba(255,255,255,.028) 10px, rgba(255,255,255,.028) 11px),
    repeating-linear-gradient(-45deg, transparent, transparent 10px,
      rgba(255,255,255,.028) 10px, rgba(255,255,255,.028) 11px);
}
.ad-banner--amber .ad-banner__bar { background: rgba(255,160,50,.65); }

.ad-banner--emerald {
  background: linear-gradient(118deg, #021208 0%, #062918 42%, #093e1e 78%, #0c5228 100%);
}
.ad-banner--emerald::before {
  background-image: radial-gradient(ellipse, rgba(255,255,255,.065) 1px, transparent 1px);
  background-size: 18px 18px;
}
.ad-banner--emerald .ad-banner__bar { background: rgba(60,210,100,.6); }

/* Arrows */
.ads-slider__arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-primary);
  transition: background var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.ads-slider__arrow:hover {
  background: var(--c-accent);
  color: #fff;
  border-color: var(--c-accent);
  box-shadow: var(--sh-green);
  transform: scale(1.08);
}
.ads-slider__arrow:disabled { opacity: .25; cursor: not-allowed; pointer-events: none; }
.ads-slider__arrow svg { width: 20px; height: 20px; }

/* Dots */
.ads-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.ads-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--c-border);
  cursor: pointer;
  padding: 0;
  transition: background var(--t-fast), width var(--t-fast);
}
.ads-slider__dot.is-active {
  background: var(--c-accent);
  width: 28px;
  border-radius: var(--r-pill);
}


/* ============================================================
   11.2 MARKETPLACE — Productos destacados
   ============================================================ */
.marketplace { background: var(--c-bg); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product {
  background: var(--c-white);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.product__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-med);
}
.product:hover .product__image img { transform: scale(1.06); }

.product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(11,30,59,0.92);
  color: var(--c-white);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.product__badge--accent { background: var(--c-accent); }

.product__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product__location {
  font-size: .78rem;
  color: var(--c-text-muted);
  font-weight: 500;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.product__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.35;
  letter-spacing: -.2px;
}
.product__seller {
  font-size: .85rem;
  color: var(--c-text-muted);
}
.product__footer {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-primary);
}
.product__add {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 10px;
  transition: background var(--t-fast), transform var(--t-fast);
}
.product__add svg { width: 18px; height: 18px; }
.product__add:hover { background: var(--c-accent); transform: translateY(-2px); }


/* ============================================================
   11.3 SPLIT (Vende / Logística)
   ============================================================ */
.sell-section { background: var(--c-white); }
.logistics-section { background: var(--c-bg); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split--reverse .split__content { order: 1; }

.split__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sh-lg);
}
.split__media img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.split__badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: var(--c-white);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--sh-md);
}
.split__badge-num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--c-accent);
  line-height: 1;
}
.split__badge-text {
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
}

.split__lead {
  margin-top: 14px;
  margin-bottom: 28px;
  color: var(--c-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.benefit__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(111,191,58,0.14);
  color: var(--c-accent-dark);
  border-radius: 50%;
}
.benefit__icon svg { width: 16px; height: 16px; }
.benefit strong {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--c-text);
  margin-bottom: 2px;
}
.benefit p {
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}


/* Logistics specifics */
.logistics-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 24px;
  margin: 28px 0 32px;
}
.lstat {
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
}
.lstat__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 1.85rem;
  color: var(--c-primary);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.lstat__label {
  display: block;
  font-size: .88rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

.dual-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.floating-card {
  position: absolute;
  top: 28px;
  right: 24px;
  background: var(--c-white);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-md);
  max-width: 240px;
  animation: floatY 4s ease-in-out infinite;
}
.floating-card__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(111,191,58,0.16);
  color: var(--c-accent-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.floating-card__icon svg { width: 20px; height: 20px; }
.floating-card__title {
  display: block;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-text);
  line-height: 1.2;
}
.floating-card__sub {
  display: block;
  font-size: .78rem;
  color: var(--c-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}


/* ============================================================
   11.4 PAGOS
   ============================================================ */
.payments-section { background: var(--c-white); }

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pay-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 30px 26px;
  text-align: left;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.pay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.pay-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--c-white);
  color: var(--c-primary);
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: var(--sh-sm);
}
.pay-card__icon svg { width: 26px; height: 26px; }
.pay-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.pay-card__text {
  font-size: .92rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}


/* ============================================================
   11.5 IA — MauleConecta Intelligence (sección oscura)
   ============================================================ */
.ai-section {
  position: relative;
  background: var(--c-primary);
  overflow: hidden;
  padding: 90px 0;
}
.ai-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(111,191,58,0.22), transparent 45%),
    radial-gradient(circle at 82% 78%, rgba(20,45,82,0.9), transparent 55%);
  pointer-events: none;
}
.ai-container { position: relative; z-index: 1; }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-card);
  padding: 28px 24px;
  color: var(--c-white);
  transition: transform var(--t-med), background var(--t-med), border-color var(--t-med);
  backdrop-filter: blur(6px);
}
.ai-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(111,191,58,0.45);
}
.ai-card__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--c-accent);
  border-radius: 12px;
  color: var(--c-accent-light);
  margin-bottom: 18px;
}
.ai-card__icon svg { width: 26px; height: 26px; }
.ai-card__title {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.ai-card__text {
  font-size: .92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}


/* ============================================================
   11.6 PLANES
   ============================================================ */
.plans-section { background: var(--c-bg); }

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.plan--featured {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}
.plan--featured:hover { transform: translateY(-12px); }

.plan__highlight {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: var(--c-white);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: var(--sh-green);
}

.plan__tag {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 18px;
}
.plan--featured .plan__tag { color: var(--c-accent-light); }

.plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.plan__amount {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -1px;
}
.plan--featured .plan__amount { color: var(--c-white); }
.plan__cycle {
  font-size: .9rem;
  color: var(--c-text-muted);
}
.plan--featured .plan__cycle { color: rgba(255,255,255,0.65); }

.plan__pitch {
  font-size: .94rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.plan--featured .plan__pitch { color: rgba(255,255,255,0.75); }

.plan__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: .94rem;
  color: var(--c-text);
  line-height: 1.5;
}
.plan--featured .plan__features li { color: rgba(255,255,255,0.85); }
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(111,191,58,0.18);
  background-image: linear-gradient(transparent, transparent);
}
.plan__features li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--c-accent-dark);
  border-bottom: 2px solid var(--c-accent-dark);
  transform: rotate(-45deg);
}
.plan--featured .plan__features li::before { background: rgba(111,191,58,0.25); }

.plan__cta {
  margin-top: auto;
  justify-content: center;
  width: 100%;
}


/* ============================================================
   11.7 HISTORIAS
   ============================================================ */
.stories-section { background: var(--c-white); }

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.story {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 32px 28px;
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.story:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: transparent;
}
.story__quote-mark {
  position: absolute;
  top: 12px;
  right: 22px;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 4.5rem;
  color: var(--c-accent);
  opacity: .25;
  line-height: 1;
}
.story__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: 24px;
  position: relative;
}
.story__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--c-border);
}
.story__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.story__name {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: .98rem;
  color: var(--c-text);
}
.story__biz {
  display: block;
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}


/* ============================================================
   11.8 STATS BANNER
   ============================================================ */
.stats-section { background: var(--c-bg); padding-top: 40px; padding-bottom: 40px; }

.stats-banner {
  background: linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  border-radius: 24px;
  padding: 56px 56px;
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(111,191,58,0.18), transparent 60%);
  pointer-events: none;
}
.stats-banner__head {
  text-align: center;
  margin-bottom: 42px;
  position: relative;
}
.stats-banner__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.bigstat {
  text-align: center;
  padding: 8px;
}
.bigstat__num {
  display: block;
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: var(--c-accent-light);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
}
.bigstat__label {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.4;
}


/* ============================================================
   11.9 CTA FINAL
   ============================================================ */
.final-cta-section { background: var(--c-bg); padding-top: 30px; padding-bottom: 90px; }

.final-cta {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  box-shadow: var(--sh-sm);
  max-width: 880px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--c-text);
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.final-cta__text {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 32px;
}
.final-cta__buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.final-cta__note {
  font-size: .85rem;
  color: var(--c-text-muted);
}


/* ============================================================
   11.10 BOTONES NUEVOS
   ============================================================ */
.btn--ghost {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn--ghost:hover {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn--ghost-dark {
  border-color: var(--c-border);
  color: var(--c-text);
}
.btn--ghost-dark:hover {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}
.btn--text {
  padding: 0;
  color: var(--c-accent-dark);
  font-weight: 600;
  background: none;
}
.btn--text:hover { color: var(--c-primary); }


/* ============================================================
   11.11 RESPONSIVE — Nuevas secciones
   ============================================================ */
@media (max-width: 1080px) {
  .steps-grid     { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: repeat(3, 1fr); }
  .pay-grid       { grid-template-columns: repeat(2, 1fr); }
  .ai-grid        { grid-template-columns: repeat(2, 1fr); }
  .stats-banner__grid { grid-template-columns: repeat(4, 1fr); }
  .stats-banner   { padding: 44px 36px; }
  .split          { gap: 44px; }
}

@media (max-width: 880px) {
  .ads-section    { padding: 38px 0 46px; }
  .ads-slider__arrow { width: 40px; height: 40px; }
  .ad-banner      { min-height: 210px; }
  .ad-banner__body { padding: 26px 18px 26px 24px; gap: 8px; }
  .ad-banner__title { font-size: 1.12rem; }
  .ad-banner__visual { width: 38%; min-width: 38%; }
  .ad-banner__date-day { font-size: 4.5rem; }
  .ad-banner__illus { width: 88px; height: 88px; }
  .split          { grid-template-columns: 1fr; gap: 36px; }
  .split--reverse .split__media { order: 1; }
  .split--reverse .split__content { order: 2; }

  .plans-grid     { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-4px); }

  .stories-grid   { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .stats-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  .ai-section     { padding: 60px 0; }
  .stats-banner   { padding: 40px 28px; border-radius: 18px; }
  .final-cta      { padding: 48px 24px; }

  .floating-card  { top: 18px; right: 14px; max-width: 200px; padding: 10px 14px; }
}

@media (max-width: 680px) {
  .ads-slider__slide { min-width: 100%; }
  .ad-banner__visual { width: 40%; min-width: 40%; }
}

@media (max-width: 620px) {
  .ads-slider__arrow  { display: none; }
  .ad-banner          { min-height: 196px; }
  .ad-banner__body    { padding: 24px 14px 24px 20px; }
  .ad-banner__title   { font-size: 1.1rem; }
  .ad-banner__tag     { font-size: .6rem; }
  .ad-banner__cta     { font-size: .74rem; padding: 7px 14px; }
  .ad-banner__date-day { font-size: 4rem; }
  .ad-banner__illus   { width: 80px; height: 80px; }
  .steps-grid     { grid-template-columns: 1fr; gap: 14px; }
  .products-grid  { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .pay-grid       { grid-template-columns: 1fr; }
  .ai-grid        { grid-template-columns: 1fr; }
  .logistics-stats { grid-template-columns: 1fr; }

  .step           { padding: 22px 20px; }
  .product__body  { padding: 14px 14px 18px; }
  .product__title { font-size: .92rem; }
  .product__price { font-size: 1.05rem; }

  .split__media img { max-height: 360px; }
  .split__badge   { padding: 12px 14px; gap: 10px; bottom: 14px; left: 14px; }
  .split__badge-num { font-size: 1.5rem; }
  .split__badge-text { font-size: .78rem; }

  .pay-card       { padding: 24px 20px; }
  .ai-card        { padding: 22px 20px; }
  .plan           { padding: 28px 22px; }

  .stats-banner__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .bigstat__num   { font-size: 2rem; }

  .final-cta      { padding: 38px 18px; }
  .final-cta__buttons { flex-direction: column; }
  .final-cta__buttons .btn { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .ad-banner__visual { display: none; }
  .ad-banner__body   { padding: 22px 20px; }
  .products-grid  { grid-template-columns: 1fr; }
}
