/* =====================================================================
   SABOARIA DA CA — Landing v3
   "A arte de perfumar e cuidar"
   ---------------------------------------------------------------------
   Sumário:
   00. Design Tokens (paleta, tipografia, espaços, motion)
   01. Reset + Base
   02. Typography Utilities
   03. Grain + Ruídos decorativos
   04. Buttons + Pills
   05. Announcement Bar
   06. Navbar + Scroll progress + Drawer mobile
   07. Hero
   08. Marquee
   09. Fragrâncias (cards)
   10. Bento "Na sua casa"
   11. Kits (espresso)
   12. Calculadora de rendimento
   13. Ateliê (storytelling)
   14. Processo — 4 passos
   15. Benefícios
   16. Depoimentos (masonry)
   17. FAQ accordion
   18. Instagram grid
   19. Gift Finder quiz
   20. Imprensa / Selos
   21. Newsletter + Lead magnet
   22. Footer
   23. Floating WhatsApp + Scroll-to-top
   24. Animations + Reveals
   25. Reduced motion + Focus + A11y
   26. Responsive breakpoints
   ===================================================================== */

/* =====================================================================
   00. DESIGN TOKENS
   ===================================================================== */
:root{
  /* Paleta oficial */
  --verde:        #2F7A6A;
  --verde-deep:   #1E5A4C;
  --verde-folha:  #5B8A6E;
  --verde-soft:   #8FB5A4;
  --dourado:      #C9995A;
  --dourado-deep: #A37839;
  --dourado-soft: #E8CFA8;
  --paper:        #FAF5ED;
  --linen:        #F4ECDD;
  --linen-deep:   #ECE0CC;
  --espresso:     #2A2015;
  --espresso-soft:#3A2E1F;
  --ink:          #3D3024;
  --ink-soft:     #5C4A3A;
  --muted:        #8B7A66;
  --white:        #FFFFFF;
  --black:        #000000;

  /* Semânticos */
  --bg:            var(--paper);
  --surface:       var(--white);
  --surface-2:     var(--linen);
  --text:          var(--ink);
  --text-soft:     var(--ink-soft);
  --text-muted:    var(--muted);
  --accent:        var(--verde);
  --accent-gold:   var(--dourado);
  --border:        color-mix(in srgb, var(--ink) 14%, transparent);
  --border-soft:   color-mix(in srgb, var(--ink) 8%, transparent);

  /* Tipografia */
  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Outfit', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Scale */
  --fs-xs:   0.75rem;       /* 12 */
  --fs-sm:   0.875rem;      /* 14 */
  --fs-base: 1rem;          /* 16 */
  --fs-md:   1.125rem;      /* 18 */
  --fs-lg:   1.375rem;      /* 22 */
  --fs-xl:   clamp(1.5rem, 2.2vw, 1.875rem);
  --fs-h3:   clamp(1.75rem, 3vw, 2.5rem);
  --fs-h2:   clamp(2.25rem, 5vw, 4rem);
  --fs-h1:   clamp(2.75rem, 7vw, 6.5rem);
  --fs-display: clamp(4rem, 12vw, 10rem);

  /* Espaços */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(42,32,21,0.05), 0 2px 6px rgba(42,32,21,0.04);
  --sh-2: 0 4px 12px rgba(42,32,21,0.06), 0 10px 28px rgba(42,32,21,0.06);
  --sh-3: 0 12px 32px rgba(42,32,21,0.09), 0 30px 60px rgba(42,32,21,0.08);
  --sh-gold: 0 12px 28px rgba(201,153,90,0.22);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in:  cubic-bezier(0.55, 0.06, 0.68, 0.19);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-1: 160ms;
  --dur-2: 260ms;
  --dur-3: 400ms;
  --dur-4: 700ms;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --nav-h: 72px;

  /* z-index */
  --z-grain: 1;
  --z-nav: 50;
  --z-drawer: 60;
  --z-float: 70;
  --z-toast: 80;
}

/* =====================================================================
   01. RESET + BASE
   ===================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,svg,video{ display:block; max-width:100%; height:auto; }
img{ object-fit:cover; }

button{
  font: inherit; color: inherit; background: none; border: 0; padding: 0;
  cursor: pointer;
}

a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--accent); }

::selection{ background: color-mix(in srgb, var(--dourado) 50%, transparent); color: var(--espresso); }

/* Skip link */
.skip-link{
  position: absolute; top: -40px; left: 12px; background: var(--espresso);
  color: var(--paper); padding: 8px 14px; border-radius: 6px; z-index: 200;
  font-size: var(--fs-sm); transition: top var(--dur-2) var(--ease-out);
}
.skip-link:focus{ top: 12px; }

/* =====================================================================
   02. TYPOGRAPHY UTILITIES
   ===================================================================== */
h1,h2,h3,h4,h5,h6{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--espresso);
  margin: 0;
  font-variation-settings: "opsz" 100, "SOFT" 50;
}
h1 em, h2 em, h3 em{
  font-style: italic;
  font-weight: 400;
  color: var(--dourado-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

p{ margin: 0 0 1em; }
.lead{ font-size: var(--fs-lg); line-height: 1.55; color: var(--text-soft); }
.italic{ font-style: italic; }
.serif{ font-family: var(--font-display); }

.eyebrow{
  display:inline-flex; align-items:center; gap: var(--s-2);
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--verde-deep); font-weight: 500;
}
.eyebrow--gold{ color: var(--dourado-deep); }
.eyebrow::before{
  content:""; width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}

.section{ padding-block: clamp(72px, 10vw, 144px); position: relative; }
.section__head{ max-width: 820px; margin-bottom: var(--s-8); }
.section__head--center{ text-align: center; margin-inline: auto; }
.section__title{
  font-size: var(--fs-h2); margin-top: var(--s-4); margin-bottom: var(--s-4);
}
.section__sub{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: var(--fs-lg); color: var(--text-soft); max-width: 60ch;
}

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

/* =====================================================================
   03. GRAIN + RUÍDOS
   ===================================================================== */
.grain{
  position: fixed; inset: 0; pointer-events: none; z-index: var(--z-grain);
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.12 0 0 0 0 0.08 0 0 0 0.8 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* =====================================================================
   04. BUTTONS + PILLS
   ===================================================================== */
.btn{
  --_bg: var(--verde);
  --_fg: var(--paper);
  --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-3);
  padding: 14px 26px;
  min-height: 48px;
  border-radius: var(--r-pill);
  background: var(--_bg); color: var(--_fg); border: 1.5px solid var(--_bd);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform var(--dur-2) var(--ease-out),
              background-color var(--dur-2) var(--ease-out),
              box-shadow var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out);
  box-shadow: var(--sh-1);
  isolation: isolate;
}
.btn svg{ width: 18px; height: 18px; flex: 0 0 auto; transition: transform var(--dur-2) var(--ease-out); }
.btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  color: var(--_fg);
}
.btn:hover svg{ transform: translateX(4px); }
.btn:active{ transform: translateY(0); }
.btn:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--dourado) 70%, transparent);
  outline-offset: 3px;
}

