/* ═══════════════════════════════════════════════════════════
   GAVERAS ARTESANALES — Redesign
   Syne + DM Sans · Dark/Light sections · Asymmetric grids
═══════════════════════════════════════════════════════════ */

/* ── 1. DESIGN TOKENS ── */
:root {
  /* Dark palette */
  --dark:    #080402;
  --dark-2:  #110703;
  --dark-3:  #1c0d04;
  --dark-4:  #2a1407;

  /* Light palette */
  --light:   #f7f3ec;
  --light-2: #ede7d9;

  /* Text */
  --text-on-dark:  #ede7dd;
  --text-on-light: #160802;
  --muted-dark:    #8c6e56;
  --muted-light:   #6b4e34;

  /* Accent */
  --brown:   #7a4820;
  --gold:    #b07220;
  --gold-hi: #d4921a;
  --gold-lo: #6b4510;

  /* Verde caña — acento colombiano */
  --green:   #3d6b34;
  --green-l: #5a9950;
  --green-d: #2a4a24;

  /* Fonts */
  --f-display: 'Plus Jakarta Sans', sans-serif;
  --f-body:    'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --nav-h:     70px;
  --pad:       clamp(90px, 11vw, 148px);
  --pad-sm:    clamp(48px, 6vw, 80px);
  --wrap:      1280px;
  --gap:       clamp(24px, 3vw, 48px);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  /* Diagonal slice height */
  --slice:     72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  background: var(--dark);
  color: var(--text-on-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ── 3. GLOBAL HELPERS ── */

/* Badge */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 18px;
}
.section-badge::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-hi);
  flex-shrink: 0;
}
.section-badge.on-light { color: var(--brown); }
.section-badge.on-light::before { background: var(--brown); }

/* Titles */
.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--text-on-dark);
  margin-bottom: 20px;
}
.section-title em {
  font-style: normal;
  color: var(--gold-hi);
}
.section-title.on-light { color: var(--text-on-light); }
.section-title.on-light em { color: var(--brown); }

.section-sub {
  font-size: .98rem;
  font-weight: 300;
  color: var(--muted-dark);
  line-height: 1.75;
  max-width: 500px;
}
.section-sub.on-light { color: var(--muted-light); }

/* Parallax elements */
[data-parallax] {
  will-change: transform;
}

/* Reveal */
.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.js-reveal[data-dir="left"]  { transform: translateX(-44px); }
.js-reveal[data-dir="right"] { transform: translateX(44px); }
.js-reveal[data-dir="up"]    { transform: translateY(44px); }
.js-reveal.visible { opacity: 1; transform: translate(0); }

/* ── 4. DIAGONAL SECTION TRANSITIONS ── */
/* Each section that opens on a DIFFERENT background gets a diagonal top edge */

/* Dark section following a light one → clip cuts from bottom-left to top-right */
.about,
.beneficios,
.calidad,
.testimonios {
  position: relative;
  z-index: 3;
  clip-path: polygon(0 0, 100% var(--slice), 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--slice));
  padding-top: calc(var(--pad) + var(--slice));
}

/* Light section following a dark one → clip cuts from top-left to bottom-right */
.showcase,
.proceso,
.personas,
.faq,
.contacto {
  position: relative;
  z-index: 2;
  clip-path: polygon(0 var(--slice), 100% 0, 100% 100%, 0 100%);
  margin-top: calc(-1 * var(--slice));
  padding-top: calc(var(--pad) + var(--slice));
}

/* Light sections: swap palette */
.showcase,
.proceso,
.personas,
.faq,
.contacto {
  background: var(--light);
  color: var(--text-on-light);
}

/* Dark sections — background radial drifts on scroll via --bg-drift CSS var */
.hero, .about, .beneficios, .configurador, .calidad, .testimonios {
  background: var(--dark);
  --bg-drift: 0px;
}
.about::before,
.configurador::before,
.calidad::before,
.testimonios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at calc(70% + var(--bg-drift, 0px)) calc(50% - var(--bg-drift, 0px)),
    rgba(90,42,10,.12) 0%,
    transparent 65%
  );
  pointer-events: none;
  z-index: 0;
  transition: background .05s linear;
}
/* Ensure content sits above the parallax bg */
.about > *,
.configurador > *,
.calidad > *,
.testimonios > * { position: relative; z-index: 1; }

/* Z-index stacking order (each section above previous) */
.hero          { z-index: 1;  position: relative; }
.showcase      { z-index: 2;  }
.about         { z-index: 3;  }
.proceso       { z-index: 4;  }
.beneficios    { z-index: 5;  }
.configurador  { z-index: 6;  background: var(--dark-2); position: relative; }
.personas      { z-index: 7;  }
.manifesto     { z-index: 8;  }
.calidad       { z-index: 9;  }
.faq           { z-index: 10; }
.testimonios   { z-index: 11; }
.contacto      { z-index: 12; }
.footer        { z-index: 13; position: relative; }

