/* =============================================================
   Innova RS — site.css
   Mueblería · editorial cálido: lino + madera + acento terracota/latón
   Display: Fraunces (serif) · Texto: Inter
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #faf6f0;   /* lino cálido */
  --bg-soft:   #f3ece1;
  --bg-2:      #ece2d4;
  --bg-3:      #e3d6c4;

  --ink:       #2a211b;   /* espresso */
  --ink-soft:  #5b4d40;
  --ink-mute:  #8a7a6a;

  --brand:     #c8643c;   /* terracota */
  --brand-600: #b8552f;
  --brand-700: #9e4524;
  --brand-800: #7d3115;
  --brand-300: #e0a07f;
  --brand-100: #f6e6dc;

  --wood:      #6b4a32;   /* nogal */
  --wood-700:  #4f3623;
  --brass:     #bb8b3d;   /* latón */
  --brass-300: #d9a441;

  --ok:        #6f8f5a;   /* sage */
  --ok-soft:   #ecf1e4;
  --wa:        #25d366;
  --wa-600:    #1ebe5a;

  --dark:      #211a14;   /* banda oscura */
  --dark-2:    #2e241b;

  --glass:        rgba(255, 252, 247, 0.62);
  --glass-strong: rgba(255, 252, 247, 0.86);
  --line:      rgba(42, 33, 27, 0.12);
  --line-soft: rgba(42, 33, 27, 0.07);

  --shadow-sm: 0 2px 10px rgba(74, 49, 27, 0.07);
  --shadow:    0 14px 40px rgba(74, 49, 27, 0.12);
  --shadow-lg: 0 30px 70px rgba(54, 34, 18, 0.20);
  --shadow-brand: 0 16px 36px rgba(158, 69, 36, 0.28);

  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --disp:  "Fraunces", Georgia, "Times New Roman", serif;

  --radius:    18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --container: 1200px;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.015em; font-family: var(--disp); font-weight: 600; }
::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.container { width: min(100% - 2.4rem, var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--brand); color: #fff;
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.4rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .96rem;
  letter-spacing: -0.005em;
  line-height: 1;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn-lg { padding: 1.02rem 1.7rem; font-size: 1.02rem; }
.btn-sm { padding: .6rem 1.05rem; font-size: .88rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-700) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 46px rgba(158, 69, 36, 0.36); }

.btn-ghost {
  background: #fff;
  color: var(--wood);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--brand-300); color: var(--brand-700); }

.btn-white {
  background: #fff;
  color: var(--brand-700);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}
.btn-white:hover { transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }

/* =============================================================
   4. Glass card
   ============================================================= */
.glass-card {
  background: rgba(255,253,250,0.94);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@supports (backdrop-filter: blur(16px)) {
  .glass-card {
    background: var(--glass-strong);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.8);
  }
}

/* =============================================================
   5. NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250,246,240,0.82);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 6px 24px rgba(74,49,27,0.07);
}
.nav-inner {
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
  display: flex; align-items: center; gap: 1rem;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  color: var(--brass-300);
  background: linear-gradient(140deg, var(--ink) 0%, var(--wood-700) 100%);
  box-shadow: var(--shadow-sm);
  flex: 0 0 auto;
}
.brand-mark--dark { background: linear-gradient(140deg, #3a2c20 0%, #261b12 100%); }
.brand-logo {
  width: 48px; height: 48px; flex: 0 0 auto;
  border-radius: 12px; object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-logo--footer { width: 72px; height: 72px; border-radius: 14px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-text strong { font-family: var(--disp); font-weight: 700; font-size: 1.32rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-rs { color: var(--brand); margin-left: .12em; }
.brand-text em { font-style: normal; font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-mute); }
.footer-brand .brand-text { display: block; }

.nav-links { display: none; gap: .35rem; }
.nav-links a {
  padding: .5rem .8rem; border-radius: 9px;
  font-weight: 600; font-size: .94rem; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand-700); background: var(--brand-100); }

.nav-actions { display: none; align-items: center; gap: .6rem; }

.nav-toggle {
  display: grid; gap: 5px; padding: 9px; margin-left: auto;
  border-radius: 10px; border: 1px solid var(--line);
  background: #fff;
}
.nav-toggle span { display: block; width: 22px; height: 2.4px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

.nav-mobile[hidden] { display: none; }
.nav-mobile {
  display: flex; flex-direction: column; gap: .25rem;
  padding: .8rem 1.2rem 1.4rem;
  background: rgba(250,246,240,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nav-mobile a:not(.btn) { padding: .85rem .4rem; font-weight: 600; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.nav-mobile a:not(.btn):hover { color: var(--brand-700); }
.nav-mobile .btn { margin-top: .8rem; }

/* =============================================================
   6. HERO
   ============================================================= */
