/* ════════════════════════════════════════════════════════════════
   JU COOKIE DESIGNER · Design System
   Base: Liora · Paleta: pastel cyan + pastel rosa + cream warm
   ════════════════════════════════════════════════════════════════ */

:root {
  /* ── Surfaces (rich cream-pink warm) ── */
  --ju-bg:              #fbf6f0;
  --ju-bg-2:            #f5ebe3;
  --ju-bg-3:            #efe1d6;
  --ju-cream:           #faf4ed;
  --ju-surface:         rgba(255, 252, 248, 0.72);
  --ju-surface-strong:  rgba(255, 252, 248, 0.92);

  /* ── Ink (warm plum/rose-brown) ── */
  --ju-text:            #3A2A33;
  --ju-text-2:          #5B4250;
  --ju-text-soft:       #8C7986;
  --ju-text-mute:       #B7A6B0;
  --ju-line:            #ECDDDD;
  --ju-line-strong:     #DCC9C9;

  /* ── Primary: pastel cyan ── */
  --ju-cyan:            #9CD7DC;
  --ju-cyan-2:          #BCE4E8;       /* soft tint */
  --ju-cyan-3:          #D6EEF1;       /* very soft */
  --ju-cyan-dark:       #5DAEB7;       /* hover */
  --ju-cyan-darker:     #438D96;       /* press */

  /* ── Accent: pastel rose ── */
  --ju-pink:            #F2C0CB;
  --ju-pink-2:          #F8D7DE;       /* soft */
  --ju-pink-3:          #FCE9EE;       /* very soft */
  --ju-pink-dark:       #DC97A7;       /* hover */
  --ju-pink-darker:     #B9788A;       /* press */

  /* ── Bonus pastels ── */
  --ju-mint:            #C6E2C9;
  --ju-yellow:          #F6E2A2;
  --ju-lavender:        #DAC8E8;

  /* ── Shadows (warm, mais profundas) ── */
  --ju-shadow-soft:     0 10px 22px rgba(58, 42, 51, 0.06),
                        0 2px 8px   rgba(58, 42, 51, 0.04);
  --ju-shadow:          0 18px 36px rgba(58, 42, 51, 0.10),
                        0 5px 14px  rgba(58, 42, 51, 0.06);
  --ju-shadow-lift:     0 24px 50px rgba(58, 42, 51, 0.14),
                        0 8px 20px  rgba(58, 42, 51, 0.08);
}

/* ════════════════════════════════════════════════════════════════
   FOUNDATION
   ════════════════════════════════════════════════════════════════ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ju-bg);
  color: var(--ju-text);
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--ju-pink); color: var(--ju-text); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ju-bg); }
::-webkit-scrollbar-thumb { background: var(--ju-line-strong); border-radius: 100px; border: 2px solid var(--ju-bg); }
::-webkit-scrollbar-thumb:hover { background: var(--ju-pink-dark); }

/* ── Typography utilities ── */
.font-serif    { font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; letter-spacing: -0.02em; }
.font-script   { font-family: 'Caveat', cursive; font-weight: 500; letter-spacing: 0; }
.font-mono     { font-family: 'JetBrains Mono', monospace; }
.text-soft     { color: var(--ju-text-soft); }
.text-mute     { color: var(--ju-text-mute); }
.text-cyan     { color: var(--ju-cyan-dark); }
.text-pink     { color: var(--ju-pink-dark); }

/* ════════════════════════════════════════════════════════════════
   ANIMATIONS (Liora + extras)
   ════════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  0%   { opacity: 0; transform: translateY(28px); filter: blur(6px); }
  100% { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes floatRotate {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
@keyframes shine {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.2); }
}
@keyframes gentleRotate {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* fade-up agora aguarda IntersectionObserver — começa invisível */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
}
.fade-up.is-in {
  animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-up.d1.is-in { animation-delay: 0.10s; }
.fade-up.d2.is-in { animation-delay: 0.22s; }
.fade-up.d3.is-in { animation-delay: 0.34s; }
.fade-up.d4.is-in { animation-delay: 0.46s; }
.fade-up.d5.is-in { animation-delay: 0.58s; }
.fade-up.d6.is-in { animation-delay: 0.70s; }

/* Hero load anima imediatamente (não espera scroll) */
.fade-up-load {
  opacity: 0;
  animation: fadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-up-load.d1 { animation-delay: 0.10s; }
.fade-up-load.d2 { animation-delay: 0.22s; }
.fade-up-load.d3 { animation-delay: 0.34s; }
.fade-up-load.d4 { animation-delay: 0.46s; }

.float-soft { animation: floatSoft 7s ease-in-out infinite; }
.float-rotate { animation: floatRotate 8s ease-in-out infinite; }

/* ════════════════════════════════════════════════════════════════
   BLOBS animados — flutuam e respiram suave
   ════════════════════════════════════════════════════════════════ */
@keyframes blobDance1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.12); }
  66%      { transform: translate(-30px, 25px) scale(0.92); }
}
@keyframes blobDance2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%      { transform: translate(-35px, 30px) scale(1.08); }
  75%      { transform: translate(28px, -20px) scale(0.95); }
}
@keyframes blobDance3 {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  50%      { transform: translate(20px, 15px) scale(1.15) rotate(8deg); }
}
.blob--cyan   { animation: blobDance1 22s ease-in-out infinite; }
.blob--pink   { animation: blobDance2 26s ease-in-out infinite; }
.blob--yellow { animation: blobDance3 20s ease-in-out infinite; }

/* ════════════════════════════════════════════════════════════════
   CURSOR SPOTLIGHT — pastel glow seguindo o mouse
   ════════════════════════════════════════════════════════════════ */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(242, 192, 203, 0.22) 0%,
    rgba(156, 215, 220, 0.14) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 9990;
  mix-blend-mode: multiply;
  filter: blur(30px);
  transform: translate(-50%, -50%);
  transition: opacity 0.4s ease;
  opacity: 0;
}
.cursor-spotlight.is-on { opacity: 1; }
@media (max-width: 880px) { .cursor-spotlight { display: none !important; } }

/* ════════════════════════════════════════════════════════════════
   SPRINKLES — partículas pastéis voando aleatoriamente
   ════════════════════════════════════════════════════════════════ */
.sprinkle-particle {
  position: fixed;
  bottom: -40px;
  pointer-events: none;
  z-index: 1;
  font-family: 'Urbanist', sans-serif;
  font-weight: 400;
  user-select: none;
  will-change: transform, opacity;
  animation-fill-mode: forwards;
}
@keyframes sprinkleFloat {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: var(--sprinkle-alpha, 0.65); }
  90% { opacity: var(--sprinkle-alpha, 0.65); }
  100% {
    transform: translate(var(--sprinkle-drift, 80px), -110vh) rotate(var(--sprinkle-spin, 720deg));
    opacity: 0;
  }
}

/* ════════════════════════════════════════════════════════════════
   COUNTER (stats) — número animando 0→target
   ════════════════════════════════════════════════════════════════ */
.counter[data-target]::after {
  content: var(--counter-suffix, '');
}

/* ════════════════════════════════════════════════════════════════
   ROYAL ICING DRIP — pingo de glace embaixo do título
   ════════════════════════════════════════════════════════════════ */