/* ── 5. NAVIGATION ── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 60px);
  transition: background .4s, backdrop-filter .4s;
}
.nav.scrolled {
  background: rgba(8, 4, 2, .94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(176, 114, 32, .12);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text-on-dark);
}
.nav__logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  padding: 5px;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(122,72,32,.92), rgba(42,20,7,.92));
  border: 1px solid rgba(212,146,26,.42);
  box-shadow: 0 8px 18px rgba(0,0,0,.28);
  rotate: -5deg;
  flex-shrink: 0;
}
.nav__logo-mark span {
  border-radius: 1px;
  background: linear-gradient(145deg, rgba(237,231,221,.95), rgba(212,146,26,.82));
  box-shadow: inset 0 1px 2px rgba(255,255,255,.2), inset 0 -1px 2px rgba(0,0,0,.2);
}
.nav__logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name { display: block; }
.nav__logo-sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
}
.nav__links a {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted-dark);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-hi);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--text-on-dark); }
.nav__links a:hover::after { width: 100%; }

.nav__cta-link {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .82rem !important;
  transition: background .2s, transform .2s !important;
}
.nav__cta-link:hover {
  background: var(--gold-hi) !important;
  transform: translateY(-1px);
}
.nav__cta-link::after { display: none !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-on-dark);
  transition: .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8,4,2,.97);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.nav__mobile-menu.open { opacity: 1; pointer-events: all; }
.nav__mobile-menu ul { text-align: center; }
.nav__mobile-menu li { margin: 18px 0; }
.nav__mobile-menu a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 700;
  color: var(--text-on-dark);
  transition: color .2s;
}
.nav__mobile-menu a:hover { color: var(--gold-hi); }

/* ── 6. HERO — 2-column asymmetric ── */
.hero {
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  /* Panela cinematográfica sobre madera: background con parallax JS */
  background-image: url('assets/imgi_10_side-view-brown-sugar-sugar-powder.webp');
  background-size: cover;
  background-position: center 50%;
}

.hero__parallax-bg {
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(90,42,10,.15) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 20% 60%, rgba(42,18,4,.2) 0%, transparent 55%),
    linear-gradient(150deg,
      rgba(16,6,2,.58) 0%,
      rgba(26,10,3,.52) 40%,
      rgba(13,4,1,.62) 100%
    );
  will-change: transform;
  transform: translateY(0);
}
.hero__grain { display: none; }
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 85% at 50% 50%, transparent 45%, rgba(0,0,0,.32) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) clamp(24px, 5vw, 64px) 80px;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  min-height: 100svh;
}

/* Left column */
.hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  display: block;
  width: 36px; height: 1.5px;
  background: linear-gradient(90deg, var(--gold-hi), rgba(212,146,26,.2));
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6.5vw, 5.8rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0;
  color: var(--text-on-dark);
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-hi);
  display: block;
}

.hero__subtitle {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-dark);
  max-width: 440px;
  margin-bottom: 44px;
}

/* Stats inline */
.hero__stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: 44px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  width: 100%;
}
.hero__stat {}
.hero__stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold-hi);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.hero__stat-label {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold-hi);
  color: var(--dark);
  font-family: var(--f-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 15px 32px;
  border-radius: 3px;
  transition: background .25s, transform .2s;
}
.hero__cta-btn:hover { background: #e8a620; transform: translateY(-2px); }
.hero__cta-arrow { font-style: normal; transition: transform .25s; }
.hero__cta-btn:hover .hero__cta-arrow { transform: translateX(5px); }

/* Right column — product */
.hero__center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: transform .12s linear, opacity .12s linear;
}

.hero__dof-ring {
  position: absolute;
  right: -10%;
  border-radius: 50%;
  border: 1px solid rgba(176,114,32,.1);
  animation: ringBreath 5s ease-in-out infinite;
  pointer-events: none;
}
.hero__dof-ring--outer { width: 520px; height: 520px; animation-delay: .4s; }
.hero__dof-ring--inner { width: 360px; height: 360px; border-color: rgba(176,114,32,.18); }
@keyframes ringBreath {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.03); opacity: 1; }
}

.hero__product-glow {
  position: absolute;
  width: 420px; height: 420px;
  right: -8%;
  top: 50%; transform: translateY(-50%);
  background: radial-gradient(ellipse at center, rgba(176,114,32,.18) 0%, transparent 65%);
  filter: blur(28px);
  pointer-events: none;
}
.hero__product-shadow {
  position: absolute;
  bottom: -8%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 40px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.hero__product-figure {
  position: relative;
  z-index: 2;
}
.hero__product-img {
  width: clamp(330px, 43vw, 600px);
  height: auto;
  filter: drop-shadow(0 28px 56px rgba(0,0,0,.7)) drop-shadow(0 0 50px rgba(176,114,32,.14));
  animation: floatProduct 7s ease-in-out infinite;
  rotate: -6deg;
  transform-origin: 52% 56%;
  will-change: transform;
}
@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero__product-label {
  position: absolute;
  bottom: -48px;
  left: 50%; transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold-hi);
  background: rgba(8,4,2,.8);
  border: 1px solid rgba(176,114,32,.2);
  padding: 7px 18px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}
.hero__product-label-sep { opacity: .35; }

/* Remove unused hero elements */
.hero__right, .hero__card, .hero__particle { display: none; }

.hero__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 5vw, 64px);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-dark);
}
.hero__scroll-line {
  width: 44px; height: 1px;
  background: linear-gradient(to right, var(--gold-lo), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); transform-origin: left; }
  50% { transform: scaleX(.5); }
}