.btn--primary{ --_bg: var(--verde); --_fg: var(--paper); }
.btn--primary:hover{ --_bg: var(--verde-deep); }

.btn--gold{ --_bg: var(--dourado); --_fg: var(--espresso); box-shadow: var(--sh-gold); }
.btn--gold:hover{ --_bg: var(--dourado-deep); --_fg: var(--paper); }

.btn--ghost{
  --_bg: transparent; --_fg: var(--espresso); --_bd: var(--ink-soft);
}
.btn--ghost:hover{ --_bg: var(--espresso); --_fg: var(--paper); --_bd: var(--espresso); }

.btn--outline-gold{
  --_bg: transparent; --_fg: var(--dourado-deep); --_bd: var(--dourado);
}
.btn--outline-gold:hover{ --_bg: var(--dourado); --_fg: var(--espresso); }

.btn--outline-cream{
  --_bg: transparent; --_fg: var(--paper); --_bd: rgba(250,245,237,0.5);
}
.btn--outline-cream:hover{ --_bg: var(--paper); --_fg: var(--espresso); --_bd: var(--paper); }

.btn--block{ display: flex; width: 100%; }
.btn--sm{ min-height: 40px; padding: 10px 18px; font-size: 0.85rem; }

/* Magnetic effect base (JS apoia) */
.btn[data-magnetic]{ will-change: transform; }

/* Pill (navbar WA) */
.pill{
  display:inline-flex; align-items:center; gap: var(--s-2);
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--verde); color: var(--paper);
  font-size: 0.85rem; font-weight: 500;
  transition: background-color var(--dur-2) var(--ease-out), transform var(--dur-2) var(--ease-out);
}
.pill:hover{ background: var(--verde-deep); color: var(--paper); transform: translateY(-1px); }
.pill svg{ width: 16px; height: 16px; }

/* =====================================================================
   05. ANNOUNCEMENT BAR
   ===================================================================== */
.announce{
  background: var(--espresso); color: var(--dourado-soft);
  font-size: var(--fs-xs); letter-spacing: 0.15em;
  text-transform: uppercase;
  overflow: hidden; padding-block: 10px;
  border-bottom: 1px solid rgba(201,153,90,0.15);
}
.announce__track{
  display: flex; gap: var(--s-7); white-space: nowrap;
  animation: marquee-x 38s linear infinite;
}
.announce__track span{ display: inline-flex; align-items: center; gap: var(--s-3); }
.announce__track .dot{ color: var(--dourado); opacity: 0.7; }

/* =====================================================================
   06. NAVBAR + SCROLL PROGRESS + DRAWER
   ===================================================================== */
.nav{
  position: sticky; top: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav__progress{
  position: absolute; left: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--dourado), var(--verde));
  width: var(--progress, 0%);
  transition: width 80ms linear;
}
.nav__inner{
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--container); margin-inline: auto;
  padding: 14px var(--gutter);
  min-height: var(--nav-h);
  gap: var(--s-4);
}
.nav__menu{
  display: flex; gap: clamp(16px, 2vw, 32px); justify-self: center;
  font-size: 0.88rem; letter-spacing: 0.04em;
}
.nav__menu a{
  position: relative; padding: 8px 4px; color: var(--ink);
  transition: color var(--dur-2) var(--ease-out);
}
.nav__menu a::after{
  content:""; position: absolute; left: 4px; right: 4px; bottom: 2px;
  height: 1px; background: var(--dourado);
  transform: scaleX(0); transform-origin: left center;
  transition: transform var(--dur-2) var(--ease-out);
}
.nav__menu a:hover{ color: var(--verde-deep); }
.nav__menu a:hover::after{ transform: scaleX(1); }

.nav__logo{
  display: inline-flex; flex-direction: column; align-items: flex-start;
  line-height: 0.9; justify-self: start;
}
.nav__logo-upper{
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.28em; color: var(--verde);
}
.nav__logo-cursive{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.7rem; color: var(--dourado); margin-top: -4px;
}

.nav__right{ display:flex; align-items:center; gap: var(--s-3); justify-self: end; }

.nav__burger{
  display: none; width: 44px; height: 44px; border-radius: var(--r-pill);
  border: 1px solid var(--border); background: transparent;
  align-items: center; justify-content: center;
}
.nav__burger span{
  display:block; width: 18px; height: 1.5px; background: var(--espresso);
  position: relative; transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1);
}
.nav__burger span::before,.nav__burger span::after{
  content:""; position: absolute; left: 0; width: 18px; height: 1.5px; background: var(--espresso);
  transition: transform var(--dur-2) var(--ease-out), opacity var(--dur-1);
}
.nav__burger span::before{ top: -6px; }
.nav__burger span::after{ top: 6px; }
.nav__burger[aria-expanded="true"] span{ background: transparent; }
.nav__burger[aria-expanded="true"] span::before{ transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after{ transform: translateY(-6px) rotate(-45deg); }

/* Drawer mobile */
.drawer{
  position: fixed; inset: 0; z-index: var(--z-drawer);
  background: var(--paper);
  display: flex; flex-direction: column; padding: var(--s-7) var(--gutter);
  transform: translateX(100%); transition: transform var(--dur-3) var(--ease-out);
  overflow-y: auto;
}
.drawer[data-open="true"]{ transform: translateX(0); }
.drawer__close{
  position: absolute; top: var(--s-4); right: var(--s-4);
  width: 44px; height: 44px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.drawer__menu{ margin-top: var(--s-8); display: flex; flex-direction: column; gap: var(--s-4); }
.drawer__menu a{
  font-family: var(--font-display); font-size: 2rem; color: var(--espresso);
  border-bottom: 1px solid var(--border-soft); padding-block: var(--s-4);
}
.drawer__menu a em{ font-style: italic; color: var(--dourado-deep); }
.drawer__footer{ margin-top: auto; padding-top: var(--s-6); display:flex; flex-direction:column; gap: var(--s-3); }

/* =====================================================================
   07. HERO
   ===================================================================== */
.hero{
  position: relative;
  min-height: calc(100dvh - var(--nav-h));
  padding-block: clamp(48px, 8vw, 96px) clamp(48px, 8vw, 96px);
  overflow: hidden;
}
.hero::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 88% 14%, color-mix(in srgb, var(--verde) 12%, transparent), transparent 70%),
    radial-gradient(700px 500px at -8% 80%, color-mix(in srgb, var(--dourado) 18%, transparent), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, var(--linen) 100%);
  z-index: -2;
}
.hero__grid{
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 5vw, 80px); align-items: center;
  max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter);
  position: relative;
}
.hero__side-text{
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 0.68rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  display: none;
}