.icing-drip {
  position: relative;
  display: inline-block;
}
.icing-drip::after {
  content: '';
  position: absolute;
  bottom: -14px; left: 50%;
  width: 70%; height: 16px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--ju-pink) 0%, rgba(242, 192, 203, 0.30) 90%, transparent 100%);
  clip-path: polygon(
    0% 0%, 100% 0%,
    100% 30%, 96% 70%, 92% 30%,
    86% 80%, 82% 25%,
    76% 90%, 72% 40%, 68% 65%, 62% 20%,
    56% 78%, 50% 35%, 44% 88%,
    38% 30%, 32% 75%, 28% 20%,
    22% 95%, 18% 30%, 14% 70%, 8% 25%, 4% 80%, 0% 30%
  );
  animation: dripGlow 3.5s ease-in-out infinite;
}
.icing-drip--cyan::after {
  background: linear-gradient(180deg, var(--ju-cyan) 0%, rgba(156, 215, 220, 0.30) 90%, transparent 100%);
}
@keyframes dripGlow {
  0%, 100% { transform: translateX(-50%) scaleY(1); opacity: 0.85; }
  50%      { transform: translateX(-50%) scaleY(1.18); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   SCRIPT DRAW — texto cursive escrevendo (clip-path reveal)
   ════════════════════════════════════════════════════════════════ */
.script-draw {
  display: inline-block;
  position: relative;
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
.script-draw.is-in {
  animation: scriptDraw 1.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes scriptDraw {
  0% { clip-path: inset(0 100% 0 0); opacity: 0; }
  10% { opacity: 1; }
  100% { clip-path: inset(0 0% 0 0); opacity: 1; }
}

/* ════════════════════════════════════════════════════════════════
   3D TILT (cookie cards) — preparação
   ════════════════════════════════════════════════════════════════ */
.cookie-card {
  transform-style: preserve-3d;
  will-change: transform;
}
.tilt-active {
  transition: transform 0.1s ease-out !important;
}
.tilt-reset {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* ════════════════════════════════════════════════════════════════
   PAGE TRANSITION — Listras pastéis horizontais com stagger
   ════════════════════════════════════════════════════════════════ */
.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.page-curtain .stripe {
  flex: 1;
  width: 100%;
  will-change: transform;
}
.page-curtain .stripe-1 { background: linear-gradient(90deg, #F8D7DE 0%, var(--ju-pink) 60%, var(--ju-pink-dark) 100%); }
.page-curtain .stripe-2 { background: linear-gradient(90deg, #D6EEF1 0%, var(--ju-cyan) 60%, var(--ju-cyan-dark) 100%); }
.page-curtain .stripe-3 { background: linear-gradient(90deg, #FCE9EE 0%, var(--ju-pink) 60%, var(--ju-pink-dark) 100%); }
.page-curtain .stripe-4 { background: linear-gradient(90deg, #BCE4E8 0%, var(--ju-cyan) 60%, var(--ju-cyan-dark) 100%); }

/* Estado padrão (page load) — listras já cobrindo, deslizam pra direita */
.page-curtain .stripe {
  animation: stripeLeaveRight 0.65s cubic-bezier(0.65, 0, 0.35, 1) both;
}
.page-curtain .stripe-1 { animation-delay: 0s; }
.page-curtain .stripe-2 { animation-delay: 80ms; }
.page-curtain .stripe-3 { animation-delay: 160ms; }
.page-curtain .stripe-4 { animation-delay: 240ms; }

@keyframes stripeLeaveRight {
  0%   { transform: translateX(0); }
  100% { transform: translateX(110%); }
}

/* Quando clica no link — listras entram da esquerda cobrindo */
.page-curtain.is-rising .stripe {
  animation: stripeRiseFromLeft 0.65s cubic-bezier(0.65, 0, 0.35, 1) both;
}
.page-curtain.is-rising .stripe-1 { animation-delay: 0s; }
.page-curtain.is-rising .stripe-2 { animation-delay: 80ms; }
.page-curtain.is-rising .stripe-3 { animation-delay: 160ms; }
.page-curtain.is-rising .stripe-4 { animation-delay: 240ms; }

@keyframes stripeRiseFromLeft {
  0%   { transform: translateX(-110%); }
  100% { transform: translateX(0); }
}

/* Respeitar reduced motion */
@media (prefers-reduced-motion: reduce) {
  .page-curtain { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   NAV HIDE ON SCROLL
   ════════════════════════════════════════════════════════════════ */
.nav-wrap {
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-wrap.is-hidden {
  transform: translateY(-120%);
}

/* ════════════════════════════════════════════════════════════════
   STEPS-MINI — receita compacta (4 colunas) usada no Home
   Mesmo estilo do .step do processo.html mas reduzido
   ════════════════════════════════════════════════════════════════ */
.steps-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-mini {
  position: relative;
  padding: 30px 22px 26px;
  background: #FFFCF6;
  border: 1px solid var(--ju-line-strong);
  border-left: 4px solid var(--ju-pink-dark);
  background-image: repeating-linear-gradient(180deg,
    transparent 0,
    transparent 24px,
    rgba(220, 151, 167, 0.06) 24px,
    rgba(220, 151, 167, 0.06) 25px
  );
  box-shadow:
    0 6px 18px rgba(58, 42, 51, 0.07),
    0 2px 5px rgba(58, 42, 51, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.step-mini:nth-child(even) {
  border-left-color: var(--ju-cyan-dark);
}
.step-mini:hover {
  transform: translateY(-4px) rotate(0.4deg);
  box-shadow:
    0 14px 30px rgba(58, 42, 51, 0.12),
    0 4px 10px rgba(220, 151, 167, 0.10);
}
.step-mini:nth-child(even):hover {
  transform: translateY(-4px) rotate(-0.4deg);
}

/* Fita adesiva no topo */
.step-mini::before {
  content: '';
  position: absolute;
  top: -7px; left: 22px;
  width: 44px; height: 13px;
  background: rgba(156, 215, 220, 0.65);
  border: 1px solid rgba(93, 174, 183, 0.4);
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(58, 42, 51, 0.08);
  z-index: 2;
}
.step-mini:nth-child(even)::before {
  background: rgba(242, 192, 203, 0.65);
  border-color: rgba(220, 151, 167, 0.4);
  transform: rotate(3deg);
  left: auto; right: 22px;
}

.step-mini__num {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 62px;
  line-height: 0.92;
  color: var(--ju-pink-dark);
  margin-bottom: 6px;
}
.step-mini:nth-child(even) .step-mini__num {
  color: var(--ju-cyan-dark);
}

.step-mini__title {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--ju-text);
  margin: 0 0 10px;
}
.step-mini__title em {
  font-family: 'Caveat', cursive;
  font-style: italic;
  font-weight: 600;
  color: var(--ju-pink-dark);
}
.step-mini:nth-child(even) .step-mini__title em {
  color: var(--ju-cyan-dark);
}

.step-mini__text {
  font-family: 'Urbanist', sans-serif;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ju-text-2);
  margin: 0;
}

@media (max-width: 900px) {
  .steps-mini { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 520px) {
  .steps-mini { grid-template-columns: 1fr; }
  .step-mini__num { font-size: 54px; }
  .step-mini__title { font-size: 26px; }
}

/* ════════════════════════════════════════════════════════════════
   SCROLL-REVEAL bidirecional GLOBAL
   Aplica em todos os elementos significativos via .scroll-reveal
   (adicionado automaticamente pelo JS)
   ════════════════════════════════════════════════════════════════ */
/* ESTADO INICIAL: oculto antes do JS calcular — evita flash de valor errado
   Quando JS roda o primeiro update() sincronamente, ele adiciona .scroll-reveal-ready
   no <html> e os elementos passam a usar as CSS variables. */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  will-change: opacity, transform;
}
html.scroll-reveal-ready .scroll-reveal {
  opacity: var(--scroll-opacity, 1);
  transform: translate3d(0, var(--scroll-y, 0), 0);
  /* SEM transition: JS rAF atualiza a 60fps; transition CSS gera conflito/snap */
}
/* Fallback: se JS falhar, mostrar tudo */
html.no-js .scroll-reveal,
html.no-js .scroll-fade,
html.no-js .gallery-item {
  opacity: 1 !important;
  transform: none !important;
}

.scroll-fade,
.gallery-item {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.98);
  will-change: opacity, transform;
}
html.scroll-reveal-ready .scroll-fade,
html.scroll-reveal-ready .gallery-item {
  opacity: var(--scroll-opacity, 1);
  transform: translate3d(0, var(--scroll-y, 0), 0) scale(var(--scroll-scale, 1));
}

/* Respeita prefers-reduced-motion: tudo visível sempre */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .scroll-fade,
  .gallery-item,
  html.scroll-reveal-ready .scroll-reveal,
  html.scroll-reveal-ready .scroll-fade,
  html.scroll-reveal-ready .gallery-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Opt-out por página (ex: <body class="no-scroll-fx"> na galeria) */
body.no-scroll-fx .scroll-reveal,
body.no-scroll-fx .scroll-fade,
body.no-scroll-fx .gallery-item {
  opacity: 1 !important;
  transform: none !important;
}

/* FILTER (galeria) — display none pros que não combinam com a categoria
   (animação de troca = skeleton shimmer, definido no <style> da galeria.html) */
.gallery-item.is-hidden {
  display: none !important;
}

/* ════════════════════════════════════════════════════════════════
   PILL DOT — fica preto e branco em alguns lugares
   ════════════════════════════════════════════════════════════════ */
.script-shine {
  background: linear-gradient(
    90deg,
    var(--ju-pink-dark) 0%,
    var(--ju-cyan-dark) 25%,
    var(--ju-pink-dark) 50%,
    var(--ju-cyan-dark) 75%,
    var(--ju-pink-dark) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ════════════════════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ════════════════════════════════════════════════════════════════ */
.dotted-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(220, 151, 167, 0.18) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.65;
}
.dotted-bg--cyan {
  background-image: radial-gradient(circle at 1px 1px, rgba(93, 174, 183, 0.18) 1px, transparent 0);
}
.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58, 42, 51, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 42, 51, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.blob--cyan { background: rgba(156, 215, 220, 0.55); }
.blob--pink { background: rgba(242, 192, 203, 0.55); }
.blob--yellow { background: rgba(246, 226, 162, 0.40); }

/* SVG sprinkle decorativo */
.sprinkle {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* ════════════════════════════════════════════════════════════════
   NAV — sticky glass pill
   ════════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: sticky; top: 18px;
  z-index: 50;
  display: flex; justify-content: center;
  padding: 18px 24px 0;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
  width: 100%; max-width: 1200px;
  padding: 12px 18px 12px 28px;
  background: var(--ju-surface-strong);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--ju-line);
  border-radius: 100px;
  box-shadow: var(--ju-shadow-soft);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 12px;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #fff;
  border: 1px solid var(--ju-line);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(220, 151, 167, 0.30);
}
.nav-brand-mark img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.nav-brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
  color: var(--ju-text);
  letter-spacing: -0.02em;
}
.nav-brand-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ju-pink-dark);
  margin-top: 3px;
}
.nav-links {
  display: flex; gap: 26px;
  font-size: 14px;
  color: var(--ju-text-soft);
  font-weight: 500;
}
.nav-links a {
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--ju-text); }
.nav-links a.is-active {
  color: var(--ju-cyan-dark);
  font-weight: 600;
}
.nav-links a.is-active::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ju-cyan-dark);
  border-radius: 1px;
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--ju-cyan);
  color: var(--ju-text);
  border: 1px solid var(--ju-cyan-dark);
  border-radius: 100px;
  font-size: 13px; font-weight: 600;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: var(--ju-cyan-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(93, 174, 183, 0.32);
}

/* ═══════════════ MOBILE NAV — bottom sheet limpo ═══════════════
   Markup: botão DENTRO do nav + overlay/painel FORA (no body level).
   Painel imune a containing-block bugs do nav (backdrop-filter, etc).
   Controle 100% via JS pra zero ambiguidade. */
.mobile-nav-btn,
.mobile-nav-overlay,
.mobile-nav-panel {
  display: none;
}

@media (max-width: 880px) {
  /* esconde nav-links e nav-cta originais */
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .nav {
    gap: 12px;
    padding: 8px 10px 8px 16px;
  }
  /* Topbar FIXA no mobile — sempre visível */
  .nav-wrap {
    position: fixed !important;
    top: 8px;
    left: 0;
    right: 0;
    padding: 0 12px;
    z-index: 100;
    transform: none !important;
  }
  body { padding-top: 66px; }
  .nav-brand-mark { width: 38px; height: 38px; }
  .nav-brand-name { font-size: 17px; }
  .nav-brand-sub { font-size: 8px; letter-spacing: 0.18em; }

  /* ═════════ BOTÃO HAMBURGER (no nav) ═════════ */
  .mobile-nav-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: var(--ju-surface-strong);
    border: 1px solid var(--ju-line);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    transition: background 0.2s ease;
  }
  .mobile-nav-btn:active { background: var(--ju-bg-2); }
  .mobile-nav-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ju-text);
    border-radius: 100px;
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
  }
  .mobile-nav-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-nav-btn.is-open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ═════════ OVERLAY (backdrop escuro) ═════════ */
  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(36, 28, 32, 0.55);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ═════════ PAINEL (bottom sheet) ═════════ */
  .mobile-nav-panel {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9100;
    background: linear-gradient(180deg, #FFFCF6 0%, var(--ju-bg-2) 100%);
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 14px 22px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    box-shadow: 0 -20px 50px rgba(36, 28, 32, 0.22);
    max-height: 78vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .mobile-nav-panel.is-open {
    transform: translateY(0);
  }

  /* Handle (pill cinza no topo) */
  .mobile-nav-panel__handle {
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(58, 42, 51, 0.22);
    border-radius: 100px;
    margin: 0 auto 18px;
    flex-shrink: 0;
  }

  /* Links */
  .mobile-nav-panel a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 6px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    font-weight: 500;
    color: var(--ju-text);
    text-decoration: none;
    border-bottom: 1px solid var(--ju-line);
    letter-spacing: -0.01em;
  }
  .mobile-nav-panel a:last-of-type {
    border-bottom: none;
  }
  .mobile-nav-panel a::after {
    content: '→';
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-size: 17px;
    color: var(--ju-text-mute);
    margin-left: 12px;
  }
  .mobile-nav-panel a.is-active {
    color: var(--ju-pink-dark);
    font-weight: 600;
  }
  .mobile-nav-panel a.is-active::after {
    color: var(--ju-pink-dark);
  }

  /* Trava scroll quando menu aberto */
  body.is-menu-open {
    overflow: hidden;
  }
}

/* ════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.btn__arrow { transition: transform 0.3s ease; display: inline-block; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--ju-cyan);
  color: var(--ju-text);
  border-color: var(--ju-cyan-dark);
}
.btn-primary:hover {
  background: var(--ju-cyan-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(93, 174, 183, 0.34);
}

.btn-pink {
  background: var(--ju-pink);
  color: var(--ju-text);
  border-color: var(--ju-pink-dark);
}
.btn-pink:hover {
  background: var(--ju-pink-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 151, 167, 0.34);
}

.btn-ghost {
  background: transparent;
  color: var(--ju-text);
  border-color: var(--ju-line-strong);
}
.btn-ghost:hover {
  background: var(--ju-cream);
  border-color: var(--ju-text-soft);
  transform: translateY(-2px);
}

.btn-wa {
  background: #8FC9A8;          /* sage mint suave (era #25D366) */
  color: var(--ju-text);
  border-color: #6FAE8A;
}
.btn-wa:hover {
  background: #6FAE8A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(111, 174, 138, 0.34);
}

/* ════════════════════════════════════════════════════════════════
   SECTIONS
   ════════════════════════════════════════════════════════════════ */
.section {
  padding: 100px 28px;
  position: relative;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--ju-cyan-dark);
  letter-spacing: 0.20em; text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px;
  background: var(--ju-cyan-dark);
}
.eyebrow--pink { color: var(--ju-pink-dark); }
.eyebrow--pink::before { background: var(--ju-pink-dark); }

.section-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--ju-text);
  margin-bottom: 18px;
}
.section-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ju-pink-dark);
}
.section-title em.cyan { color: var(--ju-cyan-dark); }

.section-lead {
  font-size: 17px; line-height: 1.7;
  color: var(--ju-text-soft);
  max-width: 56ch;
}

/* ════════════════════════════════════════════════════════════════
   CARDS — base
   ════════════════════════════════════════════════════════════════ */
.card {
  background: var(--ju-surface-strong);
  border: 1px solid var(--ju-line);
  padding: 28px;
  box-shadow: var(--ju-shadow-soft);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ju-shadow);
  border-color: var(--ju-line-strong);
}