/* ── 7. SHOWCASE — Light, 3 feature blocks ── */
.showcase {
  padding-bottom: var(--pad);
  overflow: hidden;
}
.showcase__sticky {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.showcase__product-wrap {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase__product-glow { display: none; }
.showcase__product-img {
  width: min(58vw, 660px);
  max-width: none;
  margin-left: clamp(-120px, -9vw, -40px);
  rotate: -10deg;
  filter: drop-shadow(0 28px 48px rgba(0,0,0,.2));
}

.showcase__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.showcase__card {
  padding-left: 72px;
  position: relative;
  border-bottom: 1px solid var(--light-2);
  padding-bottom: 36px;
}
.showcase__card:last-child { border-bottom: none; padding-bottom: 0; }
.showcase__card-num {
  position: absolute;
  top: -4px; left: 0;
  font-family: var(--f-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: rgba(122,72,32,.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.showcase__card h2 {
  font-family: var(--f-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.showcase__card p {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-light);
}

/* ── 8. ABOUT — Dark, asymmetric 40/60 ── */
.about {
  padding-bottom: var(--pad);
  overflow: hidden;
}
.about__texture { display: none; }
.about__container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about__content { max-width: 760px; }
.about__content > p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-dark);
  margin-bottom: 16px;
}
.about__content strong { color: var(--text-on-dark); font-weight: 500; }
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.about__tags span {
  background: rgba(176,114,32,.08);
  border: 1px solid rgba(176,114,32,.16);
  color: var(--gold-hi);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: 4px 13px;
  border-radius: 100px;
}

/* ── 9. PROCESO — Half-bleed split: left content / right image to edge ── */
/* The section becomes a grid; padding-top moves to the container column    */
.proceso {
  padding-top: 0;      /* override shared rule — compensated inside container */
  padding-bottom: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 60% 40%;
}

/* Left column: content, padding compensates for diagonal clip */
.proceso__container {
  padding-top: calc(var(--pad) + var(--slice));
  padding-bottom: var(--pad);
  padding-left: max(24px, calc((100vw - 1280px) / 2 + clamp(24px, 5vw, 64px)));
  padding-right: clamp(24px, 4vw, 56px);
  max-width: none;
  margin: 0;
}
.proceso__header {
  max-width: 100%;
  margin-bottom: 48px;
}
.proceso__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--light-2);
  border: 1px solid var(--light-2);
  border-radius: 4px;
  overflow: hidden;
}
.proceso__step {
  background: var(--light);
  padding: 32px 28px;
  transition: background .3s;
}
.proceso__step:hover { background: var(--light-2); }
.proceso__step-num {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(122,72,32,.15);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.proceso__step-icon { font-size: 1.4rem; margin-bottom: 12px; }
.proceso__step h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 8px;
  letter-spacing: 0;
}
.proceso__step p {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-light);
}

/* Right column: image spans full section height, bleeds to viewport right edge */
.proceso__right-image {
  display: block;
  position: static;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 65% at 54% 50%, rgba(176,114,32,.14), transparent 68%);
  /* image fills the full column height incl. the diagonal area at the top */
}
.proceso__right-image img {
  width: 118%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: translateX(8%);
  rotate: 6deg;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.24));
}

/* ── 10. BENEFICIOS — Half-bleed: left content / right image to edge ── */
.beneficios {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 62% 38%;
}
.beneficios__container {
  padding-top: calc(var(--pad) + var(--slice));
  padding-bottom: var(--pad);
  padding-left: max(24px, calc((100vw - 1280px) / 2 + clamp(24px, 5vw, 64px)));
  padding-right: clamp(24px, 4vw, 56px);
  max-width: none;
  margin: 0;
}
.beneficios__header { max-width: 100%; margin-bottom: 48px; }
.beneficios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 4px;
  overflow: hidden;
}
.beneficio {
  background: var(--dark);
  padding: 36px 28px;
  border: none;
  border-radius: 0;
  transition: background .3s;
  position: relative;
}
.beneficio::before { display: none; }
.beneficio:hover { background: var(--dark-3); }
.beneficio__icon { font-size: 1.5rem; margin-bottom: 16px; }
.beneficio h3 {
  font-family: var(--f-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-on-dark);
  margin-bottom: 10px;
  letter-spacing: 0;
}
.beneficio p {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-dark);
}
.beneficio__tag {
  display: inline-block;
  margin-top: 14px;
  background: rgba(176,114,32,.12);
  color: var(--gold-hi);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 10px;
  border-radius: 100px;
}
/* Beneficios right image — in-flow grid column, bleeds to viewport edge */
.beneficios__right-img {
  display: block;
  position: static;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 65% at 50% 50%, rgba(176,114,32,.12), transparent 68%);
}
.beneficios__right-img img {
  width: 128%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  object-position: center;
  display: block;
  transform: translateX(8%);
  rotate: -9deg;
  filter: drop-shadow(0 30px 55px rgba(0,0,0,.45));
}

/* ── 11. CONFIGURADOR — Dark ── */
.configurador { padding-bottom: var(--pad); }
.configurador__bg { display: none; }
.configurador__container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.configurador__header { max-width: 520px; margin-bottom: 56px; }
.configurador__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