.hero__copy{ position: relative; z-index: 2; }
.hero__title{
  font-size: var(--fs-h1); margin-top: var(--s-5); margin-bottom: var(--s-5);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  letter-spacing: -0.02em;
}
.hero__title em{
  font-style: italic; color: var(--dourado-deep); font-weight: 400;
}
.hero__lead{
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem); line-height: 1.45;
  color: var(--text-soft); max-width: 50ch;
}
.hero__cta{
  display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6);
}
.hero__meta{
  display: grid; grid-template-columns: repeat(3, auto);
  gap: var(--s-7); margin-top: var(--s-7); align-items: baseline;
  padding-top: var(--s-5); border-top: 1px solid var(--border-soft);
  max-width: 460px;
}
.hero__meta strong{
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 2.2rem; color: var(--verde-deep); line-height: 1;
  font-variation-settings: "opsz" 144;
}
.hero__meta span{
  display: block; font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); margin-top: 6px;
}

.hero__visual{
  position: relative; padding: 24px;
}
.hero__photo-frame{
  position: relative; aspect-ratio: 4 / 5; border-radius: 2px;
  overflow: hidden; box-shadow: var(--sh-3);
}
.hero__photo{
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.hero:hover .hero__photo{ transform: scale(1.05); }
.hero__label{
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-display); font-style: italic;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  color: var(--dourado-deep); padding: 6px 14px;
  font-size: 0.82rem; backdrop-filter: blur(6px);
  border: 1px solid rgba(201,153,90,0.25); z-index: 2;
}
.hero__corner{
  position: absolute; width: 26px; height: 26px; pointer-events: none; z-index: 2;
  border-color: var(--dourado); border-style: solid; border-width: 0;
}
.hero__corner--tl{ top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.hero__corner--tr{ top: 10px; right: 10px; border-top-width: 2px; border-right-width: 2px; }
.hero__corner--bl{ bottom: 10px; left: 10px; border-bottom-width: 2px; border-left-width: 2px; }
.hero__corner--br{ bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }
.hero__caption{
  margin-top: var(--s-3);
  display: flex; justify-content: space-between;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted);
}

.hero__scroll{
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line{
  width: 1px; height: 36px; background: linear-gradient(to bottom, transparent, var(--dourado), transparent);
  animation: scroll-line 2.4s var(--ease-out) infinite;
}
@keyframes scroll-line{
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  60%  { transform: scaleY(1); transform-origin: top; }
  61%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* =====================================================================
   08. MARQUEE
   ===================================================================== */
.marquee{
  padding-block: var(--s-6);
  border-block: 1px solid var(--border-soft);
  background: var(--linen);
  overflow: hidden;
}
.marquee__row{
  display: flex; gap: var(--s-8); white-space: nowrap;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.8rem); color: var(--espresso);
  animation: marquee-x 45s linear infinite;
}
.marquee__row--reverse{ animation-direction: reverse; animation-duration: 52s; margin-top: 12px; color: var(--dourado-deep); }
.marquee__row span{ display: inline-flex; align-items: center; gap: var(--s-5); }
.marquee__row .leaf{ color: var(--dourado); font-style: normal; }

@keyframes marquee-x{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* =====================================================================
   09. FRAGRÂNCIAS
   ===================================================================== */
.frag-grid{
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.frag{
  --_bg: var(--surface);
  background: var(--_bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
}
.frag:hover{
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: var(--dourado-soft);
}
.frag--linen{ --_bg: var(--linen); }
.frag--cream{ --_bg: color-mix(in srgb, var(--linen) 60%, var(--paper)); }
.frag__num{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.95rem; color: var(--dourado-deep); letter-spacing: 0.06em;
  margin-bottom: var(--s-3);
}
.frag__swatch{
  width: 34px; height: 34px; border-radius: 4px; margin-bottom: var(--s-3);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 0 0 3px var(--_bg), inset 0 0 0 4px rgba(0,0,0,0.05);
}
.frag__photo-wrap{
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-md);
  margin-bottom: var(--s-5);
  background: var(--linen-deep);
}
.frag__photo-wrap img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.frag:hover .frag__photo-wrap img{ transform: scale(1.06); }
.frag__name{
  font-family: var(--font-display); font-weight: 500; font-size: 2.2rem;
  line-height: 1; margin-bottom: var(--s-2);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.frag__family{
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--s-3);
}
.frag__desc{
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.05rem; line-height: 1.5; color: var(--text-soft);
  margin-bottom: var(--s-5); flex: 1;
}
.frag__prices{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-bottom: var(--s-4);
  background: var(--border-soft);
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border-soft);
}
.frag__prices > div{
  background: var(--_bg); padding: 10px 12px;
  display: flex; flex-direction: column;
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}
.frag__prices strong{
  font-family: var(--font-display); font-weight: 500;
  font-size: 1rem; color: var(--espresso);
  font-variation-settings: "opsz" 36;
  letter-spacing: 0; text-transform: none; margin-top: 2px;
}

/* =====================================================================
   10. BENTO "NA SUA CASA"
   ===================================================================== */
.bento{ background: var(--paper); }
.bento__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: var(--s-4);
  grid-template-areas:
    "a a b c"
    "a a d c"
    "e f d g";
}
.bento__cell{
  position: relative;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--linen);
  padding: var(--s-5);
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform var(--dur-3) var(--ease-out);
  border: 1px solid var(--border-soft);
}
.bento__cell:hover{ transform: translateY(-4px); }
.bento__cell--a{ grid-area: a; padding: 0; }
.bento__cell--b{ grid-area: b; background: var(--verde); color: var(--paper); }
.bento__cell--c{ grid-area: c; padding: 0; }
.bento__cell--d{ grid-area: d; background: var(--linen-deep); justify-content: center; text-align: center; }
.bento__cell--e{ grid-area: e; background: var(--dourado); color: var(--espresso); }
.bento__cell--f{ grid-area: f; background: var(--espresso); color: var(--paper); }
.bento__cell--g{ grid-area: g; background: var(--surface); }