.hero {
  position: relative;
  padding: clamp(2.2rem, 5vw, 4.5rem) 0 0;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 60%);
}
.hero-mesh {
  position: absolute; inset: -20% -10% auto -10%; height: 120%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(40% 50% at 78% 18%, rgba(216,148,92,0.42) 0%, transparent 60%),
    radial-gradient(36% 44% at 12% 8%,  rgba(187,139,61,0.26) 0%, transparent 60%),
    radial-gradient(50% 50% at 95% 70%, rgba(227,214,196,0.55) 0%, transparent 60%);
  filter: blur(46px) saturate(125%);
  animation: meshDrift 26s ease-in-out infinite;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0,0); }
  50%      { transform: scale(1.16) translate(-2%, 1.5%); }
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(107,74,50,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107,74,50,0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  width: min(100% - 2.4rem, var(--container));
  margin-inline: auto;
  display: grid; gap: 2.4rem;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .82rem; letter-spacing: .01em;
  color: var(--brand-700);
  background: var(--brand-100);
  padding: .42rem .85rem; border-radius: 999px;
  margin-bottom: 1.2rem;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(111,143,90,0.2); }

.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
  margin-bottom: 1.2rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--brand) 0%, var(--brass) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 1.8rem;
}
.hero-sub strong { color: var(--brand-700); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.8rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; list-style: none; }
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.hero-trust svg { color: var(--ok); }

/* hero media */
.hero-media { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 7px solid #fff;
  aspect-ratio: 16 / 12;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-glow {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(54,34,18,0.24) 100%);
}

/* sello giratorio */
.seal {
  position: absolute; left: -14px; bottom: -18px;
  width: 128px; height: 128px;
  display: grid; place-items: center;
  filter: drop-shadow(0 14px 26px rgba(54,34,18,0.3));
}
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 20s linear infinite; }
@keyframes sealSpin { to { transform: rotate(360deg); } }
.seal-track { font-family: var(--disp); font-size: 7.6px; font-weight: 600; letter-spacing: .06em; fill: var(--wood); }
.seal-core {
  position: relative; z-index: 2;
  width: 86px; height: 86px; border-radius: 50%;
  display: grid; place-items: center; gap: 0; text-align: center;
  background: linear-gradient(145deg, var(--ink) 0%, var(--wood-700) 100%);
  color: var(--brass-300);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.18), 0 6px 16px rgba(54,34,18,0.3);
}
.seal-core strong { font-family: var(--disp); font-size: 1.04rem; font-weight: 700; line-height: 1; letter-spacing: .01em; color: #fff; }
.seal-core span { font-size: .54rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--brass-300); margin-top: .12rem; }

