/* =========================================================
   SAL DOCE — Landing Page
   Estética: patisserie de luxo • rosa + creme + menta
   Fontes: Cormorant Garamond (display) · Jost (UI) · Pinyon (script)
   ========================================================= */

:root {
  --rosa:        #E8709B;
  --rosa-forte:  #D64C82;
  --rosa-claro:  #F7C6D9;
  --rosa-suave:  #FBE3EC;
  --rosa-veu:    #FDEEF4;
  --menta:       #5FC2B8;
  --menta-forte: #3FA79C;
  --menta-suave: #DCF1EE;
  --creme:       #FEF8F2;
  --creme2:      #FDF3EA;
  --bege:        #F3E7D8;
  --bege-escuro: #E7D3BC;
  --choco:       #4A2C1E;
  --choco2:      #6B4326;
  --plum:        #3F2233;
  --plum-suave:  #7A5866;
  --dourado:     #C9A15B;
  --dourado-cl:  #E8CE97;
  --branco:      #FFFFFF;

  --sombra-sm: 0 6px 22px rgba(63, 34, 51, 0.07);
  --sombra-md: 0 18px 44px rgba(214, 76, 130, 0.14);
  --sombra-lg: 0 34px 80px rgba(214, 76, 130, 0.22);
  --glass: rgba(255, 255, 255, 0.65);

  --radius:    20px;
  --radius-lg: 30px;
  --maxw: 1180px;

  --ff-head: "Cormorant Garamond", Georgia, serif;
  --ff-script: "Pinyon Script", cursive;
  --ff-body: "Jost", system-ui, -apple-system, sans-serif;

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

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--ff-body);
  color: var(--plum);
  background: var(--creme);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }
.center { text-align: center; }

h1, h2, h3, h4 { font-family: var(--ff-head); font-weight: 600; line-height: 1.08; color: var(--plum); letter-spacing: .01em; }

/* ---------- Botões ---------- */
.btn {
  --pad-y: 14px; --pad-x: 28px;
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad-y) var(--pad-x);
  border: none; border-radius: 999px;
  font-family: var(--ff-body); font-weight: 500; font-size: 0.98rem; letter-spacing: .02em;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s ease, color .25s ease;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-forte) 100%); color: #fff; box-shadow: var(--sombra-md); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--sombra-lg); }
.btn-menta { background: linear-gradient(135deg, var(--menta) 0%, var(--menta-forte) 100%); color: #fff; box-shadow: 0 16px 38px rgba(63,167,156,.24); }
.btn-menta:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(63,167,156,.32); }
.btn-ghost { background: rgba(255,255,255,.5); color: var(--plum); border: 1.5px solid var(--bege-escuro); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: var(--rosa-suave); border-color: var(--rosa-claro); transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--rosa-forte); box-shadow: var(--sombra-md); }
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--sombra-lg); }
.btn-lg { --pad-y: 17px; --pad-x: 34px; font-size: 1.02rem; }
.btn-sm { --pad-y: 10px; --pad-x: 20px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }
.wa-icon { font-size: 1.15em; line-height: 1; }
/* brilho que varre o botão */
.btn-shine::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); animation: shine 3.6s ease-in-out infinite;
}
@keyframes shine { 0%, 55% { left: -120%; } 85%, 100% { left: 140%; } }