/* ── COOKIE CARD — pattern principal pra fotos categorizadas ── */
.cookie-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(245, 235, 227, 0.98) 100%);
  border: 1px solid var(--ju-line);
  box-shadow: var(--ju-shadow-soft);
  cursor: pointer;
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.cookie-card:hover {
  box-shadow:
    0 30px 60px rgba(58, 42, 51, 0.18),
    0 12px 24px rgba(220, 151, 167, 0.14);
  border-color: var(--ju-pink);
}
.cookie-card--cyan {
  background: linear-gradient(180deg, rgba(214, 238, 241, 0.96) 0%, rgba(188, 228, 232, 0.98) 100%);
}
.cookie-card--pink {
  background: linear-gradient(180deg, rgba(252, 233, 238, 0.96) 0%, rgba(248, 215, 222, 0.98) 100%);
}

.cookie-card__media {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  background: var(--ju-bg-2);
  aspect-ratio: 4 / 3;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 10px 24px rgba(58, 42, 51, 0.10);
}
.cookie-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-card:hover .cookie-card__media img {
  transform: scale(1.08);
}
/* Gradient escuro no rodapé apenas em GALERIA (cards clicáveis) */
.gallery-item.cookie-card .cookie-card__media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(58, 42, 51, 0.0) 55%, rgba(58, 42, 51, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery-item.cookie-card .cookie-card__media::after {
  content: 'Ver detalhes →';
  position: absolute;
  bottom: 14px; right: 14px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--ju-pink-dark);
  padding: 9px 14px;
  border-radius: 100px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 6px 14px rgba(220, 151, 167, 0.40);
}
.gallery-item.cookie-card:hover .cookie-card__media::before { opacity: 1; }
.gallery-item.cookie-card:hover .cookie-card__media::after {
  opacity: 1;
  transform: translateY(0);
}

.cookie-card__badge-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.cookie-card__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(156, 215, 220, 0.22);
  color: var(--ju-cyan-darker);
  border: 1px solid rgba(93, 174, 183, 0.30);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.cookie-card__badge--pink {
  background: rgba(242, 192, 203, 0.30);
  color: var(--ju-pink-darker);
  border-color: rgba(220, 151, 167, 0.40);
}
.cookie-card__index {
  color: var(--ju-text-mute);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}
.cookie-card__title {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ju-text);
}
.cookie-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ju-text-soft);
  margin: 0;
  flex: 1;
}
.cookie-card__meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--ju-line);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ju-text-mute);
}
.cookie-card__meta-item { display: inline-flex; align-items: center; gap: 5px; }
.cookie-card__meta-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--ju-cyan);
}
.cookie-card__meta-item:nth-child(2) .cookie-card__meta-dot { background: var(--ju-pink); }

/* ── PILL ── */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--ju-text-soft);
  background: var(--ju-surface-strong);
  border: 1px solid var(--ju-line);
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.pill-cyan {
  background: rgba(156, 215, 220, 0.22);
  color: var(--ju-cyan-darker);
  border-color: rgba(93, 174, 183, 0.40);
}
.pill-pink {
  background: rgba(242, 192, 203, 0.28);
  color: var(--ju-pink-darker);
  border-color: rgba(220, 151, 167, 0.45);
}
.pill__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ju-cyan);
  animation: dotPulse 2s ease-in-out infinite;
}
.pill-pink .pill__dot { background: var(--ju-pink-dark); }

/* ════════════════════════════════════════════════════════════════
   HERO — frame com decoração rica
   ════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 30px 24px 60px;
  background: linear-gradient(180deg, var(--ju-bg) 0%, #f1e8e3 50%, #e8eff0 100%);
}
.hero-shell {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.hero-frame {
  position: relative;
  min-height: 700px;
  background: linear-gradient(135deg, #f6ecdf 0%, #ede0d0 60%, #e2d5c5 100%);
  border: 1px solid var(--ju-line);
  overflow: hidden;
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: var(--ju-shadow);
}
.hero-frame > .blob--cyan { width: 460px; height: 460px; top: -140px; right: -120px; opacity: 0.70; }
.hero-frame > .blob--pink { width: 380px; height: 380px; bottom: -140px; left: -100px; opacity: 0.75; }
.hero-frame > .blob--yellow { width: 280px; height: 280px; top: 50%; left: 40%; opacity: 0.30; }

.hero-content {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  padding: 72px 56px 60px;
  align-items: center;
  min-height: 700px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px;
  background: rgba(255, 252, 248, 0.7);
  border: 1px solid var(--ju-line);
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  color: var(--ju-pink-dark);
  letter-spacing: 0.18em; text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ju-pink-dark);
  animation: dotPulse 2s ease-in-out infinite;
}
.hero-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, 6.4vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ju-text);
  margin-bottom: 28px;
}
.hero-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ju-pink-dark);
}
.hero-desc {
  font-size: 18px; line-height: 1.65;
  color: var(--ju-text-2);
  max-width: 48ch;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* hero photo (right) — foto da Juliana grande */