.hero-chip {
  position: absolute; right: -8px; top: 24px;
  background: rgba(255,253,250,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: .65rem .95rem;
  box-shadow: var(--shadow);
  display: grid; gap: .05rem; text-align: center;
  animation: floatY 5s ease-in-out infinite;
}
.chip-num { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; color: var(--brand); line-height: 1; }
.chip-lab { font-size: .68rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: .06em; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* marquee */
.hero-marquee {
  position: relative; z-index: 2;
  margin-top: .6rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255,253,250,0.5);
  overflow: hidden; padding: .85rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 1.6rem; align-items: center; width: max-content;
  animation: marquee 34s linear infinite;
}
.marquee-track span { font-family: var(--disp); font-weight: 600; font-style: italic; font-size: 1.15rem; color: var(--wood); white-space: nowrap; }
.marquee-track span:nth-child(even) { color: var(--brand-300); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   7. SELLO band
   ============================================================= */
.sello { padding: clamp(2.6rem, 5vw, 4rem) 0; background: linear-gradient(180deg, var(--bg), var(--bg-soft)); }
.sello-inner {
  display: grid; gap: 2rem;
  background: linear-gradient(135deg, var(--brand-100) 0%, #fff 60%);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.sello-badge { display: flex; gap: 1.2rem; align-items: flex-start; }
.sello-shield { flex: 0 0 auto; }
.sello-shield--logo {
  display: grid; place-items: center;
  width: 104px; height: 104px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sello-shield--logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sello-h { font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--ink); margin-bottom: .5rem; font-weight: 600; }
.grad { background: linear-gradient(120deg, var(--brand), var(--brass)); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.sello-p { color: var(--ink-soft); max-width: 60ch; }
.sello-p strong { color: var(--ink); }

.sello-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  list-style: none; border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.sello-stats li { text-align: center; }
.sello-stats strong { display: block; font-family: var(--disp); font-weight: 700; font-size: clamp(1.7rem, 4vw, 2.4rem); color: var(--brand); line-height: 1; letter-spacing: -0.01em; }
.sello-stats span { font-size: .82rem; color: var(--ink-mute); font-weight: 600; }

/* =============================================================
   8. Section scaffold
   ============================================================= */
.section { padding: clamp(3.2rem, 7vw, 6rem) 0; }
.section-head { max-width: 56ch; margin: 0 auto clamp(2rem, 4vw, 3rem); text-align: center; }
.kicker {
  display: inline-block; font-family: var(--sans); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .7rem;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--ink); letter-spacing: -0.02em; font-weight: 600; }
.section-lead { margin-top: .9rem; color: var(--ink-soft); font-size: 1.06rem; }

/* =============================================================
   9. Catálogo
   ============================================================= */
.catalog { background: var(--bg); }
.prod-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
.prod-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand-300); }
.prod-media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--bg-2); }
.prod-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.prod-card:hover .prod-media img { transform: scale(1.05); }
.prod-tag {
  position: absolute; left: .8rem; top: .8rem;
  background: rgba(33,26,20,0.82); color: #fff;
  backdrop-filter: blur(6px);
  font-size: .72rem; font-weight: 700; letter-spacing: .03em;
  padding: .34rem .7rem; border-radius: 999px; text-transform: uppercase;
}
.prod-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.prod-body h3 { font-size: 1.28rem; margin-bottom: .4rem; color: var(--ink); font-weight: 600; }
.prod-desc { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.1rem; flex: 1; }
.prod-foot { display: flex; align-items: center; justify-content: space-between; gap: .8rem; }
.prod-price { font-family: var(--disp); font-weight: 700; font-size: 1.22rem; color: var(--wood); }
.prod-price--ask { font-size: .98rem; color: var(--brand-700); }
.catalog-note { text-align: center; color: var(--ink-mute); font-size: .9rem; margin-top: 1.8rem; }

/* =============================================================
   10. Ambientes (banda oscura · impactante)
   ============================================================= */
