/* ============================================
   INSANA — Design system
   Hero: light sticker (cream + sage)
   Restante: dark + dourado
   ============================================ */

@font-face {
  font-family: 'Gultan Bonte';
  src: url('../assets/LETRAS/Gultan%20Bonte.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand sticker palette */
  --cream: #e4deb1;
  --cream-deep: #d6cf9e;
  --sage: #cbd5b7;
  --sage-deep: #b6c39e;
  --ink: #1a1a1a;
  --ink-soft: #2a2a2a;

  /* Dark theme (sections below hero) */
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --bg-soft: #161616;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --fg: #f5f5f5;
  --fg-muted: rgba(245, 245, 245, 0.66);
  --fg-dim: rgba(245, 245, 245, 0.42);
  --gold: #d4a857;
  --gold-bright: #e6bd6c;
  --gold-deep: #a07d32;
  --whatsapp: #25D366;

  /* Accents */
  --orange: #e85a2c;
  --orange-deep: #c84717;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 80px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: var(--cream);
  scrollbar-color: var(--cream-deep) var(--cream);
  scrollbar-width: thin;
}
/* WebKit (Chrome/Edge no Windows) — scrollbar custom integrada ao tema */
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--cream); }
html::-webkit-scrollbar-thumb {
  background: var(--cream-deep);
  border-radius: 8px;
  border: 2px solid var(--cream);
}
html::-webkit-scrollbar-thumb:hover { background: var(--ink-soft); }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }

::selection { background: var(--ink); color: var(--cream); }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--ink); color: var(--cream); padding: 8px 14px; border-radius: 6px;
  font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

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

.text-gold { color: var(--gold); }

/* ============= HEADER (transparent over light hero) ============= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: background .3s, border-color .3s, color .3s;
  color: var(--ink);
}
body.has-light-hero .site-header {
  background: transparent;
  color: var(--ink);
}
body.has-light-hero .site-header.is-scrolled {
  background: rgba(228, 222, 177, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
body:not(.has-light-hero) .site-header {
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--fg);
}
body:not(.has-light-hero) .site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 8px; }
.brand-logo { height: 56px; width: auto; }

.nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-list > li > a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .2s, opacity .2s;
  opacity: 0.85;
}
.nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease-out);
}
.nav-list > li > a:hover,
.nav-list > li > a.is-active { opacity: 1; }
.nav-list > li > a:hover::after,
.nav-list > li > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid currentColor;
  border-radius: 8px;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: inherit;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-list {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 2px solid var(--ink);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s, transform .3s, visibility .3s;
  }
  body:not(.has-light-hero) .nav-list { background: rgba(10,10,10,0.98); border-bottom-color: var(--line); }
  .nav-list.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-list > li { padding: 4px var(--gutter); }
  .nav-list > li > a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  body:not(.has-light-hero) .nav-list > li > a { border-bottom-color: var(--line); }
  .nav-list > li > a::after { display: none; }
}

/* ============================================
   HERO STICKER (cream/sage premium)
   ============================================ */
.hero-sticker {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--header-h) + 40px) 0 80px;
  background: var(--cream);
  color: var(--ink);
  overflow: visible;
  display: flex;
  align-items: center;
  z-index: 3;
}

/* Paper / texture layers */
.hero-paper {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(203, 213, 183, 0.55), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(203, 213, 183, 0.5), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(214, 207, 158, 0.7), transparent 60%),
    var(--cream);
  z-index: -2;
}
.hero-grain {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}
.hero-sticker::before,
.hero-sticker::after {
  /* Subtle vignette/edges to give a printed-paper feel */
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.hero-sticker::before {
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.08) 100%);
}

/* Numbered indicator (left edge) — pager fixo cobrindo todas as seções da home */
.hero-pager {
  position: fixed;
  left: clamp(14px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  z-index: 50;
}
.hero-pager li {
  color: rgba(26, 26, 26, 0.35);
  transition: color .25s;
}
.hero-pager a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: inherit;
  text-decoration: none;
  border-radius: 50%;
  transition: color .25s, border-color .25s;
}
.hero-pager a:hover { color: var(--ink); }
.hero-pager li.is-active { color: var(--ink); }
.hero-pager li.is-active a {
  border: 2px solid var(--ink);
}

/* Stickers */
.sticker {
  position: absolute;
  pointer-events: none;
  filter:
    drop-shadow(2px 4px 0 rgba(0,0,0,0.15))
    drop-shadow(0 14px 22px rgba(0,0,0,0.18));
  z-index: 3;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform .6s var(--ease-out);
}

.sticker-hop-tr {
  top: 8%;
  right: 6%;
  width: clamp(90px, 10vw, 150px);
  transform: rotate(18deg);
}
.sticker-hop-tr:hover { transform: rotate(8deg) scale(1.05); }