.bento__img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento__quote{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem); line-height: 1.4;
}
.bento__quote cite{
  display: block; margin-top: var(--s-3);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-body); font-style: normal; opacity: 0.8;
}
.bento__fact{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 5vw, 4.5rem); line-height: 0.95;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--espresso);
}
.bento__fact em{ font-style: italic; color: var(--dourado-deep); }
.bento__fact small{
  display: block; font-family: var(--font-body); font-size: 0.75rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  margin-top: var(--s-3);
}
.bento__cta{
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: var(--s-2);
  align-self: flex-start;
}
.bento__cta svg{ width: 14px; height: 14px; transition: transform var(--dur-2) var(--ease-out); }
.bento__cta:hover svg{ transform: translateX(3px); }
.bento__ig{ color: var(--espresso); }
.bento__ig small{
  display: block; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dourado-deep); margin-bottom: var(--s-2);
}

/* =====================================================================
   11. KITS (ESPRESSO)
   ===================================================================== */
.kits{
  background: var(--espresso);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.kits::before{
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 15% 10%, color-mix(in srgb, var(--dourado) 14%, transparent), transparent 60%),
    radial-gradient(600px 400px at 85% 90%, color-mix(in srgb, var(--verde) 20%, transparent), transparent 60%);
  pointer-events: none;
}
.kits .section__title{ color: var(--paper); }
.kits .section__sub{ color: color-mix(in srgb, var(--paper) 80%, transparent); }
.kits .eyebrow{ color: var(--dourado); }

.kits__leaf{
  position: absolute; width: 180px; height: 180px; opacity: 0.35;
  color: var(--dourado); animation: float-slow 14s ease-in-out infinite;
}
.kits__leaf--tl{ top: 60px; left: 4%; }
.kits__leaf--br{ right: 4%; bottom: 60px; animation-delay: -7s; }

@keyframes float-slow{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%    { transform: translateY(-18px) rotate(4deg); }
}

.kits__grid{
  display: grid; grid-template-columns: 1.618fr 1fr;
  gap: var(--s-5);
  position: relative; z-index: 2;
}
.kit{
  background: color-mix(in srgb, var(--paper) 6%, var(--espresso));
  border: 1px solid rgba(250,245,237,0.08);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform var(--dur-3) var(--ease-out),
              border-color var(--dur-2) var(--ease-out);
}
.kit:hover{ transform: translateY(-4px); border-color: var(--dourado); }

.kit--hero{
  grid-row: span 2; padding: var(--s-6);
  background: linear-gradient(180deg, rgba(201,153,90,0.08), rgba(47,122,106,0.06));
}
.kit__tag{
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dourado); color: var(--espresso);
  padding: 6px 14px; border-radius: var(--r-pill);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500; align-self: flex-start;
  position: relative;
}
.kit__tag::before{
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--espresso); animation: pulse-dot 1.6s var(--ease-out) infinite;
}
@keyframes pulse-dot{
  0%,100%{ opacity: 1; transform: scale(1); }
  50%    { opacity: 0.3; transform: scale(1.4); }
}
.kit__tag--soft{ background: rgba(201,153,90,0.15); color: var(--dourado); }
.kit__tag--soft::before{ background: var(--dourado); }

.kit__photo-wrap{
  aspect-ratio: 5 / 4; overflow: hidden; border-radius: var(--r-md);
  margin-block: var(--s-4); flex: 1;
}
.kit__photo-wrap--sm{ aspect-ratio: 4 / 3; flex: 0 0 auto; }
.kit__photo-wrap img{
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.kit:hover .kit__photo-wrap img{ transform: scale(1.05); }

.kit__num{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.95rem; color: var(--dourado); letter-spacing: 0.05em;
}
.kit__name{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 2.8rem); line-height: 1;
  color: var(--paper); margin-block: var(--s-3);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.kit__name em{ font-style: italic; color: var(--dourado); }
.kit__name--sm{ font-size: clamp(1.4rem, 2.2vw, 1.8rem); }

.kit__desc{
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1rem; line-height: 1.55;
  color: color-mix(in srgb, var(--paper) 78%, transparent);
  margin-bottom: var(--s-4);
}
.kit__price{
  display: flex; align-items: baseline; flex-wrap: wrap; gap: var(--s-3);
  margin-bottom: var(--s-4);
}
.kit__price-old{
  text-decoration: line-through; color: color-mix(in srgb, var(--paper) 50%, transparent);
  font-size: 0.95rem;
}
.kit__price-new{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--dourado);
  line-height: 1; font-variation-settings: "opsz" 144;
}
.kit__save{
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--verde-soft); padding: 4px 10px;
  border: 1px solid rgba(143,181,164,0.4); border-radius: var(--r-pill);
}

/* =====================================================================
   12. CALCULADORA DE RENDIMENTO
   ===================================================================== */
.calc{
  background: var(--linen);
  position: relative; overflow: hidden;
}
.calc__wrap{
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 5vw, 80px); align-items: start;
  max-width: 1080px; margin-inline: auto;
}
.calc__controls{
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 40px);
  box-shadow: var(--sh-2);
}
.calc__label{
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--verde-deep); font-weight: 500;
  display: block; margin-bottom: var(--s-3);
}
.calc__group + .calc__group{ margin-top: var(--s-6); }
.calc__chips{
  display: flex; flex-wrap: wrap; gap: var(--s-2);
}
.calc__chip{
  padding: 10px 18px; border-radius: var(--r-pill);
  background: var(--linen); border: 1px solid var(--border-soft);
  color: var(--ink-soft);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; min-height: 44px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              transform var(--dur-2) var(--ease-out);
}
.calc__chip:hover{ transform: translateY(-1px); border-color: var(--verde); }
.calc__chip[aria-pressed="true"]{
  background: var(--verde); color: var(--paper); border-color: var(--verde);
}