.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 5;
  margin: 0 auto;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  top: -30px; right: -25px;
  width: 130px; height: 130px;
  background: var(--ju-cyan);
  border-radius: 50%;
  opacity: 0.65;
  z-index: -1;
}
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -35px; left: -30px;
  width: 110px; height: 110px;
  background: var(--ju-pink);
  border-radius: 50%;
  opacity: 0.7;
  z-index: -1;
}
.hero-photo {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: var(--ju-bg-2);
  border: 2px solid var(--ju-line-strong);
  clip-path: polygon(22px 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%, 0 22px);
  box-shadow: var(--ju-shadow-lift);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-photo-badge {
  position: absolute;
  bottom: 22px; left: 22px;
  background: rgba(255, 252, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 20px;
  border: 1px solid var(--ju-line-strong);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  box-shadow: 0 6px 14px rgba(58, 42, 51, 0.10);
}
.hero-photo-badge__eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ju-pink-dark);
}
.hero-photo-badge__name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ju-text);
  margin-top: 4px;
  letter-spacing: -0.015em;
}
.hero-photo-stamp {
  position: absolute;
  top: 22px; right: 22px;
  padding: 8px 14px;
  background: var(--ju-pink-dark);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  transform: rotate(6deg);
  box-shadow: 0 0 0 3px rgba(220, 151, 167, 0.30), 0 6px 14px rgba(220, 151, 167, 0.30);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

@media (max-width: 980px) {
  .hero-photo-wrap { max-width: 380px; }
}

.hero-trust {
  display: flex; align-items: center; gap: 14px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(58, 42, 51, 0.1);
}
.hero-trust-stack {
  display: flex;
}
.hero-trust-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--ju-bg);
  margin-left: -8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
}
.hero-trust-dot:first-child { margin-left: 0; background: var(--ju-cyan); }
.hero-trust-dot:nth-child(2) { background: var(--ju-pink); }
.hero-trust-dot:nth-child(3) { background: var(--ju-yellow); }
.hero-trust-text {
  font-size: 13px; color: var(--ju-text-soft);
  line-height: 1.4;
}
.hero-trust-text strong { color: var(--ju-text); font-weight: 700; }

@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; padding: 48px 32px; gap: 36px; }
  .hero-card { padding: 24px; }
}

/* ════════════════════════════════════════════════════════════════
   PAGE HEADER (sub-pages: sobre, galeria, processo, contato)
   ════════════════════════════════════════════════════════════════ */
.page-header {
  position: relative;
  padding: 96px 28px 60px;
  background: linear-gradient(180deg, var(--ju-bg) 0%, var(--ju-bg-2) 100%);
  border-bottom: 1px solid var(--ju-line);
  overflow: hidden;
}
.page-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative; z-index: 2;
}
.page-header h1 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ju-text);
  margin-bottom: 18px;
}
.page-header h1 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ju-pink-dark);
}
.page-header p {
  font-size: 17px; line-height: 1.65;
  color: var(--ju-text-soft);
  max-width: 56ch;
  margin: 0 auto;
}
.page-header > .blob--cyan { width: 360px; height: 360px; top: -100px; right: -80px; opacity: 0.45; }
.page-header > .blob--pink { width: 320px; height: 320px; bottom: -100px; left: -80px; opacity: 0.45; }

/* ════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 28px 32px;
  background: linear-gradient(180deg, var(--ju-bg-2) 0%, var(--ju-bg-3) 100%);
  border-top: 1px solid var(--ju-line);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(220, 151, 167, 0.10) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  position: relative; z-index: 2;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--ju-text);
  letter-spacing: -0.02em;
}
.footer-brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--ju-cyan) 0%, var(--ju-pink) 100%);
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(220, 151, 167, 0.30);
}
.footer-bio {
  margin-top: 18px; max-width: 38ch;
  font-size: 14px; color: var(--ju-text-soft); line-height: 1.6;
}
.footer-pills {
  display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap;
}
.footer h5 {
  font-size: 11px; font-weight: 700;
  color: var(--ju-pink-darker);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer a {
  font-size: 14px; color: var(--ju-text);
  transition: color 0.2s;
}
.footer a:hover { color: var(--ju-cyan-dark); }
.footer-meta {
  color: var(--ju-text-soft);
  font-size: 14px;
}

.footer-base {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--ju-line);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 12px; color: var(--ju-text-mute);
  position: relative; z-index: 2;
}
.footer-base-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--ju-pink-dark);
}

@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   CTA BAND — mockup de conversa WhatsApp simulada
   ════════════════════════════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 90px 28px;
  background: linear-gradient(135deg, rgba(156, 215, 220, 0.18) 0%, rgba(242, 192, 203, 0.20) 100%);
  border-top: 1px solid var(--ju-line);
  border-bottom: 1px solid var(--ju-line);
  overflow: hidden;
}
.cta-band-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-band-text { text-align: left; }
.cta-band h2 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.cta-band h2 em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--ju-pink-dark);
}
.cta-band p {
  font-size: 17px; line-height: 1.65;
  color: var(--ju-text-soft);
  max-width: 42ch;
  margin: 0 0 28px;
}
.cta-band-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; }
.cta-band > .blob--cyan { width: 300px; height: 300px; top: -80px; left: -60px; opacity: 0.50; }
.cta-band > .blob--pink { width: 300px; height: 300px; bottom: -80px; right: -60px; opacity: 0.50; }

/* ─── WhatsApp Mockup ─── */
.wa-mockup {
  position: relative;
  max-width: 380px;
  background: #ECE5DD;          /* WhatsApp chat bg classic */
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(58, 42, 51, 0.18),
    0 8px 20px rgba(58, 42, 51, 0.10),
    0 0 0 8px rgba(58, 42, 51, 0.06);
  margin: 0 auto;
}
.wa-mockup__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #075E54;
  color: #fff;
}
.wa-mockup__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ju-cyan) 0%, var(--ju-pink) 100%);
  display: grid; place-items: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}
.wa-mockup__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.wa-mockup__name {
  font-family: 'Urbanist', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #fff;
}
.wa-mockup__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}
.wa-mockup__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00FF7F;
  animation: dotPulse 2s ease-in-out infinite;
}
.wa-mockup__call-icons {
  display: flex; gap: 18px;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}
.wa-mockup__messages {
  padding: 18px 14px 20px;
  background: #ECE5DD;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.4) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 22px 22px, 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
}
.wa-mockup__bubble {
  max-width: 80%;
  padding: 9px 12px 18px;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #303030;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.10);
  word-wrap: break-word;
}
.wa-mockup__bubble--in {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  align-self: flex-start;
}
.wa-mockup__bubble--in::before {
  content: '';
  position: absolute;
  bottom: 0; left: -6px;
  width: 12px; height: 12px;
  background: #fff;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.wa-mockup__bubble--out {
  background: #DCF8C6;
  border-radius: 8px 8px 2px 8px;
  align-self: flex-end;
}
.wa-mockup__bubble--out::before {
  content: '';
  position: absolute;
  bottom: 0; right: -6px;
  width: 12px; height: 12px;
  background: #DCF8C6;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.wa-mockup__time {
  position: absolute;
  bottom: 4px; right: 8px;
  font-size: 10px;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.wa-mockup__check {
  color: #4FC3F7;
  font-size: 11px;
}

/* Bubble CTA (último, com ação) */
.wa-mockup__cta {
  display: block;
  text-decoration: none;
  background: #8FC9A8;
  color: var(--ju-text);
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 14px 18px;
  margin: 4px 8px 0;
  border-radius: 10px;
  border: 1px solid #6FAE8A;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.04em;
}
.wa-mockup__cta:hover {
  background: #6FAE8A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 174, 138, 0.34);
}

/* Typing indicator (3 dots) */
.wa-mockup__typing {
  display: inline-flex;
  gap: 4px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  align-self: flex-start;
}
.wa-mockup__typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #999;
  animation: typingBounce 1.4s ease-in-out infinite;
}
.wa-mockup__typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-mockup__typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

@media (max-width: 880px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .cta-band-text { text-align: center; }
  .cta-band p { margin-left: auto; margin-right: auto; }
  .cta-band-buttons { justify-content: center; }
}

/* ════════════════════════════════════════════════════════════════
   FEATURES CARDS — home "Mais que cookie é carinho embalado"
   Com laço (bow) decorativo no topo
   ════════════════════════════════════════════════════════════════ */
.features-grid {
  padding-top: 28px;
}
.feature-card {
  position: relative;
  padding: 44px 28px 28px;
  background: var(--ju-surface-strong);
  border: 1px solid var(--ju-line);
  clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  box-shadow: var(--ju-shadow-soft);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ju-shadow-lift);
}
.feature-card--cyan {
  background: linear-gradient(180deg, var(--ju-cyan-3) 0%, #FFFCF8 60%);
  border-color: rgba(93, 174, 183, 0.3);
}
.feature-card--pink {
  background: linear-gradient(180deg, var(--ju-pink-3) 0%, #FFFCF8 60%);
  border-color: rgba(220, 151, 167, 0.3);
}

/* Laço (bow) absoluto no topo do card */
.feature-bow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(58, 42, 51, 0.10));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .feature-bow {
  transform: translateX(-50%) rotate(-8deg) scale(1.08);
}

/* Fita vertical descendo do laço */
.feature-card::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 22px;
  background: rgba(220, 151, 167, 0.4);
}
.feature-card--cyan::after { background: rgba(93, 174, 183, 0.4); }

.feature-icon {
  font-size: 38px;
  margin-bottom: 18px;
  display: inline-block;
  filter: drop-shadow(0 2px 4px rgba(58, 42, 51, 0.08));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-6deg);
}

.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--ju-text);
}
.feature-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ju-text-soft);
  margin: 0;
}

/* ════════════════════════════════════════════════════════════════
   GRID UTILS
   ════════════════════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   ╔══════════════════════════════════════════════════════════════╗
   ║   MOBILE OPTIMIZATION (≤ 880px) — site profissional compacto ║
   ╚══════════════════════════════════════════════════════════════╝
   ════════════════════════════════════════════════════════════════ */

/* Utils responsive — DESKTOP esconde .mobile-only, MOBILE esconde .mobile-hide */
.mobile-only { display: none; }
@media (max-width: 880px) {
  .mobile-only { display: revert !important; }
  .mobile-hide { display: none !important; }
}

/* No mobile: scroll-reveal totalmente desativado. Tudo visível.
   A animação .fade-up (IntersectionObserver one-shot) continua funcionando
   em elementos que tem essa classe no markup — disparam quando entram
   no viewport. Mais leve, mais profissional, sem chance de bug. */