.sticker-mascot-l {
  top: 38%;
  left: 4%;
  width: clamp(160px, 22vw, 320px);
  transform: rotate(-6deg);
}
.sticker-mascot-l:hover { transform: rotate(-3deg) scale(1.04); }

.sticker-sun-r {
  bottom: 18%;
  right: 3%;
  width: clamp(120px, 14vw, 200px);
  transform: rotate(10deg);
}
.sticker-sun-r:hover { transform: rotate(0) scale(1.05); }

.sticker-bottle {
  bottom: 0;
  right: 18%;
  width: clamp(170px, 22vw, 300px);
  aspect-ratio: 4 / 5;
  transform: rotate(-8deg);
  z-index: 4;
  /* aspect-ratio fixo: o wrapper fica estável entre trocas de imagem (PNGs têm dimensões mistas) */
}
.sticker-bottle-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(var(--bottle-img-scale, 1));
  transform-origin: 50% 50%;
  transition: transform 0.5s var(--ease-out);
  will-change: transform, opacity;
}

/* Center content */
.hero-sticker-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-eyebrow-logo {
  width: clamp(110px, 12vw, 180px);
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(2px 3px 0 rgba(0,0,0,0.12));
}

.hero-headline {
  font-family: 'Gultan Bonte', 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 11vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.05em;
}
.hero-headline .line-1,
.hero-headline .line-2 {
  display: block;
}
.hero-headline .line-2 {
  position: relative;
  color: var(--ink);
}

.hero-headline-sub {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--ink-soft);
  margin-top: 8px;
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
}

.hero-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 28px auto 0;
  line-height: 1.6;
}
.hero-desc strong { font-weight: 700; color: var(--ink); }

.hero-ctas-sticker {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Sticker buttons */
.btn-sticker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  transition: transform .25s var(--ease-out), background .25s, color .25s, box-shadow .25s;
  cursor: pointer;
}
.btn-sticker::after {
  content: '';
  position: absolute;
  top: 6px; left: 6px;
  width: 100%; height: 100%;
  background: var(--ink);
  z-index: -1;
  transition: top .2s var(--ease-out), left .2s var(--ease-out);
}
.btn-sticker:hover {
  transform: translate(3px, 3px);
}
.btn-sticker:hover::after {
  top: 3px; left: 3px;
}

.btn-sticker-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-sticker-primary::after { background: var(--orange); }
.btn-sticker-primary:hover { background: var(--orange); color: #fff; }

.btn-sticker-ghost {
  background: var(--cream);
  color: var(--ink);
}
.btn-sticker-ghost::after { background: var(--sage-deep); }

/* Right edge social labels */
.hero-social {
  position: absolute;
  right: clamp(14px, 2vw, 28px);
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  display: flex;
  gap: 28px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.18em;
  z-index: 5;
}
.hero-social a {
  color: var(--ink);
  opacity: 0.7;
  transition: opacity .2s;
}
.hero-social a:hover { opacity: 1; color: var(--orange); }

/* Warning bottom-left */
.hero-warning {
  position: absolute;
  left: clamp(58px, 5vw, 80px);
  bottom: 28px;
  max-width: 280px;
  z-index: 5;
  font-size: 11px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero-warning strong {
  display: block;
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transform: rotate(-2deg);
}

/* Scroll indicator bottom-center */
.hero-scroll-bottom {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ink);
  z-index: 5;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scroll-icon {
  font-size: 16px;
  font-weight: 700;
  font-family: system-ui, sans-serif;
}

/* 18+ Badge */
.hero-age {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-8deg);
  letter-spacing: -0.02em;
}
.hero-age span { font-size: 18px; }

@media (max-width: 900px) {
  .hero-pager { display: none; }
  .hero-social { display: none; }
  .hero-warning { left: var(--gutter); right: var(--gutter); max-width: none; bottom: 90px; font-size: 10px; }
  .hero-warning strong { font-size: 18px; }
  .hero-age { width: 56px; height: 56px; font-size: 18px; right: 16px; bottom: 16px; }
  .hero-age span { font-size: 14px; }

  .sticker-mascot-l,
  .sticker-sun-r,
  .sticker-hop-tr { display: none; }
  .sticker-bottle { bottom: -2%; right: -10%; width: 200px; }
}

@media (max-width: 600px) {
  .hero-sticker { padding-bottom: 220px; }
  .hero-headline { font-size: 18vw; }
  .hero-scroll-bottom { display: none; }
}

/* ============================================
   DARK SECTIONS (problem, solution, features, CTA, footer)
   ============================================ */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.section-tag {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 600;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  max-width: 24ch;
  margin: 0 auto;
}
.display {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-bottom: 24px;
}

/* Buttons (dark) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease-out), background .25s, color .25s, border-color .25s, box-shadow .25s;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1300;
  box-shadow: 0 8px 24px rgba(212, 168, 87, 0.25);
}
.btn-gold:hover { box-shadow: 0 12px 32px rgba(212, 168, 87, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 34px; font-size: 16px; }

.section-problem {
  background: var(--bg);
  border-top: 4px solid var(--ink);
}
.section-problem .section-title {
  max-width: 22ch;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  color: var(--fg-muted);
  font-weight: 600;
}
.section-solution {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
}
.section-solution .section-title {
  max-width: 22ch;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,168,87,0.12);
  border: 1px solid rgba(212,168,87,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature-card p { color: var(--fg-muted); font-size: 0.95rem; }

.section-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(212,168,87,0.18), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.cta-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.cta-inner h2 { max-width: 22ch; }

/* Page hero (interior pages) */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 60px;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 168, 87, 0.10), transparent 50%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; margin-bottom: 20px; }
.page-hero .lead { margin-top: 8px; }

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .25s;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.product-art {
  height: 220px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-art img {
  max-height: 90%;
  width: auto;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.55));
  transition: transform .5s var(--ease-out);
}
.product-card:hover .product-art img {
  transform: translateY(-6px) rotate(-2deg) scale(1.04);
}
.product-body { padding: 22px 22px 24px; }
.product-body h3 { font-size: 1.25rem; margin-bottom: 8px; color: var(--gold); }
.product-desc { color: var(--fg-muted); font-size: 0.95rem; margin-bottom: 16px; }
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product-meta strong { color: var(--fg-dim); font-weight: 500; margin-right: 6px; }