/* Controls */
.ctrl__group { margin-bottom: 32px; }
.ctrl__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 14px;
}
.ctrl__val {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-hi);
  letter-spacing: 0;
}
.ctrl__track-wrap { position: relative; }
.ctrl__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 100px;
  outline: none;
  cursor: pointer;
  margin-bottom: 12px;
}
.ctrl__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 3px;
  background: var(--gold-hi);
  box-shadow: 0 0 0 3px rgba(212,146,26,.2), 0 3px 10px rgba(0,0,0,.4);
  cursor: pointer;
  transition: box-shadow .2s, transform .2s;
}
.ctrl__range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(212,146,26,.28);
  transform: scale(1.1);
}
.ctrl__range::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 3px;
  background: var(--gold-hi);
  border: none;
}
.ctrl__dots {
  display: flex;
  justify-content: space-between;
  font-size: .68rem;
  color: rgba(255,255,255,.18);
  letter-spacing: .04em;
}
.ctrl__dots span.active { color: var(--gold-hi); font-weight: 600; }

.config__summary {
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  margin-bottom: 28px;
}
.config__summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.config__summary-item:last-child { border-bottom: none; }
.config__summary-label {
  font-size: .78rem;
  font-weight: 400;
  color: var(--muted-dark);
}
.config__summary-val {
  font-family: var(--f-display);
  font-size: .98rem;
  font-weight: 700;
  color: var(--text-on-dark);
  letter-spacing: 0;
}

.config__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-hi);
  color: var(--dark);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: 14px 30px;
  border-radius: 3px;
  transition: background .25s, transform .2s;
}
.config__cta:hover { background: #e8a620; transform: translateY(-2px); }

/* Gavera canvas */
.configurador__preview {}
.preview__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 16px;
}
.gavera-wrap { display: flex; justify-content: center; }
.gavera-frame {
  background:
    repeating-linear-gradient(88deg, transparent 0, transparent 18px, rgba(0,0,0,.035) 18px, rgba(0,0,0,.035) 20px),
    repeating-linear-gradient(178deg, transparent 0, transparent 7px, rgba(255,255,255,.018) 7px, rgba(255,255,255,.018) 8px),
    linear-gradient(150deg, #7a4825 0%, #5c3317 35%, #6b3d1c 65%, #4a2810 100%);
  border: 9px solid #2a1005;
  border-radius: 4px;
  padding: 10px;
  box-shadow: 12px 12px 30px rgba(0,0,0,.55), -2px -2px 8px rgba(255,255,255,.04);
  width: clamp(260px, 44vw, 420px);
  aspect-ratio: 1 / .88;
}
.gavera-inner {
  width: 100%; height: 100%;
  background: rgba(0,0,0,.12);
  border-radius: 2px;
  padding: 5px;
}
.gavera-grid {
  width: 100%; height: 100%;
  display: grid;
  gap: 5px;
}
.gavera-cell {
  background: linear-gradient(145deg, #6b3d15, #4a2810 55%, #5c3317);
  border-radius: 2px;
  box-shadow: inset 2px 2px 5px rgba(0,0,0,.45), inset -1px -1px 2px rgba(255,255,255,.05);
  animation: cellPop .18s var(--ease) both;
}
@keyframes cellPop {
  from { transform: scale(.65); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}
.preview__hint {
  font-size: .68rem;
  color: rgba(255,255,255,.18);
  text-align: center;
  margin-top: 12px;
  letter-spacing: .06em;
}

/* ── 12. PERSONAS — Light, 2×3 cards ── */
.personas { padding-bottom: var(--pad); }
.personas__header {
  max-width: var(--wrap);
  margin: 0 auto clamp(50px, 6vw, 80px);
  padding: 0 clamp(24px, 5vw, 64px);
}
.personas__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-2);
  border: 1px solid var(--light-2);
  border-radius: 4px;
  overflow: hidden;
}
.persona {
  background: var(--light);
  border: none;
  border-radius: 0;
  padding: 36px 28px;
  transition: background .3s;
}
.persona::after { display: none; }
.persona:hover { background: var(--light-2); transform: none; }
.persona__icon-wrap {
  width: 48px; height: 48px;
  background: rgba(122,72,32,.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.persona__icon { font-size: 1.4rem; }
.persona h3 {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-on-light);
  margin-bottom: 6px;
  letter-spacing: 0;
}
.persona__query {
  font-size: .78rem;
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 12px;
  font-style: italic;
  opacity: .8;
}
.persona > p:not(.persona__query) {
  font-size: .85rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-light);
  margin-bottom: 14px;
}
.persona__list { display: flex; flex-direction: column; gap: 6px; }
.persona__list li {
  font-size: .8rem;
  font-weight: 400;
  color: var(--muted-light);
  padding-left: 14px;
  position: relative;
}
.persona__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brown);
  font-size: .7rem;
}