@media (max-width: 880px) {
  .scroll-reveal,
  html.scroll-reveal-ready .scroll-reveal,
  .scroll-fade,
  html.scroll-reveal-ready .scroll-fade,
  .gallery-item,
  html.scroll-reveal-ready .gallery-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 880px) {
  /* === EVITA OVERFLOW HORIZONTAL (blobs vazando) === */
  html, body { overflow-x: hidden; }

  /* === GENERAL: reduzir paddings das sections === */
  .section { padding: 48px 16px; }
  .section-inner { padding: 0; }
  .section-head { margin-bottom: 28px; }
  .section-title { font-size: 30px; line-height: 1.08; letter-spacing: -0.025em; }
  .section-lead { font-size: 15px; line-height: 1.55; }

  /* === PAGE HEADER === */
  .page-header {
    padding: 44px 18px 32px !important;
    min-height: auto !important;
  }
  .page-header h1 {
    font-size: 36px !important;
    line-height: 1.05 !important;
    margin: 12px 0 14px !important;
    letter-spacing: -0.025em;
  }
  .page-header p {
    font-size: 14.5px;
    line-height: 1.55;
  }
  .page-header .eyebrow { font-size: 10.5px; }

  /* === HERO — colapsar a moldura gigante === */
  .hero {
    padding: 20px 12px 32px !important;
    min-height: auto !important;
  }
  .hero-shell { padding: 0; }
  .hero-frame {
    min-height: auto !important;
    border-radius: 18px;
    clip-path: polygon(16px 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%, 0 16px);
  }
  .hero-content {
    grid-template-columns: 1fr !important;
    padding: 30px 22px 32px !important;
    gap: 24px !important;
    min-height: auto !important;
    text-align: center;
  }
  .hero-content > div { width: 100%; }
  .hero-content h1,
  .hero-title { font-size: 38px !important; line-height: 1.02 !important; letter-spacing: -0.03em; margin-bottom: 16px !important; }
  .hero-content p,
  .hero-desc { font-size: 14.5px !important; line-height: 1.55 !important; max-width: 100% !important; margin: 0 auto 22px !important; }
  .hero-eyebrow { font-size: 10px !important; padding: 6px 12px !important; margin-bottom: 14px !important; }
  .hero-cta { justify-content: center; gap: 10px; }
  .hero-photo-wrap { max-width: 240px !important; margin: 0 auto !important; }
  .hero-photo-wrap::before,
  .hero-photo-wrap::after { display: none; }
  .hero-photo-badge { display: none; }
  .hero-photo-stamp { display: none; }
  .hero-stats { gap: 10px !important; margin-top: 18px !important; grid-template-columns: repeat(3, 1fr) !important; }
  .hero-stats .stat { padding: 10px 6px !important; }
  .hero-stats .stat strong { font-size: 22px !important; }
  .hero-stats .stat span { font-size: 9px !important; }
  .hero-trust { display: none; }

  /* === BLOBS DENTRO DO HERO-FRAME — bem menores === */
  .hero-frame > .blob--cyan { width: 200px !important; height: 200px !important; top: -60px !important; right: -60px !important; }
  .hero-frame > .blob--pink { width: 200px !important; height: 200px !important; bottom: -60px !important; left: -60px !important; }
  .hero-frame > .blob--yellow { display: none; }

  /* === BLOBS / DECORATIVOS GERAIS === */
  .blob { opacity: 0.50; }
  .blob--cyan, .blob--pink { width: 220px; height: 220px; }
  .dotted-bg { opacity: 0.18; }

  /* === BUTTONS === */
  .btn { padding: 11px 18px; font-size: 13.5px; }
  .btn-wa { padding: 13px 22px; font-size: 14px; }

  /* === CARDS === */
  .card { padding: 22px 18px; }
  .cookie-card { padding: 16px; }
  .cookie-card__title { font-size: 19px; margin-bottom: 6px; }
  .cookie-card__desc { font-size: 13px; line-height: 1.5; }
  .cookie-card__badge { font-size: 9px; padding: 5px 10px; letter-spacing: 0.12em; }
  .cookie-card__media { margin-bottom: 14px; }

  /* === FEATURE-GRID (Home — "Mais que cookie") — 2x2 grid === */
  .features-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .feature-card { padding: 26px 14px 16px !important; }
  .feature-card h4 { font-size: 15px !important; margin-bottom: 6px !important; }
  .feature-card p { font-size: 12px !important; line-height: 1.45 !important; }
  .feature-bow { transform: translateX(-50%) scale(0.8) !important; }

  /* === STEPS-MINI (Home — "Do briefing à embalagem") — 2x2 grid === */
  .steps-mini {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .step-mini { padding: 22px 14px 16px !important; }
  .step-mini__num { font-size: 40px !important; margin-bottom: 0 !important; line-height: 0.9; }
  .step-mini__title { font-size: 20px !important; margin-bottom: 4px !important; line-height: 1.05; }
  .step-mini__text { font-size: 12px !important; line-height: 1.45 !important; }
  .step-mini::before { width: 32px !important; height: 10px !important; top: -5px !important; }

  /* === STEP (Processo "Como funciona") — diminuir VERTICAL, 1 coluna === */
  .steps { padding: 44px 14px; }
  .step {
    padding: 20px 18px 18px !important;
    margin-bottom: 14px !important;
    gap: 8px !important;
    grid-template-columns: 80px 1fr !important;
  }
  .step__num { font-size: 46px !important; line-height: 0.92 !important; }
  .step__body h3 { font-size: 22px !important; margin-bottom: 4px !important; line-height: 1.05; }
  .step__body p { font-size: 13.5px !important; line-height: 1.5 !important; margin-bottom: 8px !important; }
  /* Esconde lista de detalhes (✓ verificações) e meta — info opcional */
  .step__list { display: none !important; }
  .step__meta { font-size: 13px !important; padding: 6px 12px !important; margin-top: 8px !important; transform: none !important; }
  .step::before { width: 36px !important; height: 12px !important; top: -6px !important; left: 18px !important; }
  .step:nth-child(even)::before { right: 18px !important; }

  /* === VALUE CARDS (Sobre — polaroids) — diminuir VERTICAL, 1 coluna === */
  .values-grid {
    gap: 18px !important;
    margin-top: 20px !important;
    grid-template-columns: 1fr !important;
  }
  .value-card {
    padding: 10px 10px 16px !important;
    transform: none !important;
    margin-top: 0 !important;
  }
  .value-card:nth-child(2),
  .value-card:nth-child(3) { margin-top: 0 !important; }
  .value-card__photo {
    height: 110px !important;
    font-size: 48px !important;
    margin-bottom: 8px !important;
  }
  .value-card__caption { font-size: 20px !important; line-height: 1.1 !important; }
  .value-card__text { font-size: 12.5px !important; line-height: 1.45 !important; margin-top: 4px !important; }

  /* === UTILS — mobile hide/show === */
  .mobile-hide { display: none !important; }
  .mobile-only { display: revert; }

  /* === MOBILE NAV — Numeração editorial + acento rosa === */
  .mobile-nav-panel a {
    padding: 16px 4px 16px 14px !important;
    gap: 14px !important;
    justify-content: flex-start !important;
    position: relative;
    transition: padding 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.22s ease;
  }
  .mobile-nav-panel a .num {
    font-family: 'JetBrains Mono', monospace;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--ju-text-mute);
    flex-shrink: 0;
    align-self: center;
    transition: color 0.22s ease;
  }
  .mobile-nav-panel a .label {
    flex: 1;
  }
  .mobile-nav-panel a::after {
    margin-left: auto !important;
  }
  /* Item ativo: barra rosa vertical à esquerda + número rosa */
  .mobile-nav-panel a.is-active {
    padding-left: 22px;
  }
  .mobile-nav-panel a.is-active::before {
    content: '';
    position: absolute;
    left: 4px; top: 50%;
    width: 3px; height: 26px;
    background: var(--ju-pink-dark);
    border-radius: 100px;
    transform: translateY(-50%);
  }
  .mobile-nav-panel a.is-active .num {
    color: var(--ju-pink-dark);
  }
  /* Hover/touch: pequeno indent + cor */
  .mobile-nav-panel a:active {
    padding-left: 20px;
    color: var(--ju-pink-dark);
  }
  .mobile-nav-panel a:active .num {
    color: var(--ju-pink-dark);
  }

  /* === FAQ === */
  .faq { padding: 56px 16px; }
  .faq-item { margin-bottom: 12px; }
  .faq-item__head { padding: 18px 18px; }
  .faq-item__q { font-size: 15px; line-height: 1.4; }
  .faq-item__body { padding: 0 18px 18px; font-size: 14px; line-height: 1.55; }

  /* === STATS BARS === */
  .stat-bar { padding: 22px 16px; gap: 6px; }
  .stat-bar strong { font-size: 32px; }
  .stat-bar span { font-size: 11px; }
  .stats-grid { gap: 12px; }

  /* === GALLERY mobile — 2 colunas compactas === */
  .gallery-section { padding: 36px 12px 56px !important; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .gallery-filters {
    padding: 12px 12px 4px;
    gap: 7px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter {
    flex-shrink: 0;
    font-size: 11.5px;
    padding: 8px 12px;
    scroll-snap-align: start;
  }
  .gallery-count { font-size: 12px; padding: 7px 12px; }

  /* Cards compactos — aplicam em TODOS os cookie-cards no mobile
     (galeria + destaques do home) */
  .cookie-card {
    padding: 8px !important;
  }
  .cookie-card .cookie-card__media {
    margin-bottom: 8px !important;
    aspect-ratio: 1 / 1 !important;
  }
  .cookie-card .cookie-card__badge-row {
    margin-bottom: 4px !important;
    gap: 6px;
  }
  .cookie-card .cookie-card__badge {
    font-size: 8px !important;
    padding: 3px 7px !important;
    letter-spacing: 0.10em !important;
  }
  .cookie-card .cookie-card__index {
    display: none !important;
  }
  .cookie-card .cookie-card__title {
    font-size: 14px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    /* clamp em 2 linhas */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cookie-card .cookie-card__desc {
    display: none !important;
  }
  .cookie-card .cookie-card__meta {
    display: none !important;
  }
  .cookie-card .cookie-card__media::before,
  .cookie-card .cookie-card__media::after {
    display: none !important;
  }

  /* HOME: grid-3 (destaques) vira 2 colunas no mobile,
     igualzinho à galeria. Sobrescreve a regra de 640px → 1 coluna. */
  .grid-3 {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
}

@media (max-width: 420px) {
  .gallery-grid,
  .grid-3 { gap: 8px !important; }
  .cookie-card { padding: 6px !important; }
  .cookie-card .cookie-card__title { font-size: 13px !important; }
  .cookie-card .cookie-card__badge { font-size: 7.5px !important; padding: 2px 6px !important; }
}

@media (max-width: 880px) {
  /* === CONTACT — empilhar verticalmente === */
  .contact-section { padding: 40px 16px 70px; }
  .contact-grid { gap: 28px !important; }
  .carta-aberta { padding: 38px 22px 32px !important; }
  .carta-aberta__date { font-size: 17px; margin-bottom: 14px; }
  .carta-aberta__greeting { font-size: 30px !important; margin-bottom: 14px; }
  .carta-aberta__body { font-size: 19px !important; line-height: 1.45; }
  .carta-aberta__body p { margin-bottom: 10px; }
  .carta-aberta__sign { font-size: 38px !important; margin-top: 12px; }
  .btn-carta-wa { padding: 15px 22px !important; font-size: 15px !important; margin-top: 18px; }
  .carta-aberta__ps { padding: 12px 16px; font-size: 17px; margin-top: 20px; }
  .carta-aberta__ps strong { font-size: 19px; }
  .cookie-btn { padding: 10px 12px; gap: 14px; }
  .cookie-btn__circle { width: 64px !important; height: 64px !important; }
  .cookie-btn__circle svg { width: 26px; height: 26px; }
  .cookie-btn__name { font-size: 18px !important; }
  .cookie-btn__sub { font-size: 12px; }
  .cookie-btn__tag { font-size: 13px; padding: 2px 8px; }
  .contact-cookies-header { font-size: 22px; margin: 4px 0 12px 6px; }

  /* === CTA-BAND — drasticamente compacto === */
  .cta-band { padding: 32px 16px !important; }
  .cta-band-inner {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    text-align: center;
  }
  .cta-band-text { padding: 0 !important; }
  .cta-band h2 { font-size: 24px !important; line-height: 1.1 !important; margin-bottom: 8px !important; }
  .cta-band p { font-size: 13.5px !important; line-height: 1.5 !important; margin-bottom: 14px !important; }
  .cta-band-buttons {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 8px !important;
    margin-top: 0 !important;
  }
  .cta-band-buttons .btn { padding: 11px 18px !important; font-size: 13px !important; }
  .font-script { font-size: 22px !important; margin-bottom: 2px !important; display: block; }
  /* WhatsApp mockup escondido no mobile — o botão WA já basta */
  .cta-band .wa-mockup { display: none !important; }
  /* blobs/decorations do cta-band reduzidos */
  .cta-band .blob { display: none; }

  /* === FOOTER — minimal: só logo + contato + copyright === */
  .footer { padding: 22px 16px 14px !important; }
  .footer-inner {
    gap: 14px !important;
    grid-template-columns: 1fr !important;
    text-align: left;
  }
  /* Esconde elementos redundantes no mobile */
  .footer-bio { display: none !important; }
  .footer-pills { display: none !important; }
  /* Esconde colunas "Navegar" (já tem no hamburger) e "Atendimento" (já tem em Contato) */
  .footer-inner > div:nth-child(2),
  .footer-inner > div:nth-child(4) {
    display: none !important;
  }
  /* Logo compacto */
  .footer-brand {
    font-size: 17px !important;
    margin-bottom: 2px !important;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .footer-brand-mark {
    width: 30px !important; height: 30px !important;
    font-size: 14px !important;
  }
  /* Coluna Contato compacta */
  .footer h5 {
    font-size: 10px !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.16em;
  }
  .footer ul { font-size: 13px !important; line-height: 1.5; }
  .footer ul li { margin-bottom: 3px !important; }
  /* Base centralizada e enxuta */
  .footer-base {
    padding: 12px 0 0 !important;
    margin-top: 4px !important;
    font-size: 10px !important;
    flex-direction: column;
    gap: 0;
    text-align: center;
    border-top: 1px solid var(--ju-line);
  }
  .footer-base-script { display: none !important; } /* tira tagline duplicada */

  /* === ABOUT PAGE: photo === */
  .about-photo-wrap { max-width: 320px; margin: 0 auto 28px; }
  .about-grid { gap: 28px !important; }

  /* === REDUCE SPRINKLES no mobile (performance) === */
  /* sprinkles seguem mas com menos quantity — handled in JS */
}

/* Mobile pequeno (≤ 420px) — aperta ainda mais */
@media (max-width: 420px) {
  .section { padding: 44px 14px; }
  .section-title { font-size: 28px; }
  .page-header h1 { font-size: 32px; }
  .hero-content h1 { font-size: 36px !important; }
  .step__num { font-size: 50px !important; }
  .step__body h3 { font-size: 23px !important; }
  .step-mini__num { font-size: 42px; }
  .step-mini__title { font-size: 22px; }
  .carta-aberta__greeting { font-size: 26px !important; }
  .carta-aberta__body { font-size: 18px !important; }
  .cta-band h2 { font-size: 24px !important; }
  .gallery-filter { font-size: 11px; padding: 8px 12px; }
}

/* ════════════════════════════════════════════════════════════════
   ╔══════════════════════════════════════════════════════════════╗
   ║   DIA DOS NAMORADOS — seção, cards Polaroid, carrinho, FAB    ║
   ╚══════════════════════════════════════════════════════════════╝
   Acentos românticos (vinho/bordô) somados à paleta pastel atual.
   ════════════════════════════════════════════════════════════════ */
:root {
  --ju-wine:        #8E1F2E;   /* vinho profundo — preço/CTA */
  --ju-wine-2:      #B23048;   /* rubi — hover/acento */
  --ju-wine-ink:    #6E1623;   /* press */
  --ju-wine-soft:   rgba(142, 31, 46, 0.08);
  --ju-wine-line:   rgba(142, 31, 46, 0.22);
  --ju-vday-bg:     #f4ece2;   /* bege acinzentado editorial */
  --ju-vday-bg-2:   #ebe0d4;
}

/* ── Botão da campanha (hero) ── */
.btn-vday {
  background: var(--ju-wine);
  color: #fff;
  border-color: var(--ju-wine);
}
.btn-vday:hover {
  background: var(--ju-wine-2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(142, 31, 46, 0.30);
}

/* ── Link "Namorados" no menu ── */
.nav-links a.nav-vday { color: var(--ju-wine); font-weight: 700; }
.nav-links a.nav-vday:hover { color: var(--ju-wine-2); }
.nav-links a.nav-vday::after { background: var(--ju-wine) !important; }
.nav-vday__h { font-size: 11px; }
@media (max-width: 880px) {
  .mobile-nav-panel a.mobile-nav-vday,
  .mobile-nav-panel a.mobile-nav-vday .label { color: var(--ju-wine); }
  .mobile-nav-panel a.mobile-nav-vday .num { color: var(--ju-wine); font-size: 15px; align-self: center; }
  .mobile-nav-panel a.mobile-nav-vday::after { color: var(--ju-wine); }
}

/* ════════════════ SEÇÃO ════════════════ */
.vday {
  position: relative;
  padding: 96px 28px;
  background:
    radial-gradient(120% 80% at 50% -10%, #fbf4ec 0%, transparent 60%),
    linear-gradient(180deg, var(--ju-vday-bg) 0%, var(--ju-vday-bg-2) 100%);
  border-top: 1px solid var(--ju-line);
  border-bottom: 1px solid var(--ju-line);
  overflow: hidden;
}
.vday-inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* corações decorativos bem suaves */
.vday-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.vday-decor__heart {
  position: absolute;
  color: var(--ju-wine);
  opacity: 0.05;
  line-height: 1;
  user-select: none;
}
.vday-decor__heart--1 { top: 6%;  left: 4%;  font-size: 120px; transform: rotate(-12deg); }
.vday-decor__heart--2 { top: 38%; right: 3%; font-size: 180px; transform: rotate(10deg); }
.vday-decor__heart--3 { bottom: 4%; left: 38%; font-size: 90px; transform: rotate(6deg); }

/* ── Cabeçalho ── */
.vday-head { text-align: center; max-width: 640px; margin: 0 auto 54px; }
.vday-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--ju-wine);
  padding: 7px 16px;
  background: var(--ju-wine-soft);
  border: 1px solid var(--ju-wine-line);
  border-radius: 100px;
  margin-bottom: 20px;
}
.vday-title {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ju-text);
}
.vday-script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-style: normal;
  color: var(--ju-wine);
  font-size: 1.32em;
  letter-spacing: 0;
  margin-left: 4px;
}
.vday-divider {
  display: block;
  width: 56px; height: 2px;
  margin: 22px auto 20px;
  background: linear-gradient(90deg, transparent, var(--ju-wine-2), transparent);
}
.vday-lead {
  font-size: 16.5px; line-height: 1.7;
  color: var(--ju-text-2);
  max-width: 54ch; margin: 0 auto;
}

/* — Coração bordado (decorativo, centralizado) — */
.vday-heart { display: block; margin: 2px auto 14px; line-height: 0; }
.vday-heart__svg {
  display: block; margin: 0 auto;
  width: 84px; height: auto;
  filter: drop-shadow(0 6px 12px rgba(110, 22, 35, 0.28));
}
.vday-heart.fade-up { opacity: 0; transform: scale(0.82); filter: none; }
.vday-heart.fade-up.is-in { animation: vdayHeartIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes vdayHeartIn {
  0%   { opacity: 0; transform: scale(0.82) translateY(6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* — Frase do catálogo (abaixo do título) — */
.vday-catalog {
  font-family: 'Playfair Display', serif;
  font-size: 19px; line-height: 1.45;
  color: var(--ju-text-2);
  margin: 14px auto 0;
}

/* ── Grade dos cards ── */
.vday-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 28px;
}

/* ════════════════ CARD POLAROID ════════════════ */
.vday-card {
  flex: 0 1 326px;
  max-width: 348px;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  background: linear-gradient(180deg, #fffdfa 0%, #fbf4ec 100%);
  border: 1px solid var(--ju-line);
  box-shadow:
    0 12px 28px rgba(58, 42, 51, 0.10),
    0 3px 8px rgba(58, 42, 51, 0.05);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.vday-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px rgba(58, 42, 51, 0.16), 0 10px 22px rgba(142, 31, 46, 0.10);
  border-color: var(--ju-wine-line);
}

/* moldura branca (polaroid) com leve rotação alternada */
.vday-card__polaroid {
  position: relative;
  background: #fff;
  padding: 12px 12px 6px;
  box-shadow: 0 6px 16px rgba(58, 42, 51, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: rotate(-1.4deg);
}
.vday-card:nth-child(even) .vday-card__polaroid { transform: rotate(1.4deg); }
.vday-card:hover .vday-card__polaroid { transform: rotate(0deg) scale(1.012); }
/* fitinha washi no topo */
.vday-card__polaroid::before {
  content: '';
  position: absolute;
  top: -9px; left: 50%;
  width: 74px; height: 20px;
  transform: translateX(-50%) rotate(-2.5deg);
  background: rgba(178, 48, 72, 0.18);
  border: 1px dashed rgba(142, 31, 46, 0.30);
  box-shadow: 0 2px 5px rgba(58, 42, 51, 0.06);
}
.vday-card__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ju-bg-2);
}
.vday-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.4, 0, 0.2, 1);
}
.vday-card:hover .vday-card__photo img { transform: scale(1.05); }
/* legenda manuscrita (nome do kit) — a "aba" da polaroid */
.vday-card__name {
  margin: 0;
  padding: 8px 4px 2px;
  text-align: center;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--ju-wine);
}

/* corpo */
.vday-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 4px 0;
}
.vday-card__tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Urbanist', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ju-wine);
  background: var(--ju-wine-soft);
  border: 1px solid var(--ju-wine-line);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.vday-card__desc {
  flex: 1;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ju-text-soft);
  margin: 0 0 16px;
}
.vday-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.vday-card__price {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -0.02em;
  color: var(--ju-wine);
  white-space: nowrap;
}
.vday-add {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700; font-size: 13.5px;
  color: #fff;
  background: var(--ju-wine);
  border: 1px solid var(--ju-wine);
  padding: 10px 16px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vday-add__plus { font-size: 16px; line-height: 1; transition: transform 0.3s ease; }
.vday-add:hover {
  background: var(--ju-wine-2);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(142, 31, 46, 0.28);
}
.vday-add:hover .vday-add__plus { transform: rotate(90deg) scale(1.1); }
.vday-add:active { transform: translateY(0) scale(0.97); }
.vday-add.is-added { background: var(--ju-cyan-dark); border-color: var(--ju-cyan-dark); }

.vday-card__wa {
  margin-top: 14px;
  align-self: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #5C8A6E;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(92, 138, 110, 0.4);
  transition: color 0.2s ease;
}
.vday-card__wa:hover { color: #3f6b50; }

/* ── Destaque (Amor Perfeito) ── */
.vday-card--featured {
  order: 1;          /* sempre o último card — destaque final da seção */
  border-color: var(--ju-wine-line);
  background: linear-gradient(180deg, #fff8f3 0%, #f7e9df 100%);
  box-shadow: 0 16px 36px rgba(142, 31, 46, 0.14), 0 4px 10px rgba(58, 42, 51, 0.06);
  padding-top: 36px;     /* respiro extra no topo pra acomodar a faixa diagonal */
}
.vday-card__ribbon {
  position: absolute;
  top: 28px; right: -22px;          /* desce/aproxima da borda → texto fica dentro do card */
  transform: rotate(45deg);
  transform-origin: center center;
  background: var(--ju-wine);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 7px 36px;                /* faixa mais alta (mais vertical), comprimento menor */
  box-shadow: 0 4px 10px rgba(142, 31, 46, 0.30);
  z-index: 3;
}
.vday-card--featured { position: relative; overflow: hidden; }

.vday-note {
  text-align: center;
  margin: 46px auto 0;
  font-size: 13.5px;
  color: var(--ju-text-soft);
}

/* ════════════════ FAB (botão flutuante) ════════════════ */
/* o atributo [hidden] precisa vencer os display custom (grid/flex) abaixo */
.vday-fab[hidden],
.vday-fab__count[hidden],
.vday-cart[hidden],
.vday-pickup[hidden],
.vday-contact[hidden],
.vday-delivery[hidden],
.vday-cart__sum-row[hidden] { display: none !important; }

.vday-fab {
  position: fixed;
  right: clamp(16px, 4vw, 28px);
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--ju-wine);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(142, 31, 46, 0.38), 0 3px 8px rgba(58, 42, 51, 0.18);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s ease;
}
.vday-fab:hover { background: var(--ju-wine-2); transform: translateY(-3px) scale(1.05); }
.vday-fab:active { transform: scale(0.95); }
.vday-fab.is-bump { animation: vdayBump 0.45s ease; }
@keyframes vdayBump {
  0%, 100% { transform: scale(1); }
  35%      { transform: scale(1.18); }
}
.vday-fab__count {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  padding: 0 6px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--ju-wine);
  border: 2px solid var(--ju-wine);
  border-radius: 100px;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 800;
  line-height: 1;
}

/* ════════════════ OVERLAY + DRAWER ════════════════ */
.vday-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(36, 24, 28, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 9200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.vday-cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.vday-cart {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 9300;
  width: min(420px, 92vw);
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #FFFCF6 0%, var(--ju-vday-bg) 100%);
  box-shadow: -20px 0 50px rgba(36, 24, 28, 0.25);
  transform: translateX(102%);
  transition: transform 0.42s cubic-bezier(0.32, 0.72, 0, 1);
}
/* Abre animando com translateX (interpola suave de 102%→0).
   will-change foi removido → sem camada de composição permanente → texto nítido. */
.vday-cart.is-open { transform: translateX(0); }

.vday-cart__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--ju-line);
  flex-shrink: 0;
}
.vday-cart__eyebrow {
  font-family: 'Urbanist', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ju-wine);
}
.vday-cart__title {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
  font-size: 26px;
  color: var(--ju-text);
  margin: 2px 0 0;
}
.vday-cart__close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  font-size: 26px; line-height: 1;
  color: var(--ju-text-soft);
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.vday-cart__close:hover { background: var(--ju-wine-soft); color: var(--ju-wine); }

