/* ============================================================
   Simoninha Bolos — style.css
   Tema A "Doces Memórias" (padrão) | Tema B "Chocolate Premium"
   ============================================================ */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background .5s ease, color .5s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Tema A: Doces Memórias (padrão) ---------- */
body[data-theme="doces"] {
  --bg: #FFF7EF;
  --bg-soft: #FFF1E2;
  --surface: #FFFFFF;
  --surface-2: #FFF9F0;
  --text: #4A2E1B;
  --text-soft: #7A5C44;
  --muted: #A2846A;
  --primary: #E4577E;          /* rosa morango */
  --primary-dark: #C93C63;
  --accent: #D98E32;           /* âmbar caramelo */
  --accent-dark: #B87322;
  --choco: #4A2E1B;
  --line: rgba(74, 46, 27, .12);
  --grad: linear-gradient(135deg, #E4577E 0%, #D98E32 100%);
  --grad-soft: linear-gradient(135deg, rgba(228, 87, 126, .12), rgba(217, 142, 50, .12));
  --font-display: 'Baloo 2', cursive;
  --font-hand: 'Caveat', cursive;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 10px 30px rgba(74, 46, 27, .08);
  --shadow-lg: 0 18px 50px rgba(74, 46, 27, .14);
  --sticker-bg: #FFE9D6;
  --sticker-ring: #E4577E;
  --sticker-text: #4A2E1B;
  --header-bg: rgba(255, 247, 239, .9);
  --hero-grad: radial-gradient(1200px 500px at 85% -10%, rgba(228,87,126,.14), transparent 60%),
               radial-gradient(900px 420px at -10% 30%, rgba(217,142,50,.14), transparent 60%),
               linear-gradient(180deg, #FFF4E6 0%, var(--bg) 100%);
  --theme-dot-active: #E4577E;
}

/* ---------- Tema B: Chocolate Premium ---------- */
body[data-theme="premium"] {
  --bg: #2E1A0E;
  --bg-soft: #3A2415;
  --surface: #3F2817;
  --surface-2: #472E1B;
  --text: #F5E9DC;
  --text-soft: #D8C3AC;
  --muted: #B39A7D;
  --primary: #C9A227;          /* dourado */
  --primary-dark: #A9861B;
  --accent: #E4577E;
  --accent-dark: #C93C63;
  --choco: #F5E9DC;
  --line: rgba(245, 233, 220, .14);
  --grad: linear-gradient(135deg, #C9A227 0%, #E4577E 100%);
  --grad-soft: linear-gradient(135deg, rgba(201, 162, 39, .14), rgba(228, 87, 126, .14));
  --font-display: 'Playfair Display', serif;
  --font-hand: 'Caveat', cursive;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, .45);
  --sticker-bg: #3F2817;
  --sticker-ring: #C9A227;
  --sticker-text: #F5E9DC;
  --header-bg: rgba(46, 26, 14, .88);
  --hero-grad: radial-gradient(1200px 500px at 85% -10%, rgba(201,162,39,.16), transparent 60%),
               radial-gradient(900px 420px at -10% 30%, rgba(228,87,126,.14), transparent 60%),
               linear-gradient(180deg, #3A2415 0%, var(--bg) 100%);
  --theme-dot-active: #C9A227;
}

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--choco); font-weight: 800; transition: color .5s ease; }

section[id] { scroll-margin-top: 90px; }

/* ---------- Top bar ---------- */
.topbar { background: var(--choco); color: #FFF8F0; font-size: .82rem; transition: background .5s ease; }
body[data-theme="premium"] .topbar { background: #1E1007; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-block: 7px; flex-wrap: wrap; }
.topbar__item--right { display: flex; gap: 16px; align-items: center; }
.topbar a { color: #FFE9D6; transition: color .2s; font-weight: 700; }
.topbar a:hover { color: var(--primary); }
.topbar__wa { padding: 3px 14px; border-radius: 999px; background: rgba(255,255,255,.12); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .5s ease, border-color .5s ease, box-shadow .3s ease;
}
.header.is-scrolled { box-shadow: var(--shadow); }
.header__inner { display: flex; align-items: center; gap: 24px; padding-block: 12px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { font-size: 1.7rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.15)); }
.logo__text { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--choco); letter-spacing: .2px; transition: color .5s ease; }
.logo__text em { font-style: normal; color: var(--primary); }

.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .95rem;
  color: var(--text-soft); transition: color .2s, background .2s;
}
.nav a:hover { color: var(--primary); background: var(--grad-soft); }

.header__actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  display: flex; align-items: center; gap: 8px; padding: 7px 14px;
  border: 1.5px solid var(--line); border-radius: 999px; color: var(--text-soft);
  font-weight: 700; font-size: .85rem; transition: border-color .2s, background .2s;
}
.theme-toggle:hover { border-color: var(--primary); background: var(--grad-soft); }
.theme-toggle__dots { display: flex; gap: 4px; }
.dot { width: 12px; height: 12px; border-radius: 50%; transition: transform .3s ease, box-shadow .3s ease; }
.dot--pink { background: #E4577E; }
.dot--gold { background: #C9A227; }
body[data-theme="doces"] .dot--pink { transform: scale(1.25); box-shadow: 0 0 0 3px rgba(228,87,126,.25); }
body[data-theme="premium"] .dot--gold { transform: scale(1.25); box-shadow: 0 0 0 3px rgba(201,162,39,.35); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 800; border-radius: 999px; padding: 13px 26px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 9px 18px; font-size: .9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(228, 87, 126, .35); }
.btn--primary:hover { box-shadow: 0 12px 28px rgba(228, 87, 126, .45); }
body[data-theme="premium"] .btn--primary { box-shadow: 0 8px 20px rgba(201, 162, 39, .3); }
body[data-theme="premium"] .btn--primary:hover { box-shadow: 0 12px 28px rgba(201, 162, 39, .4); }
.btn--wa { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, .35); }
.btn--wa:hover { background: #1ebe57; }
.btn--ghost { border: 2px solid var(--choco); color: var(--choco); background: transparent; }
.btn--ghost:hover { background: var(--choco); color: var(--bg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--hero-grad); overflow: hidden; transition: background .5s ease; }
.hero__bg { position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background: radial-gradient(600px 300px at 20% 80%, rgba(228,87,126,.08), transparent 70%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-block: 72px 84px; }

.hero__kicker {
  display: inline-block; font-family: var(--font-hand); font-size: 1.35rem; color: var(--primary);
  background: var(--grad-soft); border: 1.5px dashed var(--primary); padding: 4px 16px; border-radius: 999px; margin-bottom: 18px;
}
.hero__title { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; margin-bottom: 16px; }
.hero__title em { font-style: normal; color: var(--primary); position: relative; white-space: nowrap; }
.hero__title em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px; height: 12px;
  background: var(--grad); opacity: .25; border-radius: 4px; z-index: -1;
}
.hero__sub { font-size: 1.08rem; color: var(--text-soft); max-width: 52ch; margin-bottom: 28px; }
.hero__sub strong { color: var(--choco); }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; font-weight: 700; font-size: .92rem; color: var(--text-soft); }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: 34px; overflow: hidden;
  border: 6px solid var(--surface); box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.hero__photo img { aspect-ratio: 4/4.6; object-fit: cover; width: 100%; }
.hero__badge {
  position: absolute; left: 18px; bottom: 18px; background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px); border-radius: 16px; padding: 10px 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.25;
}
body[data-theme="premium"] .hero__badge { background: rgba(63,40,23,.94); }
.hero__badge-name { font-family: var(--font-display); font-weight: 800; color: var(--choco); font-size: 1.05rem; }
.hero__badge-role { font-size: .8rem; color: var(--muted); font-weight: 700; }