/* ── 13. CALIDAD — Dark, side-by-side ── */
.calidad { padding-bottom: var(--pad); overflow: hidden; }
/* Half-bleed: full viewport width grid, image exits right edge */
.calidad__content {
  max-width: 100%;
  margin: 0;
  padding: 0;
  padding-left: max(24px, calc((100vw - 1280px) / 2 + clamp(24px, 5vw, 64px)));
  display: grid;
  grid-template-columns: 1fr 44%;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.calidad__left > p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-dark);
  margin-bottom: 36px;
}
.comparativa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.comparativa__col {
  padding: 20px 18px;
  border-radius: 3px;
}
.comparativa__col--mala {
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.05);
}
.comparativa__col--buena {
  background: rgba(176,114,32,.07);
  border: 1px solid rgba(176,114,32,.16);
}
.comparativa__col h4 {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.comparativa__col--mala h4 { color: var(--muted-dark); }
.comparativa__col--buena h4 { color: var(--gold-hi); }
.comparativa__col li {
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 7px;
  color: var(--muted-dark);
  padding-left: 14px;
  position: relative;
}
.comparativa__col li::before { content: '—'; position: absolute; left: 0; font-size: .7rem; }
.comparativa__col--mala li::before { color: rgba(180,60,60,.6); }
.comparativa__col--buena li { color: var(--text-on-dark); }
.comparativa__col--buena li::before { content: '✓'; color: var(--gold-hi); }

/* Right column: no right padding, image bleeds to viewport edge */
.calidad__right {
  overflow: hidden;
  display: flex;
  align-self: stretch;
  min-height: 480px;
}
.calidad__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  border-radius: 0;
  box-shadow: none;
  display: block;
  /* Fade in from left so it feels natural */
  mask-image: linear-gradient(to right, transparent 0%, black 14%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 14%);
}

/* ── 14. FAQ — Light ── */
.faq { padding-bottom: var(--pad); }
.faq__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.faq__header { margin-bottom: 52px; }
.faq__item { border-bottom: 1px solid var(--light-2); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-family: var(--f-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-on-light);
  text-align: left;
  letter-spacing: 0;
  transition: color .2s;
}
.faq__q:hover { color: var(--brown); }
.faq__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1px solid rgba(122,72,32,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s;
  position: relative;
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.faq__icon::before { width: 9px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 9px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__q[aria-expanded="true"] .faq__icon {
  background: rgba(122,72,32,.08);
  border-color: rgba(122,72,32,.3);
}
.faq__a { padding-bottom: 22px; }
.faq__a p {
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-light);
}
.faq__a strong { color: var(--text-on-light); font-weight: 500; }

/* ── 15. TESTIMONIOS — Fondo: trapichero real como CSS background ── */
.testimonios {
  padding-bottom: var(--pad);
  overflow: hidden;
  /* Trapichero como background: muy oscurecido para que no compita con el texto */
  background-image:
    radial-gradient(ellipse 120% 120% at 50% 50%,
      rgba(8,4,2,.72) 0%,
      rgba(8,4,2,.92) 60%,
      rgba(8,4,2,1) 100%
    ),
    url('assets/517a96_ba4f323b19cf4024877a9c4d091a7f0e~mv2.png');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.testimonios__bg { display: none; }

.testimonios__container {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
}
.testimonios__header { margin-bottom: 56px; }
.testimonios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 4px;
  overflow: hidden;
}
.testimonio {
  background: var(--dark);
  border: none;
  border-radius: 0;
  padding: 36px 28px;
  transition: background .3s;
}
.testimonio:hover { background: var(--dark-3); transform: none; }
.testimonio--featured {
  background: var(--dark-2);
  border: none;
}
.testimonio--featured::before {
  font-size: 5rem;
  color: rgba(176,114,32,.08);
  top: -10px; left: 20px;
}
.testimonio__stars {
  font-size: .9rem;
  letter-spacing: 2px;
  color: var(--gold-hi);
  margin-bottom: 16px;
}
.testimonio > p {
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-dark);
  margin-bottom: 22px;
  font-style: italic;
}
.testimonio footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonio__avatar {
  width: 40px; height: 40px;
  background: rgba(122,72,32,.25);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold-hi);
  flex-shrink: 0;
}
.testimonio__name {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--text-on-dark);
  font-style: normal;
  letter-spacing: 0;
}
.testimonio__role { font-size: .74rem; color: var(--muted-dark); }

/* ── 16. CONTACTO — Light ── */
.contacto { padding-bottom: var(--pad); overflow: hidden; }
.contacto__texture { display: none; }
.contacto__container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contacto__info > p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-light);
  margin-bottom: 28px;
}
.contacto__checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 32px; }
.contacto__checks li {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-on-light);
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.25);
  color: #1a9e4a;
  font-weight: 600;
  font-size: .85rem;
  padding: 12px 22px;
  border-radius: 3px;
  transition: background .25s;
}
.wa-btn:hover { background: rgba(37,211,102,.15); }

/* Form */
.contacto__form {
  background: var(--light-2);
  border: none;
  border-radius: 4px;
  padding: clamp(28px, 4vw, 44px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form__group label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.form__group label span { color: var(--brown); }
.form__group input,
.form__group select,
.form__group textarea {
  background: var(--light);
  border: 1px solid var(--light-2);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--text-on-light);
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--muted-light); opacity: .5; }
.form__group select { cursor: pointer; }
.form__group select option { background: var(--light); color: var(--text-on-light); }
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus { border-color: var(--brown); }
.form__group textarea { resize: vertical; min-height: 100px; }

.form__submit {
  width: 100%;
  background: var(--text-on-light);
  color: var(--light);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 15px 28px;
  border-radius: 3px;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.form__submit:hover { background: var(--dark-3); transform: translateY(-1px); }
.form__success {
  margin-top: 14px;
  padding: 12px 16px;
  background: rgba(37,211,102,.08);
  border: 1px solid rgba(37,211,102,.2);
  border-radius: 3px;
  color: #1a9e4a;
  font-size: .86rem;
  text-align: center;
}

/* ── 17. MANIFESTO — Campesino CSS background ── */
.manifesto {
  position: relative;
  z-index: 7; /* entre personas(7) y calidad(8) */
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Campesino ocupa el lado izquierdo como background */
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 54%;
  height: 100%;
  background:
    url('assets/WhatsApp-Image-2024-06-01-at-15.59.51-1068x712.webp')
    center center / cover no-repeat;
  z-index: 0;
}

/* Gradiente: izquierda visible → derecha oscura para el texto */
.manifesto::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,4,2,.18) 0%,
    rgba(8,4,2,.45) 35%,
    rgba(8,4,2,.88) 52%,
    rgba(8,4,2,.98) 68%,
    rgba(8,4,2,1) 100%
  );
  z-index: 1;
}