.vday-cart__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 22px;
}

.vday-cart__empty {
  text-align: center;
  padding: 54px 16px;
  color: var(--ju-text-soft);
}
.vday-cart__empty-emoji { font-size: 46px; display: block; margin-bottom: 14px; }
.vday-cart__empty p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 19px; color: var(--ju-text); margin: 0 0 6px;
}
.vday-cart__empty span { font-size: 13.5px; }

.vday-cart__items { list-style: none; margin: 0; padding: 0; }
.vday-cart__item {
  display: flex; gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ju-line);
}
.vday-cart__thumb {
  width: 60px; height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(58, 42, 51, 0.12);
}
.vday-cart__item-main { flex: 1; min-width: 0; }
.vday-cart__item-name {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-weight: 500;
  font-size: 16px; line-height: 1.2;
  color: var(--ju-text);
  margin: 0 0 2px;
}
.vday-cart__item-unit { font-size: 12px; color: var(--ju-text-soft); }
.vday-cart__item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
}
.vday-cart__stepper {
  display: inline-flex; align-items: center;
  flex-shrink: 0;
  border: 1px solid var(--ju-line-strong);
  border-radius: 100px;
  background: #fff;
  overflow: hidden;
}
.vday-cart__stepper button {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  font-size: 18px; line-height: 1;
  color: var(--ju-wine);
  transition: background 0.2s ease;
}
.vday-cart__stepper button:hover { background: var(--ju-wine-soft); }
.vday-cart__qty {
  min-width: 30px; text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700; font-size: 14px;
  color: var(--ju-text);
}
.vday-cart__item-right {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
  flex-shrink: 0;
}
.vday-cart__subtotal {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--ju-text);
  white-space: nowrap;
}
.vday-cart__remove {
  font-size: 11.5px; font-weight: 600;
  color: var(--ju-text-mute);
  transition: color 0.2s ease;
}
.vday-cart__remove:hover { color: var(--ju-wine); }