.cta-strip {
  margin-top: 60px;
  padding: 48px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-elev), var(--bg-soft));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.cta-strip h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }

/* Partner cards */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.partner-card {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: border-color .3s, transform .3s var(--ease-out);
}
.partner-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.partner-num {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(212,168,87,0.18);
}
.partner-card h3 { color: var(--gold); margin-bottom: 10px; }
.partner-card p { color: var(--fg-muted); }

/* Forms */
.section-form { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.form-copy .section-title { text-align: left; margin: 0 0 16px; max-width: 18ch; }
.form-copy .section-tag { text-align: left; }
.form-copy .lead { margin-bottom: 24px; }
.form-points { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.form-points li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: var(--fg-muted);
}
.form-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 1.5px;
  background: var(--gold);
}
.form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: 13px; color: var(--fg-muted); font-weight: 500; }
.field label span { color: var(--fg-dim); font-weight: 400; font-size: 12px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--fg);
  font: inherit;
  font-size: 15px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%23d4a857' d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}
.btn-block { width: 100%; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.is-success { color: #6cd87c; }
.form-status.is-error { color: #ff7a7a; }

@media (max-width: 800px) {
  .form-grid { grid-template-columns: 1fr; gap: 32px; }
  .field-row { grid-template-columns: 1fr; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.contact-card {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform .3s var(--ease-out), border-color .3s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,168,87,0.12);
  border: 1px solid rgba(212,168,87,0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-whatsapp .contact-icon {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.4);
  color: var(--whatsapp);
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-card p { color: var(--fg-muted); margin-bottom: 16px; }
.contact-cta { display: inline-block; font-weight: 600; font-size: 14px; color: var(--gold); }

/* About + timeline */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.about-grid article {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.about-grid h3 { color: var(--gold); margin-bottom: 10px; }
.about-grid p { color: var(--fg-muted); }
.section-timeline { background: var(--bg-soft); }
.timeline {
  position: relative;
  padding-left: 24px;
  border-left: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.timeline li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  position: relative;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -29px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,168,87,0.18);
}
.timeline-year { font-weight: 800; color: var(--gold); font-size: 1.1rem; }
.timeline h4 { margin-bottom: 4px; }
.timeline p { color: var(--fg-muted); font-size: 0.95rem; }

@media (max-width: 600px) {
  .timeline li { grid-template-columns: 1fr; gap: 4px; }
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  transition: transform .3s var(--ease-out);
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* Footer */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding-top: 60px;
  color: var(--fg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
.footer-logo { height: 56px; width: auto; }
.footer-grid p { color: var(--fg-dim); font-size: 14px; margin-top: 12px; }
.footer-grid h4 {
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  color: var(--fg-muted);
  font-size: 14px;
  transition: color .2s;
}
.footer-grid a:hover { color: var(--gold); }
.footer-base {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  color: var(--fg-dim);
  font-size: 12px;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

/* Where to find */
.where-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.where-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.where-cities li {
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.where-cities li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

@media (max-width: 800px) {
  .where-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Animation utility */
[data-anim] { will-change: transform, opacity; }
[data-anim="fade-up"] { opacity: 0; transform: translateY(28px); }
[data-anim="fade-in"] { opacity: 0; }
[data-anim="card"] { opacity: 0; transform: translateY(36px); }
[data-anim-sticker] { opacity: 0; }

.no-js [data-anim] { opacity: 1 !important; transform: none !important; }
.no-js [data-anim-sticker] { opacity: 1 !important; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-anim], [data-anim-sticker] { opacity: 1 !important; transform: none !important; }
  .hero-scroll-bottom { animation: none; }
}

/* ============================================
   PRODUCT SHOWCASE — split sage / cream
   Inspirado no layout Colorado: lado verde com
   nutrientes/ingredientes + produto centralizado
   transbordando + lado claro com info & medidores.
   ============================================ */
/* Registra a CSS variable para GSAP/Browser interpolar cor suavemente */
@property --ps-left-color {
  syntax: '<color>';
  inherits: true;
  initial-value: #cbd5b7;
}

.product-showcase {
  --ps-left-color: #cbd5b7;
  position: relative;
  background: linear-gradient(90deg,
    var(--ps-left-color) 0%,
    var(--ps-left-color) 55%,
    #f5f1d8 55%,
    #f5f1d8 100%);
  color: var(--ink);
  overflow: visible;
  isolation: isolate;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transition: background 0.6s var(--ease-out);
  z-index: 1;
}

.ps-bg-watermark {
  position: absolute;
  top: 8%;
  left: -3%;
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(0,0,0,0.06);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  transform: rotate(-2deg);
}
.ps-bg-watermark-2 {
  top: auto;
  bottom: 6%;
  left: auto;
  right: -2%;
  color: rgba(0,0,0,0.05);
  font-size: clamp(7rem, 16vw, 16rem);
  transform: rotate(1deg);
}

.ps-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 4vw, 60px);
  gap: clamp(20px, 3vw, 40px);
}

/* ===== Lado verde ===== */
.ps-left {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 48px);
  padding-right: 20px;
}
.ps-block-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: #fff;
}
.ps-stats,
.ps-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
}
.ps-ingredients { gap: 28px 24px; }

.ps-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.92);
}
.ps-stat-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: #fff;
  opacity: 0.85;
}
.ps-stat-icon svg { width: 100%; height: 100%; }
.ps-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 2px;
}
.ps-stat-value {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
}

.ps-ing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  min-width: 70px;
  transition: transform .25s var(--ease-out);
}
.ps-ing:hover { transform: translateY(-4px); }
.ps-ing-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  opacity: 0.9;
}
.ps-ing-icon svg { width: 100%; height: 100%; }
.ps-ing span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* ===== Centro — anchor onde a garrafa do hero pousa ===== */
.ps-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.ps-bottle-anchor {
  width: clamp(280px, 30vw, 420px);
  height: clamp(380px, 56vh, 620px);
  position: relative;
  z-index: 2;
  /* invisible — apenas referência de posição/tamanho para a garrafa que voa do hero */
}
.ps-product-shadow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.35), transparent 65%);
  filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