/* Texto a la derecha, encima del overlay */
.manifesto__content {
  position: relative;
  z-index: 2;
  margin-left: 46%;
  max-width: 580px;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 64px);
}
.manifesto__pre {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-hi);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.manifesto__pre::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-hi);
  flex-shrink: 0;
}
.manifesto__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: 0;
  color: var(--text-on-dark);
  margin-bottom: 28px;
}
.manifesto__title em {
  font-style: normal;
  color: var(--gold-hi);
  display: block;
}
.manifesto__sub {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted-dark);
  margin-bottom: 40px;
  max-width: 460px;
}
.manifesto__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-hi);
  color: var(--dark);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .04em;
  padding: 14px 30px;
  border-radius: 3px;
  transition: background .25s, transform .2s;
}
.manifesto__cta:hover { background: #e8a620; transform: translateY(-2px); }

/* Mobile: fondo completo, texto abajo */
@media (max-width: 900px) {
  .manifesto {
    min-height: 70vh;
    clip-path: none !important;
    margin-top: 0 !important;
  }
  .manifesto::before { width: 100%; opacity: .25; }
  .manifesto::after {
    background: linear-gradient(to top,
      rgba(8,4,2,.98) 40%,
      rgba(8,4,2,.75) 70%,
      rgba(8,4,2,.4) 100%
    );
  }
  .manifesto__content {
    margin-left: 0;
    max-width: 100%;
    padding: clamp(40px, 8vw, 64px) clamp(20px, 5vw, 40px);
  }
  .manifesto__title { font-size: clamp(2.2rem, 9vw, 3rem); }
}

/* ── 17b. REGIÓN GUALIVÁ ── */
.region {
  background: var(--light);
  padding-bottom: var(--pad);
}
.region__container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 64px);
  display: grid;
  grid-template-columns: clamp(260px, 34vw, 440px) 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}

/* Columna visual izquierda: trapichero como background CSS */
.region__visual-col {
  border-radius: 6px;
  overflow: hidden;
  height: clamp(340px, 50vw, 520px);
  background:
    url('assets/517a96_ba4f323b19cf4024877a9c4d091a7f0e~mv2.png') center / cover no-repeat;
  box-shadow: 0 20px 50px rgba(0,0,0,.14), 0 0 0 1px rgba(122,72,32,.1);
  position: relative;
}
/* Caption via ::after */
.region__visual-col::after {
  content: 'Trapiche artesanal · Gualivá, Cundinamarca';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 18px 14px;
  background: linear-gradient(to top, rgba(10,5,2,.75) 0%, transparent 100%);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(253,246,235,.6);
}

/* Content column */
.region__content > p {
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted-light);
  margin-bottom: 16px;
  max-width: 600px;
}
.region__content strong { color: var(--text-on-light); font-weight: 600; }

.region__stats {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--light-2);
  border-bottom: 1px solid var(--light-2);
}
.region__stat-num {
  display: block;
  font-family: var(--f-display);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0;
}
.region__stat-label {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--muted-light);
  line-height: 1.4;
  max-width: 140px;
}

.region__municipios {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.region__municipios span {
  background: rgba(61,107,52,.08);
  border: 1px solid rgba(61,107,52,.18);
  color: var(--green);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 5px 13px;
  border-radius: 100px;
}

/* ── HERO EXTRAS — geo tag ── */
.hero__geo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--muted-dark);
  margin-bottom: 24px;
  margin-top: -8px;
}
.hero__geo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-l);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(90,153,80,.25);
  animation: geoPulse 2.5s ease-in-out infinite;
}
@keyframes geoPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(90,153,80,.25); }
  50%       { box-shadow: 0 0 0 7px rgba(90,153,80,.08); }
}

/* ── CONTACTO — nuevos elementos ── */
.wa-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 28px;
  border-radius: 3px;
  margin-bottom: 32px;
  transition: background .25s, transform .2s;
  box-shadow: 0 6px 20px rgba(37,211,102,.25);
}
.wa-btn-primary:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,.35);
}