.hero__sticker { position: absolute; top: -26px; right: -14px; animation: float 4.5s ease-in-out infinite; z-index: 2; filter: drop-shadow(0 8px 16px rgba(74,46,27,.2)); }

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

/* Confetes (sprinkles) */
.hero__sprinkles { position: absolute; inset: 0; pointer-events: none; }
.hero__sprinkles i {
  position: absolute; top: -20px; width: 8px; height: 22px; border-radius: 4px;
  background: var(--primary); opacity: .5; animation: fall linear infinite;
}
.hero__sprinkles i:nth-child(1) { left: 8%;  animation-duration: 11s; animation-delay: 0s;  background: #E4577E; }
.hero__sprinkles i:nth-child(2) { left: 18%; animation-duration: 14s; animation-delay: 2s;  background: #D98E32; height: 14px; }
.hero__sprinkles i:nth-child(3) { left: 30%; animation-duration: 12s; animation-delay: 5s;  background: #8BC34A; }
.hero__sprinkles i:nth-child(4) { left: 42%; animation-duration: 15s; animation-delay: 1s;  background: #C9A227; height: 12px; }
.hero__sprinkles i:nth-child(5) { left: 55%; animation-duration: 10s; animation-delay: 7s;  background: #E4577E; height: 18px; }
.hero__sprinkles i:nth-child(6) { left: 66%; animation-duration: 13s; animation-delay: 3s;  background: #7E57C2; }
.hero__sprinkles i:nth-child(7) { left: 76%; animation-duration: 11s; animation-delay: 6s;  background: #D98E32; height: 14px; }
.hero__sprinkles i:nth-child(8) { left: 86%; animation-duration: 14s; animation-delay: 0s;  background: #E4577E; }
.hero__sprinkles i:nth-child(9) { left: 93%; animation-duration: 12s; animation-delay: 4s;  background: #8BC34A; }
.hero__sprinkles i:nth-child(10){ left: 48%; animation-duration: 16s; animation-delay: 9s;  background: #C9A227; height: 16px; }

@keyframes fall {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 0; }
  10% { opacity: .55; }
  100% { transform: translateY(105vh) rotate(540deg); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; background: var(--choco); padding-block: 12px; transition: background .5s ease; }
body[data-theme="premium"] .marquee { background: #1E1007; }
.marquee__track { display: flex; gap: 48px; width: max-content; animation: marquee 28s linear infinite; }
.marquee__track span { color: #FFE9D6; font-weight: 800; font-size: .95rem; white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Benefícios (faixa abaixo do hero) ---------- */
.benefits { background: var(--surface); border-bottom: 1px solid var(--line); transition: background .5s ease; }
.benefits__inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding-block: 18px;
}
.benefit {
  display: flex; align-items: center; gap: 12px;
  border-right: 1.5px dashed var(--line); padding-right: 18px;
}
.benefit:last-child { border-right: none; padding-right: 0; }
.benefit__icon { font-size: 1.7rem; line-height: 1; }
.benefit__text { display: flex; flex-direction: column; line-height: 1.3; }
.benefit__text strong { font-family: var(--font-display); font-size: .95rem; color: var(--choco); transition: color .5s ease; }
.benefit__text em { font-style: normal; font-size: .8rem; color: var(--muted); font-weight: 700; }

/* ---------- Seções ---------- */
.section { padding-block: 84px; }
.section__kicker {
  font-family: var(--font-hand); font-size: 1.5rem; color: var(--primary);
  margin-bottom: 6px; text-align: center;
}
.section__title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); text-align: center; margin-bottom: 14px; }
.section__title em { font-style: normal; color: var(--primary); }
.section__desc { text-align: center; color: var(--text-soft); max-width: 62ch; margin: 0 auto 44px; }

/* ---------- Cards diferenciais ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 22px; text-align: center; transition: transform .3s ease, box-shadow .3s ease, background .5s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__icon { font-size: 2.4rem; margin-bottom: 12px; }
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--text-soft); font-size: .95rem; }

/* ---------- Sobre ---------- */
.sobre { background: var(--bg-soft); transition: background .5s ease; }
.sobre__inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.sobre__media { position: relative; }
.sobre__photo-frame {
  border-radius: 30px; overflow: hidden; border: 6px solid var(--surface); box-shadow: var(--shadow-lg);
  max-width: 420px;
}
.sobre__photo-frame img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.sobre__photo-extra {
  position: absolute; right: 0; bottom: -30px; width: 200px; border-radius: 20px; overflow: hidden;
  border: 5px solid var(--surface); box-shadow: var(--shadow-lg); transform: rotate(-4deg);
}
.sobre__photo-extra img { aspect-ratio: 1/1; object-fit: cover; }
.sobre__content .section__kicker, .sobre__content .section__title { text-align: left; }
.sobre__content p { color: var(--text-soft); margin-bottom: 14px; }
.sobre__content p strong { color: var(--choco); }

.sobre__quote {
  position: relative; margin: 22px 0 26px; padding: 22px 24px 18px 54px;
  background: var(--surface); border-radius: var(--radius-sm); border-left: 5px solid var(--primary);
  box-shadow: var(--shadow);
}
.sobre__quote-mark { position: absolute; left: 16px; top: 6px; font-family: var(--font-display); font-size: 3rem; color: var(--primary); line-height: 1; }
.sobre__quote p { font-style: italic; font-size: 1.05rem; color: var(--text); margin-bottom: 8px; }
.sobre__quote cite { font-style: normal; font-weight: 800; font-size: .9rem; color: var(--primary); }

.sobre__stats { display: flex; gap: 18px; flex-wrap: wrap; }
.stat {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 22px; text-align: center; flex: 1; min-width: 120px; box-shadow: var(--shadow);
}
.stat strong { display: block; font-family: var(--font-display); font-size: 1.7rem; color: var(--primary); }
.stat span { font-size: .82rem; font-weight: 700; color: var(--muted); }

/* ---------- Catálogo / filtros ---------- */
.filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  padding: 10px 22px; border-radius: 999px; font-weight: 800; font-size: .92rem;
  color: var(--text-soft); border: 2px solid var(--line); background: var(--surface);
  transition: all .25s ease;
}
.filter:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.filter.is-active { background: var(--grad); border-color: transparent; color: #fff; box-shadow: 0 6px 16px rgba(228, 87, 126, .3); }
body[data-theme="premium"] .filter.is-active { box-shadow: 0 6px 16px rgba(201, 162, 39, .3); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid__placeholder { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--muted); font-weight: 700; }

.cat-card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow);
  display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease, background .5s ease;
  animation: popIn .45s ease both;
}
@keyframes popIn { from { opacity: 0; transform: scale(.96) translateY(10px); } to { opacity: 1; transform: none; } }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__media { position: relative; overflow: hidden; cursor: zoom-in; }
.cat-card__media img { aspect-ratio: 1/1; object-fit: cover; width: 100%; transition: transform .5s ease; }
.cat-card:hover .cat-card__media img { transform: scale(1.06); }
.cat-card__badge {
  position: absolute; top: 12px; left: 12px; font-size: .72rem; font-weight: 800;
  padding: 5px 12px; border-radius: 999px; letter-spacing: .4px; text-transform: uppercase;
  background: rgba(0,0,0,.55); color: #fff; backdrop-filter: blur(4px);
}
.cat-card__badge--Excelente { background: rgba(37, 211, 102, .9); color: #08301a; }
.cat-card__badge--Bom { background: rgba(201, 162, 39, .92); color: #2b1d02; }
.cat-card__badge--Regular { background: rgba(217, 142, 50, .9); color: #fff; }
.cat-card__badge--Ruim { background: rgba(120, 70, 70, .9); color: #fff; }
.cat-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.cat-card__type { font-size: .75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--primary); }
.cat-card__title { font-size: 1.12rem; }
.cat-card__desc { font-size: .92rem; color: var(--text-soft); flex: 1; }
.cat-card__wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 6px; padding: 10px 16px; border-radius: 999px; background: #25D366; color: #fff;
  font-weight: 800; font-size: .88rem; transition: transform .2s ease, background .2s ease;
}
.cat-card__wa:hover { background: #1ebe57; transform: translateY(-2px); }

.catalogo__foot { text-align: center; margin-top: 46px; color: var(--text-soft); }
.catalogo__foot p { margin-bottom: 16px; }

/* ---------- Como funciona ---------- */
.como { background: var(--bg-soft); transition: background .5s ease; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 26px 28px; text-align: center; box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%; background: var(--grad); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: 14px;
  box-shadow: 0 6px 16px rgba(228, 87, 126, .35);
}
body[data-theme="premium"] .step__num { box-shadow: 0 6px 16px rgba(201, 162, 39, .35); }
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-soft); font-size: .95rem; }
.como__cta { text-align: center; margin-top: 44px; }

/* ---------- Depoimentos ---------- */
.depoimentos__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.depoimento {
  background: var(--surface); border-radius: var(--radius); padding: 30px 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow); position: relative;
  display: flex; flex-direction: column; gap: 12px; transition: transform .3s ease, box-shadow .3s ease;
}
.depoimento:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.depoimento::before {
  content: "❝"; position: absolute; top: -22px; left: 24px; font-size: 3.2rem;
  color: var(--primary); font-family: var(--font-display);
}
.depoimento__stars { color: var(--accent); letter-spacing: 3px; font-size: 1.05rem; }
.depoimento p { font-style: italic; color: var(--text); flex: 1; }
.depoimento cite { font-style: normal; font-weight: 800; font-size: .88rem; color: var(--muted); }
.depoimentos__foot { text-align: center; margin-top: 36px; color: var(--text-soft); }
.depoimentos__foot a { color: var(--primary); font-weight: 800; border-bottom: 2px dashed var(--primary); }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-final::before {
  content: ""; position: absolute; inset: 0;
  background: var(--grad); opacity: .08; pointer-events: none;
}
.cta-final__inner {
  position: relative; text-align: center; padding-block: 90px;
  background: var(--surface); border-radius: 34px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); margin-block: 20px 0;
}
.cta-final h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.cta-final p { color: var(--text-soft); margin-bottom: 26px; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.footer { background: var(--choco); color: #FFE9D6; margin-top: 40px; padding-top: 64px; transition: background .5s ease; }
body[data-theme="premium"] .footer { background: #1E1007; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer .logo__text { color: #FFE9D6; }
.footer .logo__text em { color: var(--primary); }
.footer__brand p { color: #D8C3AC; font-size: .93rem; margin-top: 12px; max-width: 34ch; }
.footer__col h4 { color: #FFF8F0; font-size: 1rem; margin-bottom: 16px; }
.footer__col a { display: block; color: #D8C3AC; margin-bottom: 9px; font-size: .93rem; transition: color .2s, transform .2s; }
.footer__col a:hover { color: var(--primary); transform: translateX(3px); }
.footer__contact { color: #D8C3AC; font-size: .93rem; margin-bottom: 9px; }
.footer__contact a { display: inline; color: #FFE9D6; font-weight: 700; }
.footer__contact a:hover { color: var(--primary); transform: none; }
.footer__bottom { border-top: 1px solid rgba(255, 233, 214, .12); padding-block: 18px; }
.footer__bottom p { text-align: center; color: #B39A7D; font-size: .85rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center; padding: 30px;
  background: rgba(20, 10, 5, .92); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; animation: fadeIn .25s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox__figure { max-width: min(860px, 94vw); width: 100%; text-align: center; }
.lightbox__figure img { max-height: 74vh; object-fit: contain; margin-inline: auto; border-radius: 16px; box-shadow: var(--shadow-lg); }
.lightbox__caption { margin-top: 14px; color: #FFE9D6; font-weight: 600; }
.lightbox__close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; font-size: 1.2rem; transition: background .2s, transform .2s;
}
.lightbox__close:hover { background: var(--primary); transform: rotate(90deg); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff; font-weight: 800;
  padding: 14px 22px; border-radius: 999px; box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .25s ease, background .25s ease;
  animation: pulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); background: #1ebe57; animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 10px 34px rgba(37, 211, 102, .7); }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }

/* ---------- Nav mobile ---------- */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 3px; border-radius: 3px; background: var(--choco); transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding-block: 52px 64px; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .hero__media { max-width: 460px; margin-inline: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .benefits__inner { grid-template-columns: repeat(2, 1fr); }
  .benefit:nth-child(2) { border-right: none; }
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__media { max-width: 420px; margin-inline: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .depoimentos__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--header-bg); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); padding: 14px 6%;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 14px; }
  .header__actions { margin-left: auto; }
  .header__actions .btn { display: none; }
  .topbar__item--right { display: none; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__title { font-size: 2rem; }
  .hero__sticker { width: 84px; height: 84px; right: -6px; }
  .section { padding-block: 60px; }
  .theme-toggle__label { display: none; }
}