/* Quando a garrafa está em modo showcase (após scroll), ela ganha esta classe */
.sticker-bottle.is-in-showcase {
  z-index: 50;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.35));
}

/* ===== Lado claro ===== */
.ps-right {
  position: relative;
  padding-left: clamp(20px, 3vw, 50px);
  padding-right: clamp(20px, 3vw, 60px);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ps-info { max-width: 460px; }

.ps-product-name {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.ps-product-format {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(26,26,26,0.65);
  margin-bottom: 18px;
}
.ps-product-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(26,26,26,0.7);
  margin-bottom: 28px;
  max-width: 44ch;
}

.ps-sizes { margin-bottom: 24px; }
.ps-sizes-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(26,26,26,0.65);
  margin-bottom: 10px;
}
.ps-sizes-row { display: flex; gap: 10px; flex-wrap: wrap; }
.ps-size {
  appearance: none;
  background: transparent;
  border: 2px solid var(--sage-deep);
  border-radius: 999px;
  padding: 10px 22px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(26,26,26,0.6);
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.ps-size:hover { border-color: var(--ink); color: var(--ink); }
.ps-size.is-active {
  border-color: var(--sage-deep);
  background: transparent;
  color: var(--ink);
  position: relative;
}
.ps-size.is-active::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 2px solid var(--sage-deep);
  border-radius: 999px;
  opacity: 0.5;
}