.contacto__pagos,
.contacto__envios {
  margin-bottom: 20px;
}
.pagos__label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 10px;
}
.pagos__metodos {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pago-tag {
  background: var(--light-2);
  border: 1px solid rgba(0,0,0,.08);
  color: var(--text-on-light);
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.pago-tag--nequi  { background: rgba(140,0,255,.08); border-color: rgba(140,0,255,.2); color: #6600cc; }
.pago-tag--daviplata { background: rgba(220,20,20,.07); border-color: rgba(220,20,20,.18); color: #b81010; }

.pagos__nota {
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 300;
  color: var(--muted-light);
  line-height: 1.5;
}

/* Region section in diagonal system (light, follows showcase which is also light) */
/* showcase → region both light — no diagonal needed between them, use border */
.region {
  clip-path: none;
  margin-top: 0;
  padding-top: var(--pad);
  border-top: 1px solid var(--light-2);
  z-index: 3;
}

/* ── 18. FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.05);
}
.footer__main {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px) 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-on-dark);
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 14px;
}
.footer__logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 6px;
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(122,72,32,.92), rgba(42,20,7,.92));
  border: 1px solid rgba(212,146,26,.36);
  rotate: -5deg;
  flex-shrink: 0;
}
.footer__logo-mark span {
  border-radius: 1px;
  background: linear-gradient(145deg, rgba(237,231,221,.95), rgba(212,146,26,.82));
}
.footer__logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.footer__logo-name { display: block; }
.footer__logo-sub {
  display: block;
  margin-top: 5px;
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--gold-hi);
}
.footer__brand > p {
  font-size: .84rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted-dark);
  margin-bottom: 22px;
  max-width: 260px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-dark);
  transition: background .2s, color .2s, border-color .2s;
}
.footer__social a:hover { background: rgba(176,114,32,.1); color: var(--gold-hi); border-color: rgba(176,114,32,.2); }
.footer__nav h4, .footer__contact-info h4 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  margin-bottom: 18px;
}
.footer__nav ul, .footer__contact-info ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav li, .footer__contact-info li {
  font-size: .84rem;
  font-weight: 300;
  color: var(--muted-dark);
}
.footer__nav a { transition: color .2s; }
.footer__nav a:hover { color: var(--text-on-dark); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 22px clamp(24px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: .76rem; color: rgba(255,255,255,.15); }
.footer__seo-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__seo-nav a { font-size: .74rem; color: rgba(255,255,255,.12); transition: color .2s; }
.footer__seo-nav a:hover { color: var(--muted-dark); }

/* ── 18. RESPONSIVE ── */
@media (max-width: 1100px) {
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .personas__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .region__container { grid-template-columns: 1fr; }
  .region__visual-col { display: none; }
  .region__stats { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 900px) {

  /* ══════════════════════════════════════════
     ELIMINAR CLIP-PATH Y MÁRGENES NEGATIVOS EN MÓVIL
     Causa: secciones con z-index más alto tapan
     el contenido de secciones anteriores.
  ══════════════════════════════════════════ */
  .showcase, .proceso, .personas, .faq, .contacto,
  .about, .beneficios, .calidad, .testimonios, .region {
    clip-path: none !important;
    margin-top: 0 !important;
  }
  /* Restaurar padding-top normal (sin compensación diagonal) */
  .showcase, .region, .personas, .faq, .contacto {
    padding-top: clamp(60px, 10vw, 100px) !important;
  }
  .about, .calidad, .testimonios {
    padding-top: clamp(60px, 10vw, 100px) !important;
  }

  /* Separadores simples entre secciones en móvil */
  .showcase { border-top: 1px solid var(--light-2); }
  .about    { border-top: 1px solid rgba(255,255,255,.05); }
  .proceso  { border-top: 1px solid var(--light-2); }
  .beneficios { border-top: 1px solid rgba(255,255,255,.05); }
  .configurador { border-top: 1px solid rgba(255,255,255,.03); }
  .personas { border-top: 1px solid var(--light-2); }
  .calidad  { border-top: 1px solid rgba(255,255,255,.05); }
  .faq      { border-top: 1px solid var(--light-2); }
  .testimonios { border-top: 1px solid rgba(255,255,255,.05); }
  .contacto { border-top: 1px solid var(--light-2); }

  /* ══════════════════════════════════════════
     DESHABILITAR JS-REVEAL EN MÓVIL
     Causa: elementos con opacity:0 + transform
     crean espacios en blanco enormes antes de
     entrar al viewport (IO no dispara).
  ══════════════════════════════════════════ */
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* ── Nav ── */
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__logo-sub { font-size: .62rem; letter-spacing: .1em; }

  /* ── Hero ── */
  .hero__layout {
    grid-template-columns: 1fr;
    text-align: left;
    padding: calc(var(--nav-h) + 24px) clamp(20px,5vw,40px) 60px;
    gap: 0;
    min-height: auto;
  }
  /* Producto centrado arriba */
  .hero__center {
    order: -1;
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
  }
  .hero__product-img { width: min(340px, 86vw); }
  /* Ocultar label "4×4 | 16 panelas" — se encima con el eyebrow en móvil */
  .hero__product-label { display: none; }
  /* Anillos más pequeños */
  .hero__dof-ring--outer { width: 220px; height: 220px; }
  .hero__dof-ring--inner { width: 150px; height: 150px; }
  .hero__product-glow { width: 200px; height: 200px; }
  /* Eyebrow más compacto */
  .hero__eyebrow { font-size: 9px; letter-spacing: .14em; flex-wrap: wrap; }
  /* Stats en fila con wrap */
  .hero__stats { gap: 16px; flex-wrap: wrap; padding: 16px 0; margin-bottom: 28px; }
  .hero__stat-num { font-size: 1.5rem; }
  .hero__scroll-hint { display: none; }

  /* ── Showcase ── */
  .showcase__sticky { grid-template-columns: 1fr; gap: 36px; }
  .showcase__product-wrap {
    max-width: none;
    min-height: 260px;
    margin: 0 calc(-1 * clamp(20px, 5vw, 40px));
    overflow: hidden;
  }
  .showcase__product-img {
    width: min(440px, 106vw);
    margin-left: -10vw;
    rotate: -11deg;
  }
  .showcase__cards { gap: 28px; }
  .showcase__card { padding-left: 0; padding-bottom: 28px; }
  .showcase__card-num {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 28px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: rgba(122,72,32,.08);
    color: var(--brown);
    font-size: .78rem;
    letter-spacing: .08em;
  }

  /* ── Region ── */
  .region__container { grid-template-columns: 1fr; }
  .region__visual-col { display: none; }
  .region__stats { flex-wrap: wrap; gap: 16px; }

  /* ── Proceso — columna única ── */
  .proceso {
    display: block;
    padding-bottom: clamp(60px, 10vw, 100px) !important;
  }
  .proceso__container {
    padding: 0 clamp(20px, 5vw, 40px);
    max-width: var(--wrap);
    margin: 0 auto;
  }
  .proceso__steps { grid-template-columns: 1fr; }
  .proceso__right-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    margin: 34px 0 0;
    padding: 0;
    overflow: hidden;
  }
  .proceso__right-image img {
    width: min(500px, 118vw);
    height: auto;
    min-height: 0;
    transform: translateX(4%);
    rotate: 5deg;
  }

  /* ── Beneficios — columna única ── */
  .beneficios {
    display: block;
    padding-bottom: clamp(60px, 10vw, 100px) !important;
  }
  .beneficios__container {
    padding: 0 clamp(20px, 5vw, 40px);
    max-width: var(--wrap);
    margin: 0 auto;
  }
  .beneficios__grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios__right-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 270px;
    margin: 34px 0 0;
    padding: 0;
    overflow: hidden;
  }
  .beneficios__right-img img {
    width: min(500px, 118vw);
    height: auto;
    min-height: 0;
    transform: translateX(-3%);
    rotate: -8deg;
  }

  /* ── Calidad — colapsar split ── */
  .calidad__content {
    grid-template-columns: 1fr;
    padding-left: clamp(20px, 5vw, 40px);
    padding-right: clamp(20px, 5vw, 40px);
    gap: 0;
  }
  .calidad__right {
    order: -1;
    min-height: 240px;
    margin: 0 calc(-1 * clamp(20px, 5vw, 40px));
    margin-bottom: 36px;
  }
  .calidad__img {
    mask-image: none;
    -webkit-mask-image: none;
    object-position: center;
  }

  /* ── Configurador ── */
  .configurador__layout { grid-template-columns: 1fr; }
  .gavera-frame { width: min(360px, 88vw); }
  .configurador { padding-top: clamp(60px, 10vw, 100px) !important; }

  /* ── Testimonios ── */
  .testimonios__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .testimonios__container { padding: 0 clamp(20px, 5vw, 40px); }

  /* ── Contacto ── */
  .contacto__container { grid-template-columns: 1fr; }
  .contacto__info { text-align: left; }
  .wa-btn-primary { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  /* Sin clip-path en móvil, --slice no es crítico pero lo dejamos pequeño */
  :root { --slice: 0px; }

  .personas__grid { grid-template-columns: 1fr; }
  .beneficios__grid { grid-template-columns: 1fr; }
  .testimonios__grid { grid-template-columns: 1fr; }
  .comparativa { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }

  /* Hero mobile */
  .hero__layout {
    padding-top: calc(var(--nav-h) + 16px);
    padding-bottom: 60px;
    gap: 28px;
  }
  .hero__title { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__product-img { width: min(340px, 90vw); }
  .hero__stats { gap: 18px; flex-wrap: wrap; }
  .hero__geo { font-size: .65rem; flex-wrap: wrap; }

  /* Region */
  .region__stats { flex-direction: column; gap: 20px; }
  .region__municipios span { font-size: .7rem; padding: 4px 10px; }

  /* Process steps */
  .proceso__steps { grid-template-columns: 1fr; }

  /* Personas */
  .personas__header { margin-bottom: 32px; }

  /* Contacto */
  .wa-btn-primary { font-size: .88rem; padding: 14px 20px; }
  .pagos__metodos { gap: 5px; }
  .pago-tag { font-size: .7rem; padding: 4px 10px; }

  /* Configurador */
  .gavera-frame { width: min(320px, 90vw); }
  .config__summary-item { flex-direction: column; align-items: flex-start; gap: 2px; }
  .config__summary-val { font-size: .9rem; }

  /* Testimonios */
  .testimonio--featured::before { font-size: 3.5rem; }

  /* Footer bottom */
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer__seo-nav { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP FLOTANTE
═══════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 18px rgba(37,211,102,.38);
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s, padding .25s;
  overflow: hidden;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(37,211,102,.52);
}

/* Pulsing ring behind the button */
.wa-float__ring {
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid rgba(37,211,102,.5);
  animation: waRing 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waRing {
  0%   { transform: scale(1); opacity: .8; }
  70%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.wa-float__icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
}

.wa-float__label {
  font-family: var(--f-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}

/* Collapsed to icon-only on very small screens */
@media (max-width: 400px) {
  .wa-float {
    padding: 15px;
    border-radius: 50%;
    bottom: 20px;
    left: 16px;
  }
  .wa-float__label { display: none; }
}

/* Keep button above nav mobile menu */
@media (max-width: 900px) {
  .wa-float { bottom: 20px; left: 16px; }
}