.vday-cart__foot {
  flex-shrink: 0;
  padding: 16px 22px;
  padding-bottom: max(16px, env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--ju-line);
  background: #FFFCF6;
}
.vday-cart__obs-label {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ju-text-soft);
  margin-bottom: 7px;
}
.vday-cart__obs {
  width: 100%;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  color: var(--ju-text);
  background: #fff;
  border: 1px solid var(--ju-line-strong);
  border-radius: 12px;
  padding: 10px 12px;
  resize: vertical;
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vday-cart__obs:focus {
  outline: none;
  border-color: var(--ju-wine-line);
  box-shadow: 0 0 0 3px var(--ju-wine-soft);
}
.vday-cart__total-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin: 16px 0 14px;
  font-family: 'Urbanist', sans-serif;
}
.vday-cart__total-row span {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ju-text-soft);
}
.vday-cart__total-row strong {
  font-size: 26px; font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ju-wine);
}
.vday-cart__send {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  font-family: 'Urbanist', sans-serif;
  font-weight: 700; font-size: 15px;
  color: #fff;
  background: #6FAE8A;
  border: 1px solid #5C9576;
  padding: 15px 18px;
  border-radius: 100px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.vday-cart__send:hover {
  background: #5C9576; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(111, 174, 138, 0.4);
}
.vday-cart__disclaimer {
  text-align: center;
  font-size: 11.5px; line-height: 1.5;
  color: var(--ju-text-mute);
  margin: 12px 0 0;
}

/* trava o scroll de fundo quando o carrinho está aberto */
body.vday-cart-open { overflow: hidden; }

/* ════════════════ CHECKOUT (entrega / retirada) ════════════════ */
.vday-cart__checkout {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--ju-line-strong);
}