.ps-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sage-deep);
  color: #fff;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 14px 30px;
  margin-bottom: 32px;
  border-radius: 0;
  transition: background .25s, transform .25s var(--ease-out);
}
.ps-cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.ps-meters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.ps-meter-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(26,26,26,0.6);
  margin-bottom: 8px;
}
.ps-meter-value {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}
.ps-meter-big { font-size: 32px; }
.ps-meter-big small { font-size: 18px; font-weight: 700; }
.ps-meter-icons {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.ps-meter-icons svg {
  width: 18px;
  height: 18px;
  color: rgba(26,26,26,0.18);
}
.ps-meter-icons svg.is-on { color: var(--sage-deep); }

/* Nav row: counter + arrows em fluxo dentro de .ps-right */
.ps-nav {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.ps-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ps-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(26,26,26,0.25);
  background: transparent;
  color: rgba(26,26,26,0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .25s, color .25s, background .25s, transform .25s;
  flex-shrink: 0;
  pointer-events: auto;
}
.ps-arrow svg { width: 20px; height: 20px; pointer-events: none; }
.ps-arrow:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-2px);
}
.ps-arrow:active { transform: translateY(0); }
.ps-arrow-active {
  border-color: var(--ink);
  color: var(--ink);
  position: relative;
}
.ps-arrow-active::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.ps-counter {
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(26,26,26,0.55);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ps-counter [data-ps-current] {
  font-size: 22px;
  color: var(--ink);
}
.ps-counter-sep { color: rgba(26,26,26,0.3); margin: 0 2px; }
.ps-counter [data-ps-total] { color: rgba(26,26,26,0.4); }

/* Crossfade de texto durante carousel */
.ps-info { transition: opacity .35s var(--ease-out); }
.ps-info.is-fading { opacity: 0; }

/* Estados de IBU icons (preenchimento dinâmico) */
.ps-meter-icons svg {
  width: 18px;
  height: 18px;
  color: rgba(26,26,26,0.18);
  transition: color .3s;
}
.ps-meter-icons svg.is-on { color: var(--sage-deep); }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .product-showcase {
    background: var(--ps-left-color);
  }
  .ps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px 100px;
  }
  .ps-bg-watermark { display: none; }
  .ps-left { padding-right: 0; align-items: center; text-align: center; }
  .ps-block-title { text-align: center; }
  .ps-stats, .ps-ingredients { justify-content: center; }
  .ps-center { order: -1; }
  .ps-bottle-anchor { height: clamp(260px, 50vh, 380px); width: clamp(180px, 42vw, 260px); }
  .ps-right {
    background: #f5f1d8;
    margin: 0 -24px -60px;
    padding: 50px 32px 100px;
    border-top: 4px solid var(--ink);
  }
  .ps-info { max-width: none; }
  .ps-meters { grid-template-columns: 1fr 1fr; }
  .ps-nav { margin-top: 24px; }
}

@media (max-width: 520px) {
  .ps-meters { grid-template-columns: 1fr; gap: 16px; }
  .ps-product-name { font-size: 2.2rem; }
}

/* ================================================================
   IDENTIDADE VISUAL SITE INTEIRO — sticker / cream / sage / orange
   Override final que substitui o tema escuro pela linguagem do hero
   ================================================================ */

body { background: var(--cream); color: var(--ink); }

/* Tipografia de seções (todas) */
.section-tag {
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(26,26,26,0.6);
  font-weight: 400;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Gultan Bonte', 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  color: var(--ink);
  letter-spacing: 0.005em;
  line-height: 1.1;
  text-transform: uppercase;
}
.section-title .text-gold { color: var(--orange); }

.display {
  font-family: 'Gultan Bonte', 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 0.005em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--ink);
}
.display .text-gold { color: var(--orange); }
.text-gold { color: var(--orange); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(26,26,26,0.7);
  max-width: 60ch;
  line-height: 1.6;
}

.eyebrow {
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--sage);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  display: inline-block;
  margin-bottom: 24px;
}

/* ===== Botões: tudo sticker ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  white-space: nowrap;
  transition: transform .2s var(--ease-out), background .2s, color .2s;
  cursor: pointer;
  box-shadow: 6px 6px 0 var(--ink);
}
.btn:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.btn:active { transform: translate(6px, 6px); box-shadow: 0 0 0 var(--ink); }

.btn-gold {
  background: var(--orange);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-gold:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}

.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--sage); }

/* Page hero split (parceiro): texto à esquerda + asset show1 à direita */
.page-hero-split { padding-bottom: 80px; }
.page-hero-split .page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  width: 100%;
}
.page-hero-split .page-hero-copy {
  max-width: 640px;
  min-width: 0;
}
.page-hero-split .page-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 280px;
}
.page-hero-split .page-hero-show {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(3px 4px 0 rgba(0,0,0,0.18))
    drop-shadow(0 18px 28px rgba(0,0,0,0.18));
  transform: rotate(-3deg);
  transition: transform .5s var(--ease-out);
}
.page-hero-split .page-hero-show:hover { transform: rotate(0deg) scale(1.03); }