.calc__slider-wrap{
  display: flex; flex-direction: column; gap: var(--s-3);
}
.calc__slider{
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; background: var(--border);
  border-radius: var(--r-pill); outline: none;
  cursor: pointer;
}
.calc__slider::-webkit-slider-thumb{
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--dourado); border: 3px solid var(--paper);
  box-shadow: var(--sh-gold); cursor: grab;
  transition: transform var(--dur-1) var(--ease-out);
}
.calc__slider::-webkit-slider-thumb:hover{ transform: scale(1.15); }
.calc__slider::-moz-range-thumb{
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--dourado); border: 3px solid var(--paper);
  box-shadow: var(--sh-gold); cursor: grab;
}
.calc__slider-value{
  font-family: var(--font-display); font-weight: 400;
  font-size: 2.6rem; color: var(--espresso); line-height: 1;
  font-variation-settings: "opsz" 144;
}
.calc__slider-value em{ font-style: italic; color: var(--dourado-deep); font-size: 1.2rem; }

.calc__output{
  padding: clamp(24px, 3vw, 48px);
  border-left: 2px solid var(--dourado);
}
.calc__output p{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.15;
  color: var(--espresso); font-variation-settings: "opsz" 144, "SOFT" 80;
  margin-bottom: var(--s-5);
}
.calc__output em{ font-style: italic; color: var(--dourado-deep); }
.calc__output strong{ font-weight: 500; }
.calc__duration{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.5rem, 8vw, 6rem); color: var(--verde-deep);
  line-height: 0.9; display: block; margin-block: var(--s-4);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  transition: color var(--dur-2) var(--ease-out);
}
.calc__unit{
  font-family: var(--font-display); font-style: italic;
  font-size: 1.2rem; color: var(--muted);
}

/* =====================================================================
   13. ATELIÊ
   ===================================================================== */
.atelie{
  background: linear-gradient(180deg, var(--linen), var(--paper));
  position: relative; overflow: hidden;
}
.atelie__leaf{
  position: absolute; width: 200px; height: 200px; opacity: 0.5;
  color: var(--verde-folha); pointer-events: none;
}
.atelie__leaf--tl{ top: 20px; left: 20px; }
.atelie__leaf--br{ bottom: 20px; right: 20px; transform: rotate(180deg); }

.atelie__grid{
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 5vw, 96px); align-items: center;
  max-width: 1200px; margin-inline: auto;
}
.atelie__photo{
  position: relative; aspect-ratio: 4 / 5;
  padding: 14px; background: var(--paper);
  box-shadow: var(--sh-3);
}
.atelie__photo img{ width: 100%; height: 100%; object-fit: cover; }
.atelie__photo::before{
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(201,153,90,0.35); pointer-events: none; z-index: 2;
}
.atelie__body h2{
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: var(--s-5);
}
.atelie__body p{
  font-size: var(--fs-md); color: var(--text-soft); max-width: 52ch;
}
.atelie__sign{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.3rem; color: var(--dourado-deep);
  display: inline-block; margin-top: var(--s-4);
  font-variation-settings: "opsz" 144;
}
.atelie__link{
  display: inline-flex; align-items: center; gap: var(--s-2);
  margin-top: var(--s-5); font-weight: 500;
  border-bottom: 1px solid var(--dourado); padding-bottom: 3px;
  transition: color var(--dur-2) var(--ease-out);
}
.atelie__link svg{ width: 14px; transition: transform var(--dur-2) var(--ease-out); }
.atelie__link:hover svg{ transform: translateX(4px); }

/* =====================================================================
   14. PROCESSO 4 PASSOS
   ===================================================================== */
.process{ background: var(--paper); }
.process__timeline{
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5); position: relative;
}
.process__timeline::before{
  content: ""; position: absolute;
  top: 32px; left: 8%; right: 8%; height: 1px;
  background-image: linear-gradient(to right, var(--dourado) 50%, transparent 50%);
  background-size: 10px 1px; background-repeat: repeat-x;
  opacity: 0.6; z-index: 0;
}
.process__step{
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: var(--s-3); padding-right: var(--s-4);
}
.process__num{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 4rem; color: var(--dourado-deep); line-height: 0.9;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  background: var(--paper); padding-right: var(--s-3);
}
.process__icon{
  width: 40px; height: 40px; color: var(--verde); margin-top: -8px;
}
.process__step h3{
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--espresso);
}
.process__step p{
  font-size: 0.95rem; color: var(--text-soft); line-height: 1.55;
  max-width: 28ch;
}

/* =====================================================================
   15. BENEFÍCIOS
   ===================================================================== */
.benefits{ background: var(--linen); }
.benefits__grid{
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4);
}
.benefit{
  background: var(--surface); padding: var(--s-5);
  border-radius: var(--r-lg); border: 1px solid var(--border-soft);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: background-color var(--dur-2) var(--ease-out),
              transform var(--dur-3) var(--ease-out),
              box-shadow var(--dur-3) var(--ease-out);
}
.benefit:hover{ transform: translateY(-4px); box-shadow: var(--sh-2); }
.benefit__icon{
  width: 48px; height: 48px; color: var(--verde);
  padding: 10px; border: 1px solid var(--border-soft); border-radius: var(--r-md);
  transition: background-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out);
}
.benefit:hover .benefit__icon{ background: var(--verde); color: var(--paper); }
.benefit h3{
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  color: var(--espresso); line-height: 1.15;
}
.benefit p{ font-size: 0.9rem; color: var(--text-soft); line-height: 1.5; }

/* =====================================================================
   16. DEPOIMENTOS (MASONRY)
   ===================================================================== */