.ambientes {
  background: linear-gradient(165deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.ambientes::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
  background: radial-gradient(40% 50% at 85% 12%, rgba(216,148,92,0.3), transparent 60%),
              radial-gradient(36% 44% at 6% 92%, rgba(187,139,61,0.22), transparent 60%);
}
.ambientes .container { position: relative; z-index: 2; }
.ambientes .section-title { color: #fff; }
.ambientes .section-lead { color: rgba(255,255,255,0.78); }
.ambientes .kicker { color: var(--brass-300); }
.amb-grid { display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.amb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  backdrop-filter: blur(6px);
  transition: background .3s, transform .4s var(--ease-out), border-color .3s;
}
.amb-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); border-color: rgba(217,164,65,0.5); }
.amb-ico {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 15px; color: var(--brass-300);
  background: rgba(217,164,65,0.14);
  margin-bottom: 1.1rem;
  transition: background .3s, color .3s, transform .4s var(--ease-out);
}
.amb-card:hover .amb-ico { background: var(--brass-300); color: var(--dark); transform: scale(1.06) rotate(-3deg); }
.amb-card h3 { font-size: 1.32rem; margin-bottom: .45rem; color: #fff; font-weight: 600; }
.amb-card p { color: rgba(255,255,255,0.74); font-size: .96rem; margin-bottom: 1rem; }
.amb-link { font-weight: 700; font-size: .92rem; color: var(--brass-300); display: inline-flex; gap: .35rem; transition: gap .25s; }
.amb-link:hover { gap: .65rem; color: #fff; }

/* =============================================================
   11. Por qué
   ============================================================= */
.why { background: var(--bg-soft); }
.why-inner { display: grid; gap: 2.6rem; align-items: center; }
.why-media { position: relative; }
.why-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 7px solid #fff; aspect-ratio: 4/3; object-fit: cover;
}
.why-floating {
  position: absolute; right: -6px; bottom: -16px;
  display: flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--ink);
  padding: .7rem 1rem; border-radius: 14px;
  box-shadow: var(--shadow); font-weight: 700; font-size: .9rem;
}
.why-floating svg { color: var(--ok); }
.why-list { list-style: none; display: grid; gap: 1.3rem; margin-top: 1.4rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-ico {
  flex: 0 0 auto; color: var(--brand-700);
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  background: var(--brand-100);
}
.why-list strong { font-family: var(--disp); font-weight: 600; font-size: 1.14rem; display: block; margin-bottom: .2rem; color: var(--ink); }
.why-list p { color: var(--ink-soft); font-size: .96rem; }

/* =============================================================
   12. Proceso
   ============================================================= */
.proceso { background: var(--bg); }
.proc-steps { list-style: none; display: grid; gap: 1.2rem; grid-template-columns: 1fr; counter-reset: step; }
.proc-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.proc-step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.proc-num {
  position: absolute; right: 1.2rem; top: .8rem;
  font-family: var(--disp); font-weight: 700; font-size: 2.4rem;
  color: var(--bg-3); line-height: 1; letter-spacing: -0.02em;
}
.proc-ico {
  display: grid; place-items: center; width: 54px; height: 54px;
  border-radius: 15px; color: #fff;
  background: linear-gradient(140deg, var(--brand) 0%, var(--wood) 100%);
  margin-bottom: 1.1rem; box-shadow: var(--shadow-brand);
}
.proc-step h3 { font-size: 1.2rem; margin-bottom: .4rem; color: var(--ink); font-weight: 600; }
.proc-step p { color: var(--ink-soft); font-size: .95rem; }

/* =============================================================
   13. Contacto
   ============================================================= */
.contacto { background: var(--bg-soft); }
.contacto-inner { display: grid; gap: 2.4rem; align-items: start; }
.contacto-copy .section-head, .contacto-copy .kicker { text-align: left; }
.contacto-copy .section-title { text-align: left; }
.contacto-data { list-style: none; display: grid; gap: 1rem; margin-top: 1.8rem; }
.contacto-data li { display: flex; align-items: center; gap: .9rem; font-weight: 600; color: var(--ink-soft); }
.contacto-data a { transition: color .2s; }
.contacto-data a:hover { color: var(--brand-700); }
.contacto-ico {
  flex: 0 0 auto; display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-100); color: var(--brand-700);
}

.contacto-form { padding: 1.8rem; display: grid; gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 700; font-size: .88rem; color: var(--ink); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 12px; padding: .8rem .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); opacity: .8; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(200,100,60,0.14); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-mini { font-size: .86rem; color: var(--ink-mute); text-align: center; margin-top: .2rem; }
.form-mini a { color: var(--brand-700); font-weight: 600; text-decoration: underline; }