/* Garante que a H1 não force largura demais e empurre o grid */
.page-hero-split .page-hero-copy h1.display { max-width: none; }

@media (max-width: 720px) {
  .page-hero-split .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .page-hero-split .page-hero-art {
    order: -1;
    min-height: 0;
  }
  .page-hero-split .page-hero-show {
    max-width: 280px;
    transform: rotate(-2deg);
    margin: 0 auto;
  }
}

/* Hover verde WhatsApp para qualquer botão linkado para wa.me */
a.btn[href*="wa.me"]:hover,
a.btn-ghost[href*="wa.me"]:hover {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--ink);
}

.btn-sm { padding: 10px 18px; font-size: 10px; box-shadow: 4px 4px 0 var(--ink); }
.btn-sm:hover { box-shadow: 2px 2px 0 var(--ink); }
.btn-lg { padding: 18px 38px; font-size: 13px; }

/* ===== Header: sempre claro ===== */
body .site-header { color: var(--ink); }
body .site-header.is-scrolled {
  background: rgba(228, 222, 177, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--ink);
}

/* ===== Sections: alternar cream / sage com bordas grossas ===== */
.section { background: var(--cream); color: var(--ink); position: relative; }
.section + .section { border-top: 4px solid var(--ink); }

.section-problem {
  background: var(--sage);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}
.section-problem .section-title {
  font-family: 'Gultan Bonte', 'Caveat Brush', system-ui, sans-serif;
  max-width: 22ch;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink);
  font-weight: 400;
}
.section-solution {
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
}
.section-solution .section-title {
  max-width: 24ch;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

/* ===== Cards estilo sticker (todos) ===== */
.feature-card,
.partner-card,
.contact-card,
.product-card,
.about-grid article,
.stat,
.form-card,
.cta-strip {
  background: #f7f1d3;
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  padding: 28px;
  transition: transform .25s var(--ease-out), box-shadow .25s;
  box-shadow: 5px 5px 0 var(--ink);
  color: var(--ink);
}
.feature-card:hover,
.partner-card:hover,
.contact-card:hover,
.about-grid article:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
  border-color: var(--ink);
}

.feature-card h3,
.partner-card h3,
.contact-card h3,
.about-grid h3,
.product-body h3 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.feature-card p,
.partner-card p,
.contact-card p,
.about-grid p {
  color: rgba(26,26,26,0.65);
  font-size: 0.95rem;
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 0;
  background: var(--sage);
  border: 2px solid var(--ink);
  color: var(--ink);
  margin-bottom: 20px;
}
.feature-icon svg { width: 26px; height: 26px; }

/* Section features bg */
.section-features { background: var(--cream); border-bottom: 4px solid var(--ink); }