.testimonials{ background: var(--paper); }
.testi__grid{
  columns: 3;
  column-gap: var(--s-4);
}
.testi{
  break-inside: avoid;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--r-lg); padding: var(--s-5);
  margin-bottom: var(--s-4);
  position: relative;
  transition: transform var(--dur-3) var(--ease-out), box-shadow var(--dur-3) var(--ease-out);
}
.testi:hover{ transform: translateY(-4px); box-shadow: var(--sh-2); }
.testi__mark{
  font-family: var(--font-display); font-style: italic;
  font-size: 3.4rem; color: var(--dourado); line-height: 0.8;
  margin-bottom: var(--s-2); display: block;
  font-variation-settings: "opsz" 144;
}
.testi__quote{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: var(--fs-md); line-height: 1.45; color: var(--espresso);
  margin-bottom: var(--s-4);
  font-variation-settings: "opsz" 72, "SOFT" 80;
}
.testi__quote--lg{ font-size: 1.35rem; }
.testi__author{
  display: flex; align-items: center; gap: var(--s-3);
  margin-top: var(--s-3); padding-top: var(--s-3);
  border-top: 1px solid var(--border-soft);
}
.testi__avatar{
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--verde); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.1rem; flex: 0 0 auto;
}
.testi__avatar--gold{ background: var(--dourado); color: var(--espresso); }
.testi__name{ font-weight: 500; color: var(--espresso); font-size: 0.88rem; }
.testi__meta{ font-size: 0.72rem; color: var(--muted); letter-spacing: 0.06em; }
.testi__stars{
  display: inline-flex; gap: 2px; color: var(--dourado);
  margin-bottom: var(--s-3);
}
.testi__stars svg{ width: 14px; height: 14px; }

/* =====================================================================
   17. FAQ ACCORDION
   ===================================================================== */
.faq{ background: var(--linen); }
.faq__list{ max-width: 820px; margin-inline: auto; }
.faq__item{
  border-bottom: 1px solid var(--border);
  padding-block: var(--s-2);
}
.faq__item:first-child{ border-top: 1px solid var(--border); }

.faq__btn{
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); width: 100%;
  padding: var(--s-4) 0; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500; color: var(--espresso);
  min-height: 56px; line-height: 1.25;
  transition: color var(--dur-2) var(--ease-out);
}
.faq__btn:hover{ color: var(--verde-deep); }
.faq__btn:focus-visible{
  outline: 2px solid var(--dourado); outline-offset: 4px; border-radius: 4px;
}
.faq__icon{
  width: 32px; height: 32px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  transition: transform var(--dur-3) var(--ease-out),
              background-color var(--dur-2) var(--ease-out),
              color var(--dur-2) var(--ease-out);
}
.faq__icon svg{ width: 14px; height: 14px; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; }
.faq__item[data-open="true"] .faq__icon{
  transform: rotate(45deg); background: var(--espresso); color: var(--paper); border-color: var(--espresso);
}

.faq__panel{
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-3) var(--ease-out);
}
.faq__item[data-open="true"] .faq__panel{ grid-template-rows: 1fr; }
.faq__panel > div{ overflow: hidden; }
.faq__panel p{
  padding-bottom: var(--s-5);
  font-size: var(--fs-base); color: var(--text-soft); max-width: 60ch;
  line-height: 1.6;
}

/* =====================================================================
   18. INSTAGRAM
   ===================================================================== */
.ig{ background: var(--paper); }
.ig__grid{
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}
.ig__cell{
  aspect-ratio: 1 / 1;
  overflow: hidden; border-radius: var(--r-md);
  position: relative;
  background: var(--linen);
  transition: transform var(--dur-2) var(--ease-out);
}
.ig__cell:hover{ transform: translateY(-3px); }
.ig__cell img{ width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.ig__cell:hover img{ transform: scale(1.08); }
.ig__cell--double{ grid-column: span 2; }
.ig__overlay{
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: var(--s-3);
  background: color-mix(in srgb, var(--espresso) 60%, transparent);
  color: var(--paper); opacity: 0;
  transition: opacity var(--dur-2) var(--ease-out);
  font-size: 0.9rem; font-weight: 500;
}
.ig__overlay svg{ width: 18px; height: 18px; fill: currentColor; }
.ig__cell:hover .ig__overlay, .ig__cell:focus-within .ig__overlay{ opacity: 1; }

.ig__card{
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-5);
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.2rem; line-height: 1.3; text-align: center;
  color: var(--paper);
}
.ig__card--verde{ background: linear-gradient(135deg, var(--verde), var(--verde-deep)); }
.ig__card--gold{ background: linear-gradient(135deg, var(--dourado), var(--dourado-deep)); color: var(--espresso); }

.ig__cta-wrap{ text-align: center; margin-top: var(--s-6); }
.ig__cta{
  display: inline-flex; align-items: center; gap: var(--s-2);
  font-family: var(--font-display); font-style: italic; font-size: 1.3rem;
  color: var(--verde-deep); border-bottom: 1px solid var(--dourado);
  padding-bottom: 2px;
}
.ig__cta svg{ width: 18px; height: 18px; transition: transform var(--dur-2) var(--ease-out); }
.ig__cta:hover svg{ transform: translateX(4px); }

/* =====================================================================
   19. GIFT FINDER
   ===================================================================== */
.gift{ background: var(--linen); }
.gift__card{
  max-width: 820px; margin-inline: auto;
  background: var(--surface); border-radius: var(--r-xl);
  box-shadow: var(--sh-2); border: 1px solid var(--border-soft);
  overflow: hidden;
}
.gift__progress{
  height: 4px; background: var(--border-soft);
  position: relative;
}
.gift__progress-fill{
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--dourado), var(--verde));
  width: var(--progress, 33%);
  transition: width var(--dur-3) var(--ease-out);
}

.gift__step{
  padding: clamp(28px, 4vw, 56px);
  display: none;
}
.gift__step[data-active="true"]{ display: block; }
.gift__step-num{
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 0.95rem; color: var(--dourado-deep); letter-spacing: 0.08em;
  margin-bottom: var(--s-2);
}
.gift__question{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.1;
  margin-bottom: var(--s-5); color: var(--espresso);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.gift__question em{ font-style: italic; color: var(--dourado-deep); }

.gift__options{
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.gift__option{
  padding: var(--s-4) var(--s-5);
  background: var(--linen);
  border: 1.5px solid var(--border-soft); border-radius: var(--r-md);
  cursor: pointer; min-height: 64px;
  display: flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-md); color: var(--espresso); font-weight: 400;
  text-align: left;
  transition: background-color var(--dur-2) var(--ease-out),
              border-color var(--dur-2) var(--ease-out),
              transform var(--dur-2) var(--ease-out);
}
.gift__option:hover{ transform: translateY(-2px); border-color: var(--verde); }
.gift__option[aria-pressed="true"]{
  background: color-mix(in srgb, var(--verde) 10%, var(--surface));
  border-color: var(--verde); color: var(--verde-deep);
}
.gift__option-num{
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dourado-soft); color: var(--dourado-deep);
  font-family: var(--font-display); font-weight: 500; font-size: 0.8rem;
  flex: 0 0 auto;
}