/* — Como receber — */
.vday-fulfill__label {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ju-text-soft);
  margin-bottom: 10px;
}
.vday-fulfill__opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.vday-fulfill__opt {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 13px 8px;
  background: #fff;
  border: 1.5px solid var(--ju-line-strong);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.vday-fulfill__opt:hover { border-color: var(--ju-wine-line); transform: translateY(-1px); }
.vday-fulfill__opt.is-selected {
  border-color: var(--ju-wine);
  background: var(--ju-wine-soft);
  box-shadow: inset 0 0 0 1px var(--ju-wine);
}
.vday-fulfill__ic { font-size: 22px; line-height: 1; margin-bottom: 2px; }
.vday-fulfill__t { font-family: 'Urbanist', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--ju-text); }
.vday-fulfill__s { font-size: 11px; color: var(--ju-text-soft); }
.vday-fulfill__opt.is-selected .vday-fulfill__t,
.vday-fulfill__opt.is-selected .vday-fulfill__s { color: var(--ju-wine); }
.vday-fulfill__err { color: #C0392B; font-size: 12px; font-weight: 600; margin: 8px 0 0; }
.vday-fulfill.is-error .vday-fulfill__opt { border-color: #E0A3A3; }

/* — Retirada — */
.vday-pickup {
  display: flex; gap: 10px; align-items: flex-start;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--ju-wine-soft);
  border: 1px solid var(--ju-wine-line);
  border-radius: 12px;
}
.vday-pickup__ic { font-size: 17px; line-height: 1.3; flex-shrink: 0; }
.vday-pickup__txt { display: flex; flex-direction: column; gap: 2px; }
.vday-pickup__txt strong { font-family: 'Urbanist', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ju-wine); }
.vday-pickup__txt span { font-size: 13.5px; color: var(--ju-text-2); line-height: 1.45; }

/* — Contato (nome/telefone — retirada e entrega) — */
.vday-contact { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }

/* — Entrega (só endereço) — */
.vday-delivery { margin-top: 14px; display: flex; flex-direction: column; gap: 11px; }
.vday-delivery__note {
  margin: 0;
  font-size: 12.5px; line-height: 1.45;
  color: var(--ju-text-2);
  background: var(--ju-cyan-3);
  border-radius: 10px;
  padding: 9px 12px;
}
.vday-delivery__note strong { color: var(--ju-cyan-darker); }
.vday-field { display: flex; flex-direction: column; gap: 4px; }
.vday-field label {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ju-text-soft);
}
.vday-field input,
.vday-field select {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;            /* 16px evita zoom automático no iOS */
  color: var(--ju-text);
  background: #fff;
  border: 1px solid var(--ju-line-strong);
  border-radius: 10px;
  padding: 9px 11px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.vday-field input:focus,
.vday-field select:focus {
  outline: none;
  border-color: var(--ju-wine-line);
  box-shadow: 0 0 0 3px var(--ju-wine-soft);
}
.vday-field input.is-error,
.vday-field select.is-error {
  border-color: #D9534F;
  box-shadow: 0 0 0 3px rgba(217, 83, 79, 0.12);
}
.vday-field-row { display: flex; gap: 10px; }
.vday-field--grow { flex: 1; min-width: 0; }
.vday-field--num { width: 92px; flex-shrink: 0; }

/* — Resumo de valores (no rodapé) — */
.vday-cart__summary { margin-bottom: 4px; }
.vday-cart__sum-row {
  display: flex; align-items: baseline; justify-content: space-between;
  font-family: 'Urbanist', sans-serif;
  font-size: 13.5px;
  color: var(--ju-text-2);
  margin-bottom: 6px;
}
.vday-cart__sum-row span:last-child { font-weight: 600; color: var(--ju-text); }
.vday-cart__summary .vday-cart__total-row { margin: 6px 0 14px; }

/* ════════════════ TOAST ════════════════ */
.vday-toast {
  position: fixed;
  left: 50%;
  bottom: 88px;
  transform: translateX(-50%) translateY(20px);
  z-index: 9400;
  background: var(--ju-wine);
  color: #fff;
  font-family: 'Urbanist', sans-serif;
  font-weight: 600; font-size: 14px;
  padding: 13px 22px;
  border-radius: 100px;
  box-shadow: 0 12px 30px rgba(142, 31, 46, 0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
  text-align: center;
}
.vday-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ════════════════ RESPONSIVO ════════════════ */
@media (max-width: 980px) {
  .vday-card { flex: 0 1 300px; }
}
@media (max-width: 880px) {
  .vday { padding: 52px 16px; }
  .vday-head { margin-bottom: 34px; }
  .vday-decor__heart { display: none; }
  .vday-grid { gap: 22px; }
  .vday-note { margin-top: 32px; font-size: 12.5px; }
  .vday-heart { margin-bottom: 10px; }
  .vday-heart__svg { width: 62px; }
  .vday-catalog { font-size: 15.5px; }
}
@media (max-width: 640px) {
  /* 2 cards por linha no mobile (2 + 2 + 1 centralizado) */
  .vday-grid { gap: 16px 12px; }
  .vday-card {
    flex: 0 1 calc(50% - 6px);
    max-width: none;
    /* sem rotação no mobile — evita qualquer overflow */
    padding: 10px 10px 13px;
  }
  .vday-card__polaroid,
  .vday-card:nth-child(even) .vday-card__polaroid { transform: rotate(0deg); padding: 8px 8px 4px; }
  .vday-card__polaroid::before { width: 54px; height: 15px; top: -7px; }
  .vday-card__name { font-size: 21px; padding: 7px 2px 1px; }
  .vday-card__body { padding: 11px 2px 0; }
  .vday-card__tag { font-size: 9px; padding: 4px 8px; letter-spacing: 0.08em; margin-bottom: 8px; }
  .vday-card__desc { font-size: 11.5px; line-height: 1.45; margin-bottom: 11px; }
  .vday-card__foot { flex-direction: column; align-items: stretch; gap: 9px; }
  .vday-card__price { font-size: 21px; text-align: center; }
  .vday-add { width: 100%; justify-content: center; padding: 9px 12px; font-size: 13px; }
  .vday-card__wa { margin-top: 9px; font-size: 11px; }
  .vday-card__ribbon { font-size: 9px; padding: 4px 30px; top: 11px; right: -30px; }

  /* Amor Perfeito — destaque final: sozinho na linha 3, largo e horizontal */
  .vday-grid .vday-card--featured {
    flex-basis: 100%;
    max-width: 100%;
    flex-direction: row;
    align-items: stretch;       /* foto + body esticam à mesma altura */
    min-height: 240px;          /* respiro garantido pra acomodar a etiqueta */
    gap: 12px;
    text-align: left;
    padding: 12px;
  }
  .vday-card--featured .vday-card__polaroid { flex: 0 0 42%; align-self: center; }
  .vday-card--featured .vday-card__body { padding: 2px 6px 2px 2px; }
  .vday-card--featured .vday-card__tag { margin-bottom: 7px; }
  .vday-card--featured .vday-card__name { font-size: 24px; }
  .vday-card--featured .vday-card__desc { font-size: 11.5px; margin-bottom: 10px; }
  .vday-card--featured .vday-card__price { font-size: 27px; text-align: left; }
  .vday-card--featured .vday-card__foot { gap: 8px; }
  .vday-card--featured .vday-card__wa { align-self: flex-start; }
  /* faixa "Mais completo" vira etiqueta horizontal — aparece inteira, sem corte */
  .vday-card--featured { overflow: visible; }
  .vday-card--featured .vday-card__ribbon {
    top: 8px; right: 8px;
    transform: none;
    padding: 4px 11px;
    font-size: 8.5px;
    letter-spacing: 0.07em;
    border-radius: 100px;
    box-shadow: 0 3px 8px rgba(142, 31, 46, 0.30);
  }
  .vday-card--featured .vday-card__tag { display: none; } /* evita 2 selos no card estreito */
  .vday-card--featured .vday-card__body {
    padding-top: 34px;          /* espaço reservado pra etiqueta no canto sup. direito */
    padding-right: 8px;
    justify-content: center;    /* centraliza conteúdo verticalmente abaixo da etiqueta */
  }

  /* drawer vira bottom-sheet */
  .vday-cart {
    top: auto; left: 0; right: 0; bottom: 0;
    width: 100%;
    max-height: 88vh;
    border-top-left-radius: 22px;
    border-top-right-radius: 22px;
    transform: translateY(100%);
    box-shadow: 0 -20px 50px rgba(36, 24, 28, 0.28);
  }
  .vday-cart.is-open { transform: translateY(0); }
  .vday-toast { bottom: 84px; }
}
@media (max-width: 380px) {
  .vday-grid { gap: 14px 10px; }
  .vday-card { flex-basis: calc(50% - 5px); padding: 8px 8px 12px; }
  .vday-card__name { font-size: 19px; }
  .vday-card__desc { font-size: 11px; }
  .vday-card__price { font-size: 20px; }
  .vday-add { padding: 8px 10px; font-size: 12.5px; }
}

/* ════════════════ REDUCED MOTION ════════════════ */
@media (prefers-reduced-motion: reduce) {
  .vday-card,
  .vday-card__polaroid,
  .vday-card__photo img,
  .vday-fab,
  .vday-cart,
  .vday-cart-overlay,
  .vday-toast {
    transition: none !important;
    animation: none !important;
  }
  .vday-card__polaroid,
  .vday-card:nth-child(even) .vday-card__polaroid { transform: none !important; }
  .vday-heart.fade-up,
  .vday-heart.fade-up.is-in { opacity: 1 !important; transform: none !important; animation: none !important; }
}