/* ===== Stats / Where ===== */
.section-stats { background: var(--sage); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.stat { text-align: center; padding: 36px 16px; }
.stat-num {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: var(--orange);
  letter-spacing: 0.01em;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ===== Where to find ===== */
.section-where { background: var(--cream); border-bottom: 4px solid var(--ink); }
.where-cities {
  border: 2.5px solid var(--ink);
  background: #f7f1d3;
  box-shadow: 5px 5px 0 var(--ink);
}
.where-cities li {
  padding: 18px 16px;
  border-bottom: 1.5px solid rgba(26,26,26,0.15);
  border-right: 1.5px solid rgba(26,26,26,0.15);
  font-size: 14px;
  color: var(--ink);
}
.where-cities li:hover { background: var(--sage); color: var(--ink); }
.where-cities li::before { background: var(--orange); }

/* ===== CTA Final ===== */
.section-cta {
  background: var(--orange);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  color: var(--ink);
}
.section-cta .display { color: var(--ink); }
.section-cta .display .text-gold { color: var(--cream); }
.section-cta .btn-gold { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.section-cta .btn-gold:hover { background: var(--cream); color: var(--ink); }
.cta-strip {
  background: var(--sage);
  margin-top: 60px;
  text-align: center;
  padding: 48px;
}
.cta-strip h2 {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  color: var(--ink);
}

/* ===== Page hero (interior) ===== */
.page-hero {
  padding-top: calc(var(--header-h) + 80px);
  padding-bottom: 60px;
  background: var(--cream);
  border-bottom: 4px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  opacity: 0.35;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1.display {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}
.page-hero .lead { color: rgba(26,26,26,0.7); }

/* ===== Products grid ===== */
.section-features + .section,
.products-grid { color: var(--ink); }
.product-card { padding: 0; overflow: hidden; }
.product-art { background: var(--sage); height: 240px; }
.product-art img {
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.25));
}
.product-body { padding: 22px; }
.product-body h3 { color: var(--ink); }
.product-desc { color: rgba(26,26,26,0.7); font-size: 0.95rem; margin-bottom: 16px; }
.product-meta {
  border-top: 1.5px solid rgba(26,26,26,0.18);
  padding-top: 14px;
  font-size: 13px;
  color: var(--ink);
}
.product-meta strong { color: rgba(26,26,26,0.55); }

/* ===== Partner cards ===== */
.partner-num {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: 56px;
  color: var(--orange);
  opacity: 0.9;
  top: 16px;
  right: 24px;
  letter-spacing: 0;
}

/* ===== Contact ===== */
.contact-icon {
  background: var(--sage);
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
}
.contact-whatsapp .contact-icon {
  background: var(--whatsapp);
  border-color: var(--ink);
  color: #fff;
}
.contact-cta { color: var(--orange); font-weight: 700; }

/* ===== Forms ===== */
.section-form { background: var(--cream); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.form-copy .section-title { text-align: left; max-width: 18ch; }
.form-copy .section-tag { text-align: left; }
.form-card {
  background: #f7f1d3;
  border-radius: 14px;
  padding: clamp(28px, 4vw, 44px);
}
.form-points li { color: rgba(26,26,26,0.7); }
.form-points li::before { background: var(--orange); height: 2px; }

.field label { color: var(--ink); font-weight: 700; font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.field label span { color: rgba(26,26,26,0.5); font-weight: 400; text-transform: none; letter-spacing: 0; }
.field input,
.field select,
.field textarea {
  background-color: #fff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  font-size: 15px;
  padding: 14px 16px;
  transition: box-shadow .2s, border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  background-color: #fff;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%231a1a1a' d='M2 4l4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

/* ===== Timeline (sobre) ===== */
.section-timeline { background: var(--sage); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.timeline { border-left: 2.5px solid var(--ink); max-width: 720px; }
.timeline li::before {
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,90,44,0.25);
}
.timeline-year {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--orange);
}
.timeline h4 { color: var(--ink); margin-bottom: 4px; font-size: 1.1rem; }
.timeline p { color: rgba(26,26,26,0.7); font-size: 0.95rem; }

/* ===== Footer escuro (contraste) ===== */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: 64px;
  border-top: 4px solid var(--ink);
}
.footer-grid { border-bottom: 1px solid rgba(228,222,177,0.15); }
.footer-grid p { color: rgba(228,222,177,0.55); }
.footer-grid h4 {
  font-family: 'Bungee', system-ui, sans-serif;
  font-weight: 400;
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.2em;
}
.footer-grid a { color: rgba(228,222,177,0.7); }
.footer-grid a:hover { color: var(--orange); }
.footer-base { color: rgba(228,222,177,0.4); }
.footer-logo { height: 64px; filter: brightness(1.05); }

/* ===== WhatsApp FAB: ring preto ===== */
.whatsapp-fab {
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.whatsapp-fab:hover {
  transform: translate(2px, 2px) scale(1.05);
  box-shadow: 2px 2px 0 var(--ink);
}

/* ===== Header nav: cor ink, sublinhado ink ===== */
.nav-list > li > a:not(.btn) { color: var(--ink); opacity: 0.75; }
.nav-list > li > a:not(.btn):hover,
.nav-list > li > a:not(.btn).is-active { opacity: 1; color: var(--ink); }
.nav-list > li > a:not(.btn)::after { background: var(--ink); height: 2px; bottom: -2px; }
.nav-toggle { color: var(--ink); border-color: var(--ink); }

/* ===== Decorações: grain pattern em seções ===== */
.section-features::before,
.section-stats::before,
.section-form::before,
.section-where::before,
.section-timeline::before,
.section-problem::before,
.section-solution::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.section-features > .container,
.section-stats > .container,
.section-form > .container,
.section-where > .container,
.section-timeline > .container,
.section-problem > .container,
.section-solution > .container {
  position: relative;
  z-index: 1;
}

/* ===== Watermark de seção ===== */
.section-features::after,
.section-cta::after {
  content: 'INSANA';
  position: absolute;
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(0,0,0,0.045);
  bottom: -2%;
  left: -2%;
  pointer-events: none;
  letter-spacing: -0.02em;
  z-index: 0;
  transform: rotate(-3deg);
}
.section-cta::after { color: rgba(255,255,255,0.12); bottom: -8%; }

/* Mobile */
@media (max-width: 700px) {
  .feature-card, .partner-card, .contact-card, .about-grid article, .form-card, .stat, .cta-strip {
    box-shadow: 4px 4px 0 var(--ink);
  }
  .btn { box-shadow: 4px 4px 0 var(--ink); padding: 14px 24px; }
  .btn-lg { padding: 16px 30px; }
}

/* ============================================
   FIX: stroke-linecap/linejoin round em todos os ícones de linha
   (sem isso, o padrão `M.. h.01` para pontos não renderiza)
   ============================================ */
.feature-icon svg,
.contact-icon svg,
.ps-stat-icon svg,
.ps-ing-icon svg,
.ps-side-icon svg,
.ps-arrow svg {
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
}

/* ============================================
   PROBLEMA × SOLUÇÃO — split sticker
   Lado esquerdo: cream com texto ink (problema)
   Lado direito: laranja com texto ink (solução)
   ============================================ */
.ps-problem-solution {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--cream);
  overflow: hidden;
  isolation: isolate;
  min-height: 70vh;
}

.ps-problem-solution::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}

.ps-side {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 110px) clamp(28px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
}

/* Lado esquerdo (problema) */
.ps-side-problem {
  background: var(--cream);
  color: var(--ink);
  margin-left: 0;
}

/* Lado direito (solução) — laranja vibrante */
.ps-side-solution {
  background: var(--orange);
  color: var(--ink);
  margin-right: 0;
  position: relative;
}
.ps-side-solution::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

/* Stamp / eyebrow numerado */
.ps-side-stamp {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 0;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.ps-side-stamp-light {
  background: var(--cream);
  color: var(--ink);
}

/* Ícone de seção */
.ps-side-icon {
  width: 64px;
  height: 64px;
  border: 2.5px solid var(--ink);
  background: var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  margin-top: 8px;
}
.ps-side-icon svg { width: 30px; height: 30px; }
.ps-side-icon-light {
  background: var(--cream);
}

/* Título */
.ps-side-title {
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.ps-side-title em {
  font-style: normal;
  background: var(--ink);
  color: var(--cream);
  padding: 0 0.18em;
  display: inline-block;
  transform: rotate(-2deg);
  margin: 0 0.05em;
}

.ps-side-mark {
  background: var(--orange);
  color: var(--ink);
  padding: 0 0.15em;
  display: inline-block;
  transform: rotate(-1.5deg);
  border: 2px solid var(--ink);
}
.ps-side-mark-light {
  background: var(--cream);
  color: var(--ink);
  padding: 0 0.15em;
  display: inline-block;
  transform: rotate(-1.5deg);
  border: 2px solid var(--ink);
}

/* Subtexto */
.ps-side-sub {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: rgba(26,26,26,0.72);
  line-height: 1.6;
  max-width: 44ch;
}
.ps-side-sub-light { color: rgba(26,26,26,0.78); }

/* Tags pains / gains */
.ps-side-pains {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}
.ps-side-pains span {
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  background: var(--sage);
  color: var(--ink);
}
.ps-side-pains-light span {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Divider central com selo VS */
.ps-divider {
  position: relative;
  width: 4px;
  background: var(--ink);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-divider-stamp {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Bungee', system-ui, sans-serif;
  font-size: 18px;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
  outline: 3px solid var(--ink);
  box-shadow: 0 0 0 6px var(--cream);
}

/* Watermark */
.ps-ps-watermark {
  position: absolute;
  font-family: 'Caveat Brush', system-ui, sans-serif;
  font-size: clamp(8rem, 18vw, 18rem);
  color: rgba(0,0,0,0.05);
  bottom: -8%;
  right: -3%;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.02em;
  transform: rotate(-3deg);
}

/* Mobile */
@media (max-width: 900px) {
  .ps-problem-solution {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr;
  }
  .ps-side { padding: 60px 28px; max-width: none; }
  .ps-divider {
    width: 100%;
    height: 4px;
    flex-direction: row;
  }
  .ps-divider-stamp {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
  .ps-ps-watermark { font-size: 8rem; bottom: auto; top: 30%; }
  .ps-side-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .ps-side-stamp { font-size: 10px; box-shadow: 3px 3px 0 var(--ink); }
}

/* ============================================
   INTRO LOADER — boneco surfando o lúpulo
   ============================================ */
.intro-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  will-change: opacity;
}
.intro-stage {
  position: relative;
  width: clamp(220px, 38vw, 420px);
  aspect-ratio: 1 / 1;
  will-change: transform;
}
.intro-hop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  will-change: transform;
}
html.is-loading,
html.is-loading body { overflow: hidden; }