.gift__actions{
  display: flex; justify-content: space-between; align-items: center;
  margin-top: var(--s-6); padding-top: var(--s-4);
  border-top: 1px solid var(--border-soft);
}
.gift__back{
  font-size: 0.9rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
}
.gift__back svg{ width: 14px; transform: rotate(180deg); }
.gift__back[disabled]{ opacity: 0.3; cursor: not-allowed; }

.gift__result{
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: var(--s-5); align-items: center;
}
.gift__result-img{
  aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--r-md);
}
.gift__result-img img{ width: 100%; height: 100%; object-fit: cover; }
.gift__result h3{
  font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1; margin-bottom: var(--s-3);
}
.gift__result h3 em{ font-style: italic; color: var(--dourado-deep); }
.gift__result p{ font-size: var(--fs-md); color: var(--text-soft); margin-bottom: var(--s-4); }

/* =====================================================================
   20. IMPRENSA / SELOS
   ===================================================================== */
.press{
  background: var(--paper);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding-block: var(--s-7);
}
.press__label{
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: var(--s-5);
}
.press__row{
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(24px, 4vw, 64px);
}
.press__item{
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  color: var(--ink-soft); letter-spacing: 0.08em;
  opacity: 0.55; transition: opacity var(--dur-2) var(--ease-out);
}
.press__item:hover{ opacity: 1; }
.press__item em{ font-style: italic; color: var(--dourado-deep); }

/* =====================================================================
   21. NEWSLETTER
   ===================================================================== */
.newsletter{
  background: linear-gradient(180deg, var(--dourado-soft) 0%, #E0BF89 100%);
  position: relative; overflow: hidden;
  color: var(--espresso);
}
.newsletter__leaf{
  position: absolute; width: 240px; height: 240px; opacity: 0.3;
  color: var(--dourado-deep);
}
.newsletter__leaf--tl{ top: -40px; left: -40px; transform: rotate(-20deg); }
.newsletter__leaf--br{ bottom: -40px; right: -40px; transform: rotate(160deg); }
.newsletter__wrap{
  max-width: 720px; margin-inline: auto; text-align: center;
  position: relative; z-index: 2;
}
.newsletter .eyebrow{ color: var(--espresso); justify-content: center; display: inline-flex; }
.newsletter h2{
  font-size: clamp(2.2rem, 5vw, 3.8rem); margin-top: var(--s-4);
  color: var(--espresso);
}
.newsletter h2 em{ color: var(--verde-deep); }
.newsletter__lead{
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--espresso-soft); max-width: 52ch; margin: var(--s-4) auto var(--s-6);
}
.newsletter__lead strong{ color: var(--espresso); font-weight: 500; }

.newsletter__form{
  display: flex; flex-wrap: wrap; gap: var(--s-2);
  max-width: 520px; margin-inline: auto;
}
.newsletter__input{
  flex: 1 1 240px; min-width: 200px; min-height: 52px;
  padding: 0 20px; border-radius: var(--r-pill);
  border: 1.5px solid var(--espresso-soft); background: rgba(250,245,237,0.8);
  font: inherit; font-size: 0.95rem; color: var(--espresso);
  transition: border-color var(--dur-2), background var(--dur-2);
}
.newsletter__input::placeholder{ color: color-mix(in srgb, var(--espresso) 50%, transparent); }
.newsletter__input:focus{
  outline: none; border-color: var(--verde-deep);
  background: var(--paper);
}
.newsletter__msg{
  font-size: 0.85rem; color: var(--espresso-soft); margin-top: var(--s-3);
  min-height: 1.2em;
}

/* =====================================================================
   22. FOOTER
   ===================================================================== */
.footer{
  background: var(--espresso); color: var(--paper);
  padding-block: var(--s-8) var(--s-5);
  position: relative; overflow: hidden;
}
.footer::before{
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 20% -10%, color-mix(in srgb, var(--verde) 20%, transparent), transparent 60%);
  pointer-events: none;
}
.footer__wrap{
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--s-7) var(--s-5);
  position: relative; z-index: 2;
}
.footer__brand{ max-width: 340px; }
.footer__brand img{ width: 220px; height: auto; }
.footer__tagline{
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1.1rem; color: color-mix(in srgb, var(--paper) 80%, transparent);
  margin: var(--s-4) 0;
}
.footer__socials{ display: flex; gap: var(--s-2); margin-top: var(--s-4); }
.footer__social{
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--paper);
  border: 1px solid rgba(250,245,237,0.2);
  transition: background-color var(--dur-2), border-color var(--dur-2);
}
.footer__social:hover{ background: var(--dourado); border-color: var(--dourado); color: var(--espresso); }
.footer__social svg{ width: 20px; height: 20px; }
.footer__col h4{
  font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dourado); margin-bottom: var(--s-3);
  font-weight: 500;
}
.footer__col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--s-2); }
.footer__col a{
  color: color-mix(in srgb, var(--paper) 80%, transparent);
  font-size: 0.9rem; transition: color var(--dur-2);
}
.footer__col a:hover{ color: var(--dourado); }

.footer__bottom{
  max-width: var(--container); margin: var(--s-7) auto 0;
  padding: var(--s-5) var(--gutter) 0;
  border-top: 1px solid rgba(250,245,237,0.12);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3);
  color: color-mix(in srgb, var(--paper) 55%, transparent);
  font-size: 0.8rem; position: relative; z-index: 2;
}
.footer__bottom a{ color: inherit; border-bottom: 1px solid transparent; transition: border-color var(--dur-2); }
.footer__bottom a:hover{ border-color: var(--dourado); color: var(--dourado); }
.footer__legal{ display: flex; gap: var(--s-4); flex-wrap: wrap; }

.footer__badges{
  display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4);
}
.footer__badge{
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(250,245,237,0.08); color: var(--paper);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
}

/* =====================================================================
   23. FLOATING WA + SCROLL-TOP
   ===================================================================== */