.form-alert {
  border-radius: 14px; padding: 1rem 1.2rem; margin-bottom: 1rem;
  display: grid; gap: .2rem;
}
.form-alert strong { font-family: var(--disp); font-weight: 600; }
.form-alert span { font-size: .92rem; }
.form-ok  { background: var(--ok-soft); border: 1px solid rgba(111,143,90,0.35); color: #41562f; }
.form-err { background: #fbe7e3; border: 1px solid rgba(158,69,36,0.3); color: var(--brand-800); }

/* =============================================================
   14. CTA final
   ============================================================= */
.cta-final {
  position: relative; overflow: hidden;
  background: linear-gradient(140deg, var(--brand) 0%, var(--wood-700) 100%);
  color: #fff; text-align: center;
  padding: clamp(3.4rem, 7vw, 6rem) 0;
}
.cta-mesh {
  position: absolute; inset: 0; pointer-events: none; opacity: .85;
  background: radial-gradient(40% 60% at 20% 20%, rgba(217,164,65,0.4), transparent 60%),
              radial-gradient(40% 60% at 85% 80%, rgba(125,49,21,0.55), transparent 60%);
  animation: meshDrift 24s ease-in-out infinite;
}
.cta-inner { position: relative; z-index: 2; }
.cta-final h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .8rem; font-weight: 600; }
.cta-final h2 em { font-style: italic; color: #ffdfa6; }
.cta-final p { color: rgba(255,255,255,0.9); font-size: 1.1rem; max-width: 50ch; margin: 0 auto 1.8rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* =============================================================
   15. Footer
   ============================================================= */
.footer { background: var(--dark); color: rgba(255,255,255,0.78); }
.footer-inner { display: grid; gap: 2.2rem; padding: clamp(2.6rem, 5vw, 3.6rem) 0 2rem; }
.footer-brand { display: flex; gap: .8rem; align-items: flex-start; }
.footer-brand strong { font-family: var(--disp); font-weight: 700; font-size: 1.28rem; color: #fff; display: block; }
.footer-brand p { font-size: .9rem; color: rgba(255,255,255,0.62); margin-top: .25rem; max-width: 36ch; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
.footer-col { display: grid; gap: .55rem; align-content: start; }
.footer-col h4 { font-family: var(--sans); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: var(--brass-300); margin-bottom: .3rem; font-weight: 700; }
.footer-col a, .footer-col span { font-size: .94rem; color: rgba(255,255,255,0.72); }
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center;
  padding: 1.3rem 0;
}
.footer-credits { font-size: .82rem; color: rgba(255,255,255,0.52); max-width: 60ch; }
.footer-copy { font-size: .85rem; color: rgba(255,255,255,0.62); font-weight: 600; }

/* =============================================================
   16. WhatsApp flotante
   ============================================================= */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--wa); color: #fff;
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--wa); animation: waRing 2.6s ease-out infinite;
}
@keyframes waRing { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 16px 36px rgba(37,211,102,0.55); }

/* =============================================================
   17. Páginas básicas
   ============================================================= */
.page-basic { max-width: 820px; margin: 4rem auto; padding: 0 1.2rem; }
.page-basic h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1.2rem; }
.page-content p { margin-bottom: 1rem; color: var(--ink-soft); }

/* =============================================================
   18. Reveal animations
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js .reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }
.prod-grid .reveal:nth-child(2), .amb-grid .reveal:nth-child(2), .proc-steps .reveal:nth-child(2) { transition-delay: .06s; }
.prod-grid .reveal:nth-child(3), .amb-grid .reveal:nth-child(3), .proc-steps .reveal:nth-child(3) { transition-delay: .12s; }
.prod-grid .reveal:nth-child(4), .amb-grid .reveal:nth-child(4), .proc-steps .reveal:nth-child(4) { transition-delay: .18s; }
.prod-grid .reveal:nth-child(5) { transition-delay: .24s; }
.prod-grid .reveal:nth-child(6) { transition-delay: .3s; }

/* =============================================================
   19. Responsive
   ============================================================= */
@media (min-width: 560px) {
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .amb-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 760px) {
  .hero-inner { padding-bottom: 3rem; }
  .why-inner { grid-template-columns: 1fr 1.1fr; }
  .contacto-inner { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .hero-inner { grid-template-columns: 1.04fr 0.96fr; align-items: center; gap: 3rem; }
  .prod-grid { grid-template-columns: repeat(3, 1fr); }
  .amb-grid { grid-template-columns: repeat(4, 1fr); }
  .proc-steps { grid-template-columns: repeat(4, 1fr); }
  .sello-inner { grid-template-columns: 1.5fr 1fr; align-items: center; }
  .sello-stats { border-top: 0; border-left: 1px solid var(--line); padding-top: 0; padding-left: 2rem; grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-inner { grid-template-columns: 1.1fr 2fr; }
}

@media (min-width: 1280px) {
  .hero { padding-top: 3rem; }
}

/* =============================================================
   20. Reduced motion
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh, .cta-mesh, .seal-ring, .hero-chip, .wa-float::before { animation: none; }
  .marquee-track { animation-duration: 80s; }
}