/* ---------- Abertura mágica ---------- */
.intro {
  position: fixed; inset: 0; z-index: 999;
  background: radial-gradient(80% 80% at 50% 45%, var(--creme) 0%, var(--rosa-veu) 100%);
  display: flex; align-items: center; justify-content: center;
  animation: intro-out .8s var(--ease) forwards; animation-delay: 1.7s;
}
.intro-inner { text-align: center; }
.intro-logo { height: 96px; margin: 0 auto 18px; animation: intro-pop 1s var(--ease) both; filter: drop-shadow(0 10px 24px rgba(214,76,130,.25)); }
.intro-line { display: block; width: 0; height: 2px; margin: 0 auto; background: linear-gradient(90deg, transparent, var(--rosa), transparent); animation: intro-line 1.3s var(--ease) .3s forwards; }
@keyframes intro-pop { 0% { opacity: 0; transform: scale(.8) translateY(10px); } 60% { opacity: 1; } 100% { opacity: 1; transform: scale(1) translateY(0); } }
@keyframes intro-line { to { width: 190px; } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; transform: scale(1.04); } }
.intro.done { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(254, 248, 242, 0.78);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(231, 211, 188, 0.5);
}
.nav { display: flex; align-items: center; gap: 22px; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 48px; width: auto; transition: transform .3s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-4deg) scale(1.05); }
.brand-name { display: none; }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { font-weight: 400; font-size: .96rem; letter-spacing: .02em; color: var(--plum-suave); position: relative; }
.nav-links a:hover { color: var(--rosa-forte); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--rosa); border-radius: 2px; transition: width .25s var(--ease); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 4px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--plum); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 20px; overflow: hidden; background: linear-gradient(180deg, var(--creme) 0%, #fff 92%); }

/* aurora animada */
.aurora { position: absolute; inset: -20% -10% 0 -10%; z-index: 0; filter: blur(70px); opacity: .8; }
.aurora span { position: absolute; display: block; border-radius: 50%; mix-blend-mode: multiply; }
.aurora span:nth-child(1) { width: 46vw; height: 46vw; background: var(--rosa-claro); top: -6%; right: 4%; animation: aur1 16s ease-in-out infinite; }
.aurora span:nth-child(2) { width: 40vw; height: 40vw; background: var(--menta-suave); bottom: -14%; left: -4%; animation: aur2 19s ease-in-out infinite; }
.aurora span:nth-child(3) { width: 30vw; height: 30vw; background: var(--dourado-cl); top: 24%; left: 32%; opacity: .5; animation: aur3 22s ease-in-out infinite; }
.aurora span:nth-child(4) { width: 34vw; height: 34vw; background: var(--rosa-suave); top: 10%; left: -8%; animation: aur1 24s ease-in-out infinite reverse; }
@keyframes aur1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6%, 6%) scale(1.12); } }
@keyframes aur2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8%, -5%) scale(1.15); } }
@keyframes aur3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-10%, -8%) scale(.9); } }