.float-wa{
  position: fixed; right: 20px; bottom: 20px; z-index: var(--z-float);
  display: inline-flex; align-items: center; justify-content: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--verde); color: var(--paper);
  box-shadow: 0 12px 32px rgba(30, 90, 76, 0.35);
  transition: transform var(--dur-2) var(--ease-out),
              background-color var(--dur-2) var(--ease-out),
              opacity var(--dur-3) var(--ease-out);
  opacity: 0; transform: translateY(20px) scale(0.9); pointer-events: none;
}
.float-wa[data-visible="true"]{
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.float-wa svg{ width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.float-wa:hover{ background: var(--dourado); color: var(--espresso); transform: translateY(-4px) scale(1.05); }
.float-wa::before{
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--verde); opacity: 0; animation: pulse-ring 2.2s var(--ease-out) infinite;
}
.float-wa:hover::before{ border-color: var(--dourado); }
@keyframes pulse-ring{
  0%  { transform: scale(0.85); opacity: 0.8; }
  80% { transform: scale(1.4); opacity: 0; }
  100%{ transform: scale(1.4); opacity: 0; }
}

.float-wa__balloon{
  position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%);
  background: var(--paper); color: var(--espresso);
  padding: 10px 16px; border-radius: var(--r-pill);
  font-size: 0.82rem; white-space: nowrap;
  box-shadow: var(--sh-2);
  border: 1px solid var(--border-soft);
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-2), transform var(--dur-2);
}
.float-wa__balloon[data-visible="true"]{
  opacity: 1; transform: translateY(-50%) translateX(0);
}
.float-wa__balloon::after{
  content: ""; position: absolute; left: 100%; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--paper);
}

.scroll-top{
  position: fixed; left: 20px; bottom: 20px; z-index: var(--z-float);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dourado); color: var(--espresso);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-gold);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity var(--dur-3) var(--ease-out),
              transform var(--dur-3) var(--ease-out),
              background-color var(--dur-2);
}
.scroll-top[data-visible="true"]{
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.scroll-top:hover{ background: var(--dourado-deep); color: var(--paper); transform: translateY(-3px); }
.scroll-top svg{ width: 20px; height: 20px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* =====================================================================
   24. ANIMATIONS + REVEALS
   ===================================================================== */
.reveal{
  opacity: 0; transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-in{ opacity: 1; transform: none; }

.stagger > *{ opacity: 0; transform: translateY(16px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }
.stagger.is-in > *:nth-child(1){ transition-delay: 60ms; opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(2){ transition-delay: 140ms; opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(3){ transition-delay: 220ms; opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(4){ transition-delay: 300ms; opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(5){ transition-delay: 380ms; opacity: 1; transform: none; }
.stagger.is-in > *:nth-child(6){ transition-delay: 460ms; opacity: 1; transform: none; }

/* Scroll-driven (with @supports fallback) */
@supports (animation-timeline: view()){
  .scroll-reveal{
    animation: scroll-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes scroll-reveal{
    from{ opacity: 0; transform: translateY(28px); }
    to  { opacity: 1; transform: translateY(0); }
  }
}

/* =====================================================================
   25. REDUCED MOTION + FOCUS + A11Y
   ===================================================================== */
:focus-visible{
  outline: 3px solid color-mix(in srgb, var(--dourado) 60%, transparent);
  outline-offset: 3px; border-radius: 4px;
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > *{ opacity: 1 !important; transform: none !important; }
}

.sr-only{
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* =====================================================================
   26. RESPONSIVE
   ===================================================================== */
@media (max-width: 1200px){
  .footer__wrap{ grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 1024px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__visual{ order: -1; padding: 0; }
  .hero__photo-frame{ max-width: 540px; margin-inline: auto; aspect-ratio: 4 / 4; }
  .hero__meta{ max-width: none; }
  .hero__scroll{ display: none; }

  .frag-grid{ grid-template-columns: repeat(2, 1fr); }
  .frag:last-child{ grid-column: span 2; max-width: 50%; margin-inline: auto; }

  .bento__grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    grid-template-areas:
      "a a"
      "b c"
      "d c"
      "e f"
      "g g";
  }

  .kits__grid{ grid-template-columns: 1fr; }
  .kit--hero{ grid-row: auto; }

  .calc__wrap{ grid-template-columns: 1fr; }
  .calc__output{ border-left: 0; border-top: 2px solid var(--dourado); padding-top: var(--s-6); }

  .atelie__grid{ grid-template-columns: 1fr; gap: var(--s-6); }
  .atelie__photo{ max-width: 440px; margin-inline: auto; }

  .process__timeline{ grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
  .process__timeline::before{ display: none; }

  .benefits__grid{ grid-template-columns: repeat(2, 1fr); }

  .testi__grid{ columns: 2; }

  .ig__grid{ grid-template-columns: repeat(3, 1fr); }

  .gift__options{ grid-template-columns: 1fr; }
  .gift__result{ grid-template-columns: 1fr; }

  .footer__wrap{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; max-width: none; }
}

@media (max-width: 768px){
  .nav__menu{ display: none; }
  .nav__burger{ display: inline-flex; }
  .nav__right .pill span{ display: none; }
  .nav__right .pill{ width: 44px; height: 44px; padding: 0; justify-content: center; }

  .hero__title{ font-size: clamp(2.75rem, 12vw, 4.5rem); }
  .hero__meta{ grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
  .hero__meta strong{ font-size: 1.7rem; }

  .frag-grid{ grid-template-columns: 1fr; }
  .frag:last-child{ grid-column: auto; max-width: none; }

  .testi__grid{ columns: 1; }

  .ig__grid{ grid-template-columns: repeat(2, 1fr); }
  .ig__cell--double{ grid-column: span 2; }

  .footer__wrap{ grid-template-columns: 1fr; }

  .float-wa{ width: 52px; height: 52px; right: 14px; bottom: 14px; }
  .float-wa svg{ width: 22px; height: 22px; }
  .float-wa__balloon{ display: none; }
  .scroll-top{ width: 40px; height: 40px; left: 14px; bottom: 14px; }

  .process__timeline{ grid-template-columns: 1fr; }
  .benefits__grid{ grid-template-columns: 1fr 1fr; }

  .bento__grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
    grid-template-areas:
      "a"
      "b"
      "d"
      "c"
      "e"
      "f"
      "g";
  }
}

@media (max-width: 420px){
  :root{ --gutter: 18px; }
  .hero__cta{ flex-direction: column; align-items: stretch; }
  .hero__cta .btn{ width: 100%; }
  .kits__leaf{ width: 120px; height: 120px; }
  .atelie__leaf{ width: 120px; height: 120px; }
  .newsletter__leaf{ width: 160px; height: 160px; }
}