/* partículas cintilantes */
.sparkles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.sparkles i { position: absolute; border-radius: 50%; background: radial-gradient(circle, #fff 0%, var(--dourado-cl) 55%, transparent 72%); box-shadow: 0 0 10px rgba(232,206,151,.95); animation: twinkle 3s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 0; transform: scale(.3); } 50% { opacity: 1; transform: scale(1); } }

/* ingredientes a flutuar (ambiente, atrás do texto — nunca tapam a leitura) */
.floaties { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.fl { position: absolute; line-height: 1; filter: drop-shadow(0 10px 18px rgba(214,76,130,.22)); animation: float-y var(--dur, 9s) ease-in-out infinite; animation-delay: var(--dl, 0s); will-change: transform; pointer-events: auto; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.fl::after { content: ""; position: absolute; inset: -30%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.5), transparent 68%); z-index: -1; opacity: .7; }
@keyframes float-y { 0% { transform: translate(0,0) rotate(-6deg); } 50% { transform: translate(10px,-26px) rotate(8deg); } 100% { transform: translate(0,0) rotate(-6deg); } }
.fl.pop { animation: pop .6s var(--ease); }
@keyframes pop { 0% { transform: scale(1) rotate(0); } 35% { transform: scale(1.5) rotate(180deg); } 100% { transform: scale(1) rotate(360deg); } }

/* explosão de brilhos ao toque */
.tap-burst { position: fixed; z-index: 9998; pointer-events: none; font-size: 1.1rem; will-change: transform, opacity; animation: burst .8s ease-out forwards; }
@keyframes burst { 0% { opacity: 1; transform: translate(0,0) scale(.4) rotate(0); } 100% { opacity: 0; transform: translate(var(--bx,0), var(--by,-40px)) scale(1.1) rotate(var(--br,90deg)); } }

/* onda (ripple) nos botões e cartões */
.ripple { position: absolute; border-radius: 50%; transform: translate(-50%,-50%) scale(0); background: rgba(255,255,255,.55); pointer-events: none; animation: ripple .6s ease-out forwards; }
.card .ripple, .bolo .ripple, .g-item .ripple, .feature .ripple { background: rgba(232,112,155,.28); }
@keyframes ripple { to { transform: translate(-50%,-50%) scale(1); opacity: 0; } }

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 6px; background: var(--glass); color: var(--rosa-forte); border: 1px solid var(--rosa-claro); padding: 8px 16px; border-radius: 999px; font-size: .8rem; font-weight: 500; letter-spacing: .04em; box-shadow: var(--sombra-sm); backdrop-filter: blur(6px); }
.eyebrow.menta { color: var(--menta-forte); border-color: var(--menta); }

.hero-title { font-size: clamp(2.9rem, 6.4vw, 5rem); font-weight: 500; margin: 22px 0 20px; letter-spacing: -0.005em; }
.hero-title .line { display: block; }
.hero-title .w { display: inline-block; }
.hl { color: var(--rosa-forte); }
.script { font-family: var(--ff-script); font-weight: 400; font-size: 1.35em; line-height: .9; padding: 0 .06em; }
.lead { font-size: 1.16rem; color: var(--plum-suave); max-width: 31rem; font-weight: 300; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 28px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 30px; padding-top: 20px; border-top: 1px solid rgba(231,211,188,.7); }
.hero-trust li { font-size: .86rem; color: var(--plum-suave); letter-spacing: .02em; }
.hero-trust strong { display: block; font-family: var(--ff-head); font-weight: 600; font-size: 1.6rem; color: var(--plum); }

.hero-visual { position: relative; }
.hero-halo { position: absolute; inset: -12% -8%; z-index: 0; border-radius: 50%; background: conic-gradient(from 0deg, var(--rosa-claro), var(--menta-suave), var(--dourado-cl), var(--rosa-suave), var(--rosa-claro)); filter: blur(38px); opacity: .55; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-photo { position: relative; z-index: 1; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: var(--rosa-suave); box-shadow: var(--sombra-lg); border: 8px solid #fff; overflow: hidden; transform: rotate(-1.6deg); animation: float-photo 7s ease-in-out infinite; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
@keyframes float-photo { 0%, 100% { transform: rotate(-1.6deg) translateY(0); } 50% { transform: rotate(-1.6deg) translateY(-12px); } }
.hero-badge { position: absolute; z-index: 2; padding: 11px 17px; border-radius: 16px; font-size: .84rem; font-weight: 500; color: var(--plum); box-shadow: var(--sombra-md); animation: floaty 4.5s ease-in-out infinite; }
.glass { background: var(--glass); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.6); }
.hero-badge-1 { top: 30px; left: -20px; }
.hero-badge-2 { bottom: 46px; right: -18px; animation-delay: 1.4s; }
.hero-badge.menta { color: var(--menta-forte); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* animações de entrada (hero) */
.up { opacity: 0; transform: translateY(26px); animation: up .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
.up-scale { opacity: 0; transform: scale(.94) translateY(20px); animation: upscale 1.1s var(--ease) forwards; animation-delay: var(--d, 0s); }
.hero-title .w { opacity: 0; transform: translateY(40px) rotate(2deg); animation: wordrise 1s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes up { to { opacity: 1; transform: none; } }
@keyframes upscale { to { opacity: 1; transform: none; } }
@keyframes wordrise { to { opacity: 1; transform: none; } }

/* ---------- Carrossel automático ---------- */
.strip { padding: 22px 0; background: linear-gradient(180deg, #fff, var(--creme2)); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.strip-track { display: flex; gap: 16px; width: max-content; animation: slide 46s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
.strip-item { width: 200px; height: 200px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra-sm); border: 4px solid #fff; flex: 0 0 auto; transition: transform .35s var(--ease); }
.strip-item:hover { transform: scale(1.05) rotate(-1deg); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Reel / vídeo ---------- */
.section-reel { background: linear-gradient(180deg, #fff 0%, var(--menta-suave) 100%); }
.reel-grid { display: grid; grid-template-columns: 1fr 320px; gap: 54px; align-items: center; }
.reel-copy h2 { font-size: clamp(2rem, 4.2vw, 3rem); font-weight: 500; margin: 14px 0 14px; }
.reel-phone { justify-self: center; position: relative; width: 300px; aspect-ratio: 9 / 19; background: linear-gradient(160deg, #241319, #140b0f); border-radius: 44px; padding: 11px; box-shadow: var(--sombra-lg), inset 0 0 0 2px rgba(255,255,255,.08); }
.reel-notch { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 104px; height: 22px; background: #0c0709; border-radius: 0 0 14px 14px; z-index: 4; }
.reel-screen { position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden; background: #000; }
.reel-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1); transition: opacity 1s ease, transform 3.4s ease; }
.reel-slide.active { opacity: 1; transform: scale(1.12); z-index: 1; }
.reel-badge { position: absolute; top: 30px; left: 14px; z-index: 3; background: rgba(0,0,0,.42); color: #fff; font-size: .74rem; font-weight: 500; padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px); letter-spacing: .02em; }
.reel-progress { position: absolute; top: 18px; left: 14px; right: 14px; height: 3px; background: rgba(255,255,255,.32); border-radius: 2px; overflow: hidden; z-index: 3; }
.reel-progress::after { content: ""; display: block; height: 100%; background: #fff; width: 0; animation: reelprog 2.8s linear infinite; }
@keyframes reelprog { from { width: 0; } to { width: 100%; } }

/* ---------- Secções ---------- */
.section { padding: 92px 0; }
.section-alt { background: linear-gradient(180deg, #fff 0%, var(--rosa-veu) 100%); }
.section-menta { background: linear-gradient(180deg, #fff 0%, var(--menta-suave) 100%); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.section-head h2 { font-size: clamp(2.2rem, 4.6vw, 3.2rem); font-weight: 500; margin: 14px 0 14px; }
.section-sub, .section-note { color: var(--plum-suave); font-weight: 300; }
.section-note { text-align: center; font-size: .9rem; margin-top: 28px; }
.micro { font-size: .86rem; color: var(--plum-suave); margin-top: 14px; }

/* ---------- Bolos em destaque ---------- */
.bolos { display: grid; grid-template-columns: 1.2fr 1fr 1fr; grid-auto-rows: 244px; gap: 18px; }
.bolo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra-sm); border: 1px solid rgba(231,211,188,.5); }
.bolo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(63,34,51,.4)); opacity: 0; transition: opacity .35s ease; }
.bolo:hover::after { opacity: 1; }
.bolo:first-child { grid-row: span 2; }
.bolo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.bolo:hover img { transform: scale(1.08); }
.bolo-tag { position: absolute; z-index: 2; left: 15px; bottom: 15px; background: var(--glass); backdrop-filter: blur(8px); color: var(--plum); padding: 8px 15px; border-radius: 999px; font-size: .82rem; font-weight: 500; box-shadow: var(--sombra-sm); }
.bolo-tag.menta { color: var(--menta-forte); }

/* ---------- Cards de produto ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { position: relative; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra-sm); border: 1px solid rgba(231, 211, 188, 0.5); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-8px); box-shadow: var(--sombra-md); }
.card:active { transform: scale(.98); }
.card-media { height: 200px; overflow: hidden; background: var(--rosa-suave); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-body { padding: 20px 22px 24px; }
.card-body h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 6px; }
.card-body p { font-size: .9rem; color: var(--plum-suave); margin-bottom: 14px; font-weight: 300; }
.card-price { display: inline-block; font-weight: 500; color: var(--rosa-forte); background: var(--rosa-suave); padding: 5px 13px; border-radius: 999px; font-size: .8rem; letter-spacing: .03em; }
.card-price.menta { color: var(--menta-forte); background: var(--menta-suave); }

/* ---------- Cardápio ---------- */
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.menu-card { background: #fff; border-radius: var(--radius-lg); padding: 38px 34px; box-shadow: var(--sombra-sm); border: 1px solid rgba(231,211,188,.5); position: relative; overflow: hidden; }
.menu-card::before { content: ""; position: absolute; top: -40px; right: -40px; width: 130px; height: 130px; border-radius: 50%; background: var(--rosa-suave); opacity: .5; }
.menu-card.massas::before { background: var(--menta-suave); }
.menu-card h3 { font-size: 2rem; font-weight: 600; margin-bottom: 2px; color: var(--rosa-forte); position: relative; }
.menu-card .menu-sub { font-size: .82rem; color: var(--plum-suave); margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; position: relative; }
.menu-list { list-style: none; columns: 2; column-gap: 24px; position: relative; }
.menu-list li { padding: 7px 0 7px 26px; position: relative; font-size: 1.02rem; break-inside: avoid; }
.menu-list li::before { content: "♥"; position: absolute; left: 0; color: var(--menta); font-size: .85rem; top: 9px; }
.menu-card.massas h3 { color: var(--menta-forte); }
.menu-card.massas .menu-list li::before { color: var(--rosa); }
.menu-note { margin-top: 26px; font-size: .92rem; color: var(--plum-suave); }

/* ---------- Vantagens ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature { position: relative; overflow: hidden; background: #fff; border-radius: var(--radius); padding: 34px 26px; text-align: center; box-shadow: var(--sombra-sm); border: 1px solid rgba(231, 211, 188, 0.5); transition: transform .3s var(--ease); }
.feature:hover { transform: translateY(-6px); }
.feature:active, .g-item:active, .bolo:active { transform: scale(.98); }
.feature-ico { width: 70px; height: 70px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; background: var(--rosa-suave); border-radius: 50%; font-size: 1.8rem; box-shadow: inset 0 0 0 6px rgba(255,255,255,.6); }
.feature:nth-child(even) .feature-ico { background: var(--menta-suave); }
.feature h3 { font-size: 1.32rem; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: .9rem; color: var(--plum-suave); font-weight: 300; }

/* ---------- Passos ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { position: relative; background: #fff; border-radius: var(--radius); padding: 38px 28px 30px; box-shadow: var(--sombra-sm); border: 1px solid rgba(231, 211, 188, 0.5); }
.step-num { position: absolute; top: -24px; left: 28px; width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg, var(--rosa), var(--rosa-forte)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-size: 1.5rem; font-weight: 600; box-shadow: var(--sombra-md); }
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--menta), var(--menta-forte)); }
.step h3 { font-size: 1.4rem; font-weight: 600; margin: 14px 0 8px; }
.step p { font-size: .94rem; color: var(--plum-suave); font-weight: 300; }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.g-item { position: relative; aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--sombra-sm); border: 3px solid #fff; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.g-item::after { content: "📷"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; background: rgba(214, 76, 130, 0.35); opacity: 0; transition: opacity .3s ease; }
.g-item:hover img { transform: scale(1.1); }
.g-item:hover::after { opacity: 1; }
#galeria .center { margin-top: 36px; }

/* ---------- Testemunhos ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--sombra-sm); border: 1px solid rgba(231, 211, 188, 0.5); position: relative; }
.review::before { content: "“"; position: absolute; top: 6px; right: 22px; font-family: var(--ff-head); font-size: 4rem; color: var(--rosa-claro); line-height: 1; }
.stars { color: var(--dourado); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-family: var(--ff-head); font-size: 1.28rem; font-weight: 500; font-style: italic; color: var(--plum); margin-bottom: 16px; line-height: 1.4; }
.review figcaption { font-weight: 500; color: var(--rosa-forte); font-size: .9rem; letter-spacing: .02em; }

/* ---------- CTA Final ---------- */
.cta-final { position: relative; padding: 92px 0; background: linear-gradient(135deg, var(--rosa) 0%, var(--rosa-forte) 55%, var(--menta-forte) 145%); text-align: center; color: #fff; overflow: hidden; }
.cta-final::before, .cta-final::after { content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12); filter: blur(10px); }
.cta-final::before { width: 240px; height: 240px; top: -80px; left: -40px; }
.cta-final::after { width: 300px; height: 300px; bottom: -120px; right: -60px; }
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.4rem); font-weight: 500; margin-bottom: 14px; }
.cta-inner p { color: rgba(255,255,255,.92); font-size: 1.14rem; margin-bottom: 30px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-ig { display: block; margin-top: 24px; color: rgba(255,255,255,.92); font-weight: 400; text-decoration: underline; text-underline-offset: 3px; letter-spacing: .02em; }
.cta-ig:hover { color: #fff; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details { background: #fff; border-radius: var(--radius); border: 1px solid rgba(231, 211, 188, 0.55); padding: 4px 24px; box-shadow: var(--sombra-sm); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; font-family: var(--ff-head); font-weight: 600; font-size: 1.24rem; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.6rem; color: var(--rosa-forte); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 20px; color: var(--plum-suave); font-weight: 300; }

/* ---------- Footer ---------- */
.site-footer { background: var(--plum); color: #fff; padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 36px; }
.site-footer .brand-logo { height: 58px; filter: brightness(0) invert(1) sepia(.3) saturate(3) hue-rotate(300deg); }
.footer-tag { color: rgba(255,255,255,.68); margin-top: 14px; font-size: .94rem; max-width: 22rem; font-weight: 300; }
.footer-col h4 { color: #fff; font-family: var(--ff-body); font-weight: 500; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.7); padding: 5px 0; font-size: .94rem; font-weight: 300; }
.footer-col a:hover { color: var(--rosa-claro); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,.55); font-size: .84rem; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--rosa), var(--rosa-forte)); display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: #fff; box-shadow: 0 12px 30px rgba(214,76,130,.45); animation: pulse 2.6s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 12px 30px rgba(214,76,130,.45), 0 0 0 0 rgba(232,112,155,.5); } 70% { box-shadow: 0 12px 30px rgba(214,76,130,.45), 0 0 0 18px rgba(232,112,155,0); } 100% { box-shadow: 0 12px 30px rgba(214,76,130,.45), 0 0 0 0 rgba(232,112,155,0); } }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(34px); filter: blur(6px); transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease); transition-delay: var(--rd, 0s); }
.reveal.in { opacity: 1; transform: none; filter: none; }

/* =========================================================
   PÁGINA DE ENCOMENDA
   ========================================================= */
.order-hero { padding: 48px 0 22px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--creme), #fff); }
.order-hero::before { content: ""; position: absolute; top: -30%; left: 50%; transform: translateX(-50%); width: 70%; height: 120%; background: radial-gradient(closest-side, var(--rosa-suave), transparent); filter: blur(40px); opacity: .7; }
.order-hero > .container { position: relative; }
.order-hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.6rem); font-weight: 500; margin: 12px 0 10px; }
.order-hero p { color: var(--plum-suave); max-width: 40rem; margin: 0 auto; font-weight: 300; }
.order-wrap { display: grid; grid-template-columns: 1fr 370px; gap: 32px; align-items: start; padding-bottom: 96px; }

.order-block { background: #fff; border-radius: var(--radius-lg); border: 1px solid rgba(231,211,188,.55); box-shadow: var(--sombra-sm); margin-bottom: 22px; overflow: hidden; transition: box-shadow .3s ease; }
.order-block.open { box-shadow: var(--sombra-md); }
.order-block > header { display: flex; align-items: center; gap: 14px; padding: 22px 28px; cursor: pointer; user-select: none; }
.order-block > header .ob-ico { width: 48px; height: 48px; border-radius: 50%; background: var(--rosa-suave); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; flex: 0 0 auto; }
.order-block.blk-menta > header .ob-ico { background: var(--menta-suave); }
.order-block > header h2 { font-size: 1.5rem; font-weight: 600; margin: 0; }
.order-block > header .ob-sub { font-size: .82rem; color: var(--plum-suave); font-weight: 300; }
.order-block > header .ob-tog { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--rosa); color: var(--rosa-forte); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: .25s var(--ease); }
.order-block.open > header .ob-tog { background: var(--rosa); color: #fff; transform: rotate(45deg); }
.order-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.order-body > div { overflow: hidden; min-height: 0; }
.order-block.open .order-body { grid-template-rows: 1fr; }
.order-inner { padding: 4px 28px 28px; transition: padding .35s var(--ease); }
.order-block:not(.open) .order-inner { padding-top: 0; padding-bottom: 0; }

.field { margin-bottom: 22px; }
.field > label.flabel { display: block; font-weight: 500; font-size: .96rem; margin-bottom: 11px; letter-spacing: .01em; }
.field > label.flabel .opt { font-weight: 300; color: var(--plum-suave); font-size: .82rem; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--bege-escuro); font-size: .9rem; color: var(--plum); cursor: pointer; transition: .18s var(--ease); background: #fff; }
.chip input:checked + span { background: var(--rosa); border-color: var(--rosa); color: #fff; box-shadow: var(--sombra-sm); transform: translateY(-1px); }
.chip.menta input:checked + span { background: var(--menta-forte); border-color: var(--menta-forte); }
.chip:hover span { border-color: var(--rosa); }
.chip input:focus-visible + span { outline: 2px solid var(--rosa-forte); outline-offset: 2px; }

.qty-list { display: flex; flex-direction: column; gap: 10px; }
.qty-row { display: flex; align-items: center; gap: 12px; padding: 11px 15px; border: 1.5px solid var(--bege); border-radius: 14px; transition: border-color .2s ease; }
.qty-row:hover { border-color: var(--rosa-claro); }
.qty-row .qn { flex: 1; font-size: .95rem; }
.qty-row .qn small { display: block; color: var(--plum-suave); font-size: .76rem; font-weight: 300; }
.stepper { display: inline-flex; align-items: center; border: 1.5px solid var(--bege-escuro); border-radius: 999px; overflow: hidden; }
.stepper button { width: 36px; height: 36px; border: none; background: var(--creme2); color: var(--rosa-forte); font-size: 1.2rem; font-weight: 600; cursor: pointer; line-height: 1; transition: background .15s; }
.stepper button:hover { background: var(--rosa-suave); }
.stepper input { width: 44px; text-align: center; border: none; font-family: var(--ff-body); font-size: .96rem; font-weight: 500; color: var(--plum); -moz-appearance: textfield; }
.stepper input::-webkit-outer-spin-button, .stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.input, textarea.input, select.input { width: 100%; padding: 14px 16px; border: 1.5px solid var(--bege-escuro); border-radius: 14px; font-family: var(--ff-body); font-size: .96rem; color: var(--plum); background: #fff; transition: border-color .2s, box-shadow .2s; }
.input:focus { outline: none; border-color: var(--rosa); box-shadow: 0 0 0 3px var(--rosa-suave); }
textarea.input { resize: vertical; min-height: 90px; }
.hint { font-size: .82rem; color: var(--plum-suave); margin-top: 8px; font-weight: 300; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.summary { position: sticky; top: 96px; background: #fff; border-radius: var(--radius-lg); border: 1px solid rgba(231,211,188,.55); box-shadow: var(--sombra-md); padding: 28px; }
.summary h2 { font-size: 1.6rem; font-weight: 600; margin-bottom: 2px; }
.summary .sum-sub { font-size: .82rem; color: var(--plum-suave); margin-bottom: 18px; letter-spacing: .03em; }
.sum-body { font-size: .9rem; max-height: 46vh; overflow-y: auto; }
.sum-empty { color: var(--plum-suave); font-style: italic; padding: 16px 0; font-weight: 300; }
.sum-sec { margin-bottom: 16px; }
.sum-sec h4 { font-family: var(--ff-body); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rosa-forte); margin-bottom: 7px; font-weight: 500; }
.sum-sec ul { list-style: none; }
.sum-sec li { padding: 3px 0 3px 16px; position: relative; color: var(--plum); }
.sum-sec li::before { content: "•"; position: absolute; left: 2px; color: var(--menta-forte); }
.summary .btn { margin-top: 20px; }
.summary .micro { text-align: center; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .order-wrap { grid-template-columns: 1fr; }
  .summary { position: relative; top: 0; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 420px; margin: 0 auto; width: 100%; }
  .reel-grid { grid-template-columns: 1fr; gap: 36px; justify-items: center; text-align: center; }
  .reel-copy { max-width: 460px; }
  .cards, .features { grid-template-columns: repeat(2, 1fr); }
  .steps, .reviews, .menu-grid { grid-template-columns: 1fr; }
  .steps { gap: 40px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .bolos { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .bolo:first-child { grid-row: span 2; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0; background: var(--creme); border-bottom: 1px solid var(--bege-escuro); padding: 8px 24px 18px; margin: 0; transform: translateY(-140%); transition: transform .3s var(--ease); box-shadow: var(--sombra-md); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid rgba(231,211,188,.5); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .menu-list { columns: 1; }
}
@media (max-width: 520px) {
  .section { padding: 62px 0; }
  .cards { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .feature { padding: 22px 14px; }
  .feature-ico { width: 52px; height: 52px; font-size: 1.4rem; margin-bottom: 12px; box-shadow: inset 0 0 0 4px rgba(255,255,255,.6); }
  .feature h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .feature p { font-size: .82rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  /* Cardápio mais compacto */
  .menu-card { padding: 26px 22px; }
  .menu-card h3 { font-size: 1.5rem; }
  .menu-card .menu-sub { font-size: .72rem; margin-bottom: 14px; }
  .menu-list li { font-size: .92rem; padding: 5px 0 5px 22px; }
  .menu-list li::before { top: 7px; }
  .menu-note { font-size: .86rem; }
  /* Reel mais pequena */
  .reel-phone { width: 232px; }
  .section-head h2 { font-size: 2rem; }
  .section-head { margin-bottom: 34px; }
  .bolos { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .bolo:first-child { grid-row: span 1; }
  .hero-cta .btn, .cta-btns .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-badge-1 { left: 2px; } .hero-badge-2 { right: 2px; }
  .row2 { grid-template-columns: 1fr; }
  .order-inner { padding: 4px 20px 24px; }
  .order-block > header { padding: 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, .up, .up-scale, .hero-title .w { opacity: 1 !important; transform: none !important; filter: none !important; }
  .intro { display: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   CAMADA DE ELEVAÇÃO — acabamento "premium / Figma"
   ========================================================= */
:root {
  --sombra-sm: 0 2px 8px rgba(70,40,58,.05), 0 10px 26px rgba(70,40,58,.06);
  --sombra-md: 0 6px 16px rgba(214,76,130,.10), 0 22px 50px rgba(214,76,130,.14);
  --sombra-lg: 0 12px 30px rgba(214,76,130,.14), 0 44px 100px rgba(214,76,130,.22);
}

/* textura subtil (grain) em todo o site */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 300; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* eyebrow editorial (maiúsculas + tracking) */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; font-weight: 600; }
/* linha-acento sob os títulos de secção */
.section-head h2 { letter-spacing: -.02em; }
.section-head h2::after { content: ""; display: block; width: 54px; height: 3px; margin: 18px auto 0; border-radius: 3px; background: linear-gradient(90deg, var(--rosa), var(--menta)); }
.hero-title { letter-spacing: -.02em; }

/* botões com brilho interior */
.btn-primary { box-shadow: 0 10px 24px rgba(214,76,130,.30), inset 0 1px 0 rgba(255,255,255,.4); }
.btn-menta { box-shadow: 0 10px 24px rgba(63,167,156,.28), inset 0 1px 0 rgba(255,255,255,.4); }

/* nav em pílula (desktop) */
@media (min-width: 761px) {
  .nav-links { background: rgba(255,255,255,.55); backdrop-filter: blur(10px); border: 1px solid rgba(231,211,188,.6); padding: 9px 20px; border-radius: 999px; box-shadow: var(--sombra-sm); }
  .nav-links a::after { bottom: -3px; }
}

/* hero — moldura dupla + anel dourado + realce */
.hero-photo { box-shadow: var(--sombra-lg), 0 0 0 1px rgba(201,161,91,.25); }
.hero-visual::after { content: ""; position: absolute; inset: -16px; border-radius: 44px; border: 1.5px dashed rgba(201,161,91,.4); pointer-events: none; z-index: 0; }
.hero-badge-1 { top: 24px; right: -14px; left: auto; }

/* cartão de avaliação flutuante (estilo UI) */
.hero-rating { position: absolute; z-index: 3; left: -20px; bottom: 42px; display: flex; align-items: center; gap: 12px; padding: 12px 18px 12px 14px; border-radius: 18px; box-shadow: var(--sombra-md); animation: floaty 4.5s ease-in-out infinite; animation-delay: 1.2s; }
.hr-avatars { display: flex; }
.hr-avatars span { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 600; color: #fff; border: 2px solid #fff; margin-left: -11px; font-family: var(--ff-head); }
.hr-avatars span:nth-child(1) { margin-left: 0; background: linear-gradient(135deg, var(--menta), var(--menta-forte)); }
.hr-avatars span:nth-child(2) { background: linear-gradient(135deg, var(--rosa), var(--rosa-forte)); }
.hr-avatars span:nth-child(3) { background: linear-gradient(135deg, var(--dourado), var(--dourado-cl)); }
.hr-text strong { display: block; color: var(--dourado); font-size: .8rem; letter-spacing: 1.5px; }
.hr-text small { color: var(--plum-suave); font-size: .72rem; }

/* cards com escurecer suave da foto */
.card-media { position: relative; }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(63,34,51,.22)); opacity: 0; transition: opacity .3s ease; }
.card:hover .card-media::after { opacity: 1; }

/* testemunhos com avatar + nome */
.review figcaption { display: flex; align-items: center; gap: 12px; }
.rv-avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--a, linear-gradient(135deg, var(--rosa), var(--rosa-forte))); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--ff-head); font-weight: 600; font-size: 1.15rem; flex: 0 0 auto; box-shadow: var(--sombra-sm); }
.rv-name { display: flex; flex-direction: column; line-height: 1.25; }
.rv-name small { color: var(--plum-suave); font-weight: 400; font-size: .74rem; font-style: normal; }

/* pequenos refinamentos */
.strip-item { border-radius: 22px; }
.g-item { border-radius: 20px; }
.reel-phone { box-shadow: var(--sombra-lg), 0 0 0 1px rgba(201,161,91,.18); }

@media (max-width: 520px) {
  .hero-rating { left: 4px; bottom: 14px; padding: 9px 13px; }
  .hr-avatars span { width: 26px; height: 26px; }
  .hero-visual::after { inset: -8px; border-radius: 34px; }
}
