/* ============================================================
   MAROMA EXPRESS — FRANQUIAS · styles.css (v13)
   Reescrito e organizado. Um único :root, sem regras duplicadas.
   Fonte: Fredoka (corpo/títulos) + Montserrat 900 (H1 travado).
   ============================================================ */

:root {
  --magenta: #ec008c;
  --magenta-2: #ff42b7;
  --magenta-deep: #b80072;
  --brand-pink: #e6007e;          /* rosa do material oficial (padrão de picolés) */
  --grape: #431033;
  --dark: #210017;
  --cream: #fff4fb;
  --white: #ffffff;
  --ink: #26101f;
  --muted: #7f6676;
  --yellow: #ffec7a;
  --blue: #87e8ff;
  --green: #21c063;
  --danger: #d90042;
  --shadow: 0 28px 90px rgba(107, 0, 66, .18);
  --shadow-soft: 0 18px 50px rgba(107, 0, 66, .10);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1160px;
  --header-h: 124px;
  --pattern: url('../assets/pattern-picoles.svg');

  /* Tokens de tema (claro) — trocados no [data-theme="dark"] */
  --surface: #ffffff;               /* cartões e seções brancas */
  --surface-2: var(--cream);        /* seções creme / campos suaves */
  --surface-input: #fff8fc;         /* fundo de inputs */
  --text: var(--ink);               /* texto principal */
  --text-muted: var(--muted);       /* texto secundário */
  --page-grad-top: #ffffff;
  --page-grad-mid: var(--cream);
  --border-brand: rgba(236, 0, 140, .12);
  --nav-bg: rgba(255, 255, 255, .82);
  --nav-bg-scrolled: rgba(255, 255, 255, .95);
  --nav-pill: rgba(236, 0, 140, .06);
  --nav-link: #5e4456;
  --toggle-bg: rgba(236, 0, 140, .08);
  --toggle-color: var(--magenta);
  color-scheme: light;
}

/* ---------------- TEMA ESCURO ---------------- */
[data-theme="dark"] {
  --cream: #140a10;
  --ink: #f6edf3;
  --muted: #ab8fa2;
  --surface: #120a0f;
  --surface-2: #0d0509;
  --surface-input: #1a0e16;
  --text: #f6edf3;
  --text-muted: #ab8fa2;
  --page-grad-top: #080406;
  --page-grad-mid: #0d0509;
  --border-brand: rgba(255, 110, 195, .14);
  --nav-bg: rgba(12, 6, 10, .82);
  --nav-bg-scrolled: rgba(10, 5, 8, .95);
  --nav-pill: rgba(255, 110, 195, .08);
  --nav-link: #e7cfe0;
  --toggle-bg: rgba(255, 236, 122, .12);
  --toggle-color: var(--yellow);
  --shadow: 0 28px 90px rgba(0, 0, 0, .62);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, .5);
  --pattern: url('../assets/pattern-picoles-dark.svg');
  color-scheme: dark;
}

/* Transição suave ao trocar de tema (desligada se o usuário pedir menos movimento) */
body,
.site-header .nav-wrap,
.trust-card, .number-grid article, .explore-card,
.compare-solo, .faq-container details, .lead-form,
.section-white, .section-cream, .journey-dot, .include-list li {
  transition-property: background-color, color, border-color, box-shadow;
  transition-duration: .35s;
  transition-timing-function: ease;
}

/* ------------------------------------------------------------
   RESET / BASE
   ------------------------------------------------------------ */
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: 'Fredoka', ui-rounded, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 450;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 2%, rgba(255, 120, 207, .28), transparent 28rem),
    radial-gradient(circle at 95% 18%, rgba(255, 236, 122, .34), transparent 18rem),
    linear-gradient(180deg, var(--page-grad-top) 0%, var(--page-grad-mid) 42%, var(--page-grad-top) 100%);
  overflow-x: hidden;
}

img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { border: 0; background: none; }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

/* ------------------------------------------------------------
   TIPOGRAFIA
   ------------------------------------------------------------ */
h1, h2, h3, h4 { margin-top: 0; }

h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-family: 'Montserrat', 'Fredoka', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: .84;
  letter-spacing: -.055em;
  text-transform: uppercase;
  text-wrap: balance;
  color: #fff;
  text-shadow: 0 18px 40px rgba(95, 0, 55, .22);
}

h2 {
  margin-bottom: 14px;
  font-weight: 650;
  font-size: clamp(2.05rem, 4.6vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -.032em;
  text-wrap: balance;
}

h3 { font-weight: 620; letter-spacing: -.02em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .92rem;
  font-weight: 700;
}
.eyebrow span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}
.eyebrow.magenta { color: var(--magenta); }
.eyebrow.light { color: #fff; }

.section-head p:not(.eyebrow),
.center-head p:not(.eyebrow),
.form-copy p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
  font-weight: 460;
}

.center-head {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-head { max-width: 560px; }

/* ------------------------------------------------------------
   BOTÕES
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 620;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .92rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2a001a, #611144);
  box-shadow: 0 18px 42px rgba(48, 0, 31, .34);
}
.btn-primary:hover { box-shadow: 0 22px 52px rgba(48, 0, 31, .42); }

.btn-white {
  background: rgba(255, 255, 255, .92);
  color: var(--magenta);
  box-shadow: 0 16px 35px rgba(100, 0, 70, .14);
}
.btn-white:hover { background: #fff; }

.btn-magenta {
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #ff52bd);
  box-shadow: 0 18px 34px rgba(236, 0, 140, .28);
}

/* Pulso leve no CTA principal */
.btn-pulse { position: relative; }
.btn-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 2px solid rgba(255, 255, 255, .65);
  opacity: 0;
  animation: ctaPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { opacity: .8; transform: scale(.96); }
  70%  { opacity: 0;  transform: scale(1.14); }
  100% { opacity: 0;  transform: scale(1.14); }
}

/* ------------------------------------------------------------
   ACESSIBILIDADE / UTILITÁRIOS
   ------------------------------------------------------------ */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.section { padding: 96px 0; position: relative; }
.section-white { background: var(--surface); }
.section-cream { background: var(--cream); }

.section-note {
  margin: 26px auto 0;
  max-width: 720px;
  text-align: center;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.5;
}

/* Fundo rosa oficial com padrão de picolés (substitui o fundo liso) */
.pink-pattern {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, .30), transparent 20rem),
    radial-gradient(circle at 88% 22%, rgba(255, 236, 122, .5), transparent 22rem),
    linear-gradient(150deg, #ff54bd 0%, var(--brand-pink) 44%, var(--magenta-deep) 100%);
  isolation: isolate;
}
.pink-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--pattern);
  background-size: 640px 640px;
  opacity: .28;
  animation: patternDrift 140s linear infinite;
  pointer-events: none;
}
@keyframes patternDrift {
  from { background-position: 0 0; }
  to   { background-position: 640px 640px; }
}

/* ------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA (reveal)
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------------------------------------
   HEADER / NAVEGAÇÃO
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border-brand);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background .22s ease, box-shadow .22s ease;
}
.site-header.is-scrolled {
  padding: 0;
  background: var(--nav-bg-scrolled);
  box-shadow: 0 10px 34px rgba(70, 0, 47, .14);
}
.site-header.is-scrolled { padding: 8px 0; }

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
  padding: 10px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-logo img { width: 50px; height: 50px; object-fit: contain; }
.brand strong {
  display: block;
  font-size: .98rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  font-weight: 650;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 550;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: var(--nav-pill);
}
.main-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--nav-link);
  font-weight: 560;
  font-size: .92rem;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.main-nav a:hover { background: var(--surface); color: var(--magenta); transform: translateY(-1px); }
.main-nav .nav-cta {
  background: var(--magenta);
  color: #fff;
  font-weight: 640;
  box-shadow: 0 12px 28px rgba(236, 0, 140, .28);
}
.main-nav .nav-cta:hover { color: #fff; background: #d60080; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--magenta);
  cursor: pointer;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #fff;
  border-radius: 999px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  min-height: 640px;
  overflow: hidden;
  padding: 68px 0 120px;
}
.hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -115px;
  height: 220px;
  background: var(--surface);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(340px, .74fr);
  gap: 58px;
  align-items: center;
  padding-top: 28px;
}

.hero .lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.5;
  font-weight: 480;
}
.hero .lead strong { font-weight: 650; }

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}
.quick-stats article {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.quick-stats strong {
  display: block;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 650;
}
.quick-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .84);
  font-size: .84rem;
  font-weight: 520;
}

/* Picolés flutuando suavemente no topo */
.hero-float {
  position: absolute;
  z-index: 1;
  color: #fff;
  opacity: .5;
  pointer-events: none;
  filter: drop-shadow(0 14px 24px rgba(90, 0, 55, .25));
  animation: floaty 7s ease-in-out infinite;
  will-change: transform;
}
.hero-float svg { width: 100%; height: auto; }
.float-a { width: 74px; left: 4%;  top: 16%; animation-duration: 8s; }
.float-b { width: 88px; right: 40%; top: 8%;  animation-delay: 1.4s; }
.float-c { width: 64px; left: 40%;  bottom: 14%; animation-delay: .8s; animation-duration: 9s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(-7deg); }
  50%      { transform: translateY(-20px) rotate(5deg); }
}

/* Cartão de vídeo do hero */
.hero-card {
  position: relative;
  width: min(100%, 500px);
  justify-self: end;
}
.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #170010;
  box-shadow: 0 30px 90px rgba(61, 0, 43, .32);
  border: 8px solid rgba(255, 255, 255, .46);
}
.video-shell video,
.video-shell iframe {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border: 0;
  background: #170010;
}
.mini-badge {
  position: absolute;
  z-index: 4;
  max-width: 214px;
  padding: 14px 16px;
  border-radius: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 20px 60px rgba(92, 0, 60, .24);
}
.mini-badge b { display: block; letter-spacing: -.02em; font-weight: 650; }
.mini-badge span { display: block; margin-top: 3px; color: var(--muted); font-size: .8rem; font-weight: 500; line-height: 1.35; }
.badge-top { top: 26px; left: -42px; transform: rotate(-4deg); }
.badge-bottom { right: -30px; bottom: 35px; transform: rotate(3deg); }

/* ------------------------------------------------------------
   CONFIANÇA — Por que investir na Maroma
   ------------------------------------------------------------ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.trust-card {
  padding: 30px 26px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-soft);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 0, 140, .4);
  box-shadow: var(--shadow);
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--magenta);
  background: rgba(236, 0, 140, .07);
}
.trust-icon svg { width: 28px; height: 28px; }
.trust-card h3 { margin: 0 0 8px; font-size: 1.28rem; }
.trust-card p { margin: 0; color: var(--muted); font-size: .96rem; line-height: 1.55; }
.trust-card.highlight {
  color: #fff;
  background: linear-gradient(135deg, #ff56be, var(--magenta));
  border-color: transparent;
}
.trust-card.highlight .trust-icon { background: rgba(255, 255, 255, .16); color: #fff; }
.trust-card.highlight p { color: rgba(255, 255, 255, .86); }

/* ------------------------------------------------------------
   NÚMEROS / INVESTIMENTO
   ------------------------------------------------------------ */
.numbers-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(236, 0, 140, .08), transparent 20rem),
    #fff;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.number-grid article {
  min-height: 200px;
  padding: 26px 22px;
  border-radius: 30px;
  background: var(--surface-2);
  border: 1px solid var(--border-brand);
  box-shadow: 0 24px 70px rgba(92, 0, 60, .09);
}
.number-grid article:nth-child(1),
.number-grid article:nth-child(4) {
  color: #fff;
  background: linear-gradient(135deg, #ff5fc2, var(--magenta));
  border-color: transparent;
}
.number-grid article > span {
  display: block;
  opacity: .74;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 650;
}
/* Garante que o número animado herda o tamanho do <strong> (não o do rótulo) */
.number-grid strong .count-pop {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  opacity: 1;
}
.number-grid strong {
  display: block;
  margin: 14px 0 10px;
  font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}
.number-grid small {
  display: block;
  opacity: .72;
  line-height: 1.4;
  font-weight: 480;
  font-size: .86rem;
}
.count-pop { display: inline-block; }
.count-pop.is-done { animation: numPop .45s ease; }
@keyframes numPop {
  0% { transform: scale(.92); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* ------------------------------------------------------------
   JORNADA DO FRANQUEADO (linha do tempo animada)
   ------------------------------------------------------------ */
.journey { counter-reset: step; }
.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;          /* remove os marcadores nativos do <ol> */
}
.journey-track::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 6%;
  right: 6%;
  height: 4px;
  border-radius: 999px;
  background: rgba(236, 0, 140, .14);
  z-index: 0;
}
.journey-track::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 6%;
  width: 88%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), #ff6ac4);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(.65, 0, .35, 1);
  z-index: 0;
}
.journey.play .journey-track::after { transform: scaleX(1); }

.journey-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 6px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.journey.play .journey-step { opacity: 1; transform: translateY(0); }
.journey.play .journey-step:nth-child(1) { transition-delay: .05s; }
.journey.play .journey-step:nth-child(2) { transition-delay: .35s; }
.journey.play .journey-step:nth-child(3) { transition-delay: .65s; }
.journey.play .journey-step:nth-child(4) { transition-delay: .95s; }
.journey.play .journey-step:nth-child(5) { transition-delay: 1.25s; }

.journey-dot {
  counter-increment: step;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--surface);
  border: 3px solid var(--magenta);
  color: var(--magenta);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 14px 32px rgba(236, 0, 140, .18);
  position: relative;
  z-index: 2;
}
.journey-dot::before { content: counter(step); }
.journey-step h3 { margin: 0 0 6px; font-size: 1.06rem; }
.journey-step p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }

/* ------------------------------------------------------------
   O QUE ESTÁ INCLUSO NO INVESTIMENTO
   ------------------------------------------------------------ */
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
  gap: 54px;
  align-items: center;
}
.include-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}
.include-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  box-shadow: 0 12px 30px rgba(92, 0, 60, .07);
  font-weight: 540;
  font-size: .95rem;
}
.include-list .check {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--magenta), #ff52bd);
}
.include-list .check svg { width: 15px; height: 15px; }

.include-visual { position: relative; }
.include-visual .frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #ffe3f3, #fff);
  border: 1px solid rgba(236, 0, 140, .14);
  box-shadow: var(--shadow);
  padding: 28px;
}
.include-visual img { width: 100%; height: auto; }
.include-visual .tag-float {
  position: absolute;
  left: -18px;
  bottom: 22px;
  padding: 13px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(92, 0, 60, .22);
  font-weight: 620;
  color: var(--magenta);
  font-size: .9rem;
  animation: floaty 8s ease-in-out infinite;
}

/* ------------------------------------------------------------
   COMPARATIVO — Abrir sozinho x abrir com a Maroma
   ------------------------------------------------------------ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  gap: 22px;
  align-items: stretch;
}
.compare-card {
  padding: 34px 30px;
  border-radius: 32px;
}
.compare-card h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
}
.compare-card .compare-sub {
  margin: 0 0 22px;
  font-size: .92rem;
  opacity: .75;
}
.compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .98rem;
  line-height: 1.45;
  font-weight: 500;
}
.compare-card li .mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 50%;
  font-weight: 700;
}
.compare-card li .mark svg { width: 13px; height: 13px; }

.compare-solo {
  background: var(--surface);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-soft);
  color: var(--text);
}
.compare-solo li { color: #6d5364; }
.compare-solo .mark { background: rgba(38, 16, 31, .07); color: #9b8291; }

.compare-maroma {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(150deg, #ff54bd, var(--magenta) 55%, var(--magenta-deep));
  box-shadow: var(--shadow);
}
.compare-maroma::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--pattern);
  background-size: 520px 520px;
  opacity: .13;
  pointer-events: none;
}
.compare-maroma > * { position: relative; }
.compare-maroma li { color: rgba(255, 255, 255, .94); }
.compare-maroma .mark { background: #fff; color: var(--magenta); }
.compare-badge {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #5a3f00;
  font-weight: 700;
  font-size: .9rem;
}

/* ------------------------------------------------------------
   DEPOIMENTOS
   ------------------------------------------------------------ */
.stories-section { text-align: center; }
.stories-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
.story-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 300px);
}
.story-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(60, 0, 40, .18);
  background: #14000d;
}
.story-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.story-caption { margin-top: 16px; max-width: 300px; }
.story-caption strong {
  display: block;
  color: var(--magenta);
  font-size: 1.08rem;
  font-weight: 650;
}
.story-caption span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 480;
  line-height: 1.5;
}
.stories-cta { margin-top: 40px; }

/* ------------------------------------------------------------
   VÍDEO DA MARCA
   ------------------------------------------------------------ */
.video-section { overflow: hidden; }
.brand-video-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.brand-video {
  width: min(100%, 820px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 28px 80px rgba(41, 0, 29, .26);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.brand-video .video-shell {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand-video .video-shell iframe { aspect-ratio: 16 / 9; }
.brand-video figcaption { padding: 19px 22px 22px; }
.brand-video figcaption strong { display: block; margin-bottom: 4px; font-size: 1.08rem; }
.brand-video figcaption span { color: rgba(255, 255, 255, .78); font-weight: 460; }

/* ------------------------------------------------------------
   UNIDADES (showcase)
   ------------------------------------------------------------ */
.showcase-section {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, var(--cream) 0%, #ffffff 100%);
  overflow: hidden;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.showcase-info { z-index: 2; }
.info-tag {
  color: var(--magenta);
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .88rem;
}
.showcase-info h3 {
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  margin: 14px 0 12px;
  color: var(--text);
  line-height: 1.05;
}
.showcase-info p {
  font-size: 1.06rem;
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 460px;
  min-height: 4.6em;
}
.showcase-controls { margin-top: 34px; display: flex; gap: 14px; }
.ctrl-btn {
  background: #fff;
  border: 2px solid var(--magenta);
  color: var(--magenta);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.15rem;
  transition: background .25s ease, color .25s ease, transform .2s ease;
}
.ctrl-btn:hover { background: var(--magenta); color: #fff; transform: translateY(-2px); }

.showcase-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-display {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(236, 0, 140, .15);
}
.main-display img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease, transform .9s cubic-bezier(.22, .8, .3, 1);
}
.main-display img.is-switching { opacity: 0; transform: scale(1.07); }

.side-thumbnails {
  position: absolute;
  right: -40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.thumb {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  opacity: .6;
  transition: opacity .3s ease, transform .3s ease, border-color .3s ease;
  border: 3px solid transparent;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .1);
  padding: 0;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active {
  opacity: 1;
  border-color: var(--magenta);
  transform: scale(1.08) translateX(-10px);
}

/* ------------------------------------------------------------
   GALERIA / PROVAS REAIS (carrossel automático)
   ------------------------------------------------------------ */
.gallery-section { overflow: hidden; }
.gallery-marquee {
  --gap: 22px;
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.gallery-track {
  display: flex;
  gap: var(--gap);
  width: max-content;
  animation: marquee 44s linear infinite;
}
.gallery-marquee:hover .gallery-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - var(--gap) / 2)); }
}
.gallery-item {
  position: relative;
  width: 300px;
  flex: 0 0 auto;
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--surface);
}
.gallery-item img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  display: none;
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq-parallax {
  background-image:
    linear-gradient(rgba(255, 255, 255, .55), rgba(255, 250, 253, .72)),
    url('../assets/franquiassorvetepicolepremiumgourmetbarato.avif');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.faq-container {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.faq-container details {
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: 18px;
  margin-bottom: 14px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(92, 0, 60, .07);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.faq-container details[open] {
  border-color: var(--magenta);
  box-shadow: 0 18px 46px rgba(236, 0, 140, .14);
}
.faq-container summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 620;
  font-size: 1.04rem;
  color: var(--text);
  list-style: none;
}
.faq-container summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(236, 0, 140, .1);
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2.4px;
  border-radius: 2px;
  background: var(--magenta);
  transform: translate(-50%, -50%);
  transition: transform .3s ease;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { overflow: hidden; }
.faq-body p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.65;
  font-weight: 460;
}

/* ------------------------------------------------------------
   FORMULÁRIO (RD Station embutido)
   ------------------------------------------------------------ */
.form-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, .8fr);
  gap: 58px;
  align-items: center;
}
.form-copy h2 { max-width: 620px; }
.form-copy p { max-width: 560px; color: rgba(255, 255, 255, .82); }

.mini-list {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.mini-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .9);
  font-weight: 520;
}
.mini-list b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--magenta);
  background: #fff;
  flex: 0 0 auto;
}

.lead-form {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .96);
  color: var(--ink);
  box-shadow: 0 30px 95px rgba(35, 0, 24, .32);
  border: 1px solid rgba(255, 255, 255, .55);
}
.form-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(236, 0, 140, .12);
}
.form-topline span {
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -.02em;
}
.form-topline picture {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: var(--cream);
  overflow: hidden;
}
.form-topline img { width: 42px; height: 42px; object-fit: contain; }
.form-privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .74rem;
  line-height: 1.5;
}
.form-privacy-note a { color: var(--magenta); text-decoration: underline; text-underline-offset: 2px; }

/* Visual do formulário nativo do RD dentro do card do site */
.rd-form-card { min-height: 520px; }
.rd-native-wrap { margin-top: 8px; }
.rd-native-wrap #franquia_site-b0c5733c644e85951c33,
.rd-native-wrap form {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  font-family: inherit !important;
}
.rd-native-wrap .bricks-form,
.rd-native-wrap .bricks-form__fieldset,
.rd-native-wrap .bricks-form__field { width: 100% !important; max-width: none !important; }
.rd-native-wrap label,
.rd-native-wrap .bricks-form__label,
.rd-native-wrap .bricks-form__field label {
  display: grid !important;
  gap: 7px !important;
  color: var(--muted) !important;
  font-size: .78rem !important;
  font-weight: 650 !important;
  letter-spacing: .02em !important;
  font-family: inherit !important;
}
.rd-native-wrap input,
.rd-native-wrap select,
.rd-native-wrap textarea,
.rd-native-wrap .bricks-form__input,
.rd-native-wrap .bricks-form__select,
.rd-native-wrap .bricks-form__textarea {
  width: 100% !important;
  border: 1px solid rgba(236, 0, 140, .13) !important;
  border-radius: 16px !important;
  outline: 0 !important;
  background: #fff8fc !important;
  color: var(--ink) !important;
  padding: 14px 14px !important;
  min-height: 50px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  box-shadow: none !important;
}
.rd-native-wrap textarea,
.rd-native-wrap .bricks-form__textarea { min-height: 86px !important; resize: vertical !important; }
.rd-native-wrap input:focus,
.rd-native-wrap select:focus,
.rd-native-wrap textarea:focus {
  border-color: var(--magenta) !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(236, 0, 140, .12) !important;
}
.rd-native-wrap button,
.rd-native-wrap input[type="submit"],
.rd-native-wrap .bricks-form__submit button {
  width: 100% !important;
  min-height: 58px !important;
  margin-top: 8px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--magenta), #ff52bd) !important;
  color: #fff !important;
  font-family: inherit !important;
  font-weight: 650 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  box-shadow: 0 18px 34px rgba(236, 0, 140, .22) !important;
  transition: transform .2s ease, box-shadow .2s ease !important;
}
.rd-native-wrap button:hover,
.rd-native-wrap .bricks-form__submit button:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 22px 44px rgba(236, 0, 140, .3) !important;
}
.rd-native-wrap .bricks-form__field { margin-bottom: 12px !important; }
.rd-native-wrap .bricks-form__privacy,
.rd-native-wrap .bricks-form__terms,
.rd-native-wrap .legal-bases {
  color: var(--muted) !important;
  font-size: .75rem !important;
  font-family: inherit !important;
}
.rd-native-wrap * { box-sizing: border-box !important; }

/* Trava a fonte do título principal mesmo se o RD injetar estilos globais */
.hero #hero-title,
#hero-title {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 900 !important;
  font-size: clamp(3rem, 10vw, 7.5rem) !important;
  line-height: .84 !important;
  letter-spacing: -.055em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  text-shadow: 0 18px 40px rgba(95, 0, 55, .22) !important;
}

/* ------------------------------------------------------------
   RODAPÉ INSTITUCIONAL
   ------------------------------------------------------------ */
.social-footer {
  width: 100%;
  padding: clamp(64px, 8vw, 104px) 0 clamp(30px, 4vw, 48px);
  color: #fff;
  text-align: center;
}
.social-footer.pink-pattern::before { opacity: .14; animation: none; }

/* Linha principal: redes à esquerda · logo ao centro · copyright à direita */
.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 60px);
  padding-bottom: clamp(40px, 6vw, 64px);
}

.footer-social { text-align: left; justify-self: start; }
.footer-social h4 {
  margin: 0 0 18px;
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 650;
  letter-spacing: -.01em;
  color: #fff;
}
.social-links { display: flex; align-items: center; gap: 14px; }
.social-links a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  color: #1c000f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, opacity .2s ease;
}
.social-links a:hover { transform: translateY(-3px); opacity: .9; }
.social-links svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-links a[aria-label="YouTube"] svg { fill: currentColor; stroke: none; }
.social-links .svg-cut { fill: #fff; }

/* Logo central da marca */
.footer-logo { justify-self: center; }
.footer-logo img {
  width: clamp(150px, 18vw, 230px);
  height: auto;
  opacity: .96;
}

/* Copyright à direita */
.footer-copyright {
  justify-self: end;
  text-align: right;
  max-width: 300px;
}
.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: .86rem;
  line-height: 1.6;
  font-weight: 460;
}

/* Faixa inferior: endereço + links institucionais */
.footer-base {
  padding-top: clamp(30px, 4vw, 44px);
  border-top: 1px solid rgba(255, 255, 255, .16);
  display: grid;
  gap: 16px;
}
.footer-address {
  margin: 0;
  font-style: normal;
  color: rgba(255, 255, 255, .9);
  font-size: .92rem;
  line-height: 1.6;
  font-weight: 480;
}
.footer-4mr-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto;
  padding: 8px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
}
.footer-4mr-tag img { height: 26px; width: auto; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px 22px;
}
.footer-links a {
  color: #fff;
  font-weight: 540;
  font-size: .9rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, .4);
  text-underline-offset: 3px;
  transition: text-decoration-color .2s ease, opacity .2s ease;
}
.footer-links a:hover { text-decoration-color: #fff; opacity: .92; }
.footer-links .sep { opacity: .4; user-select: none; }

.footer-disclaimer {
  max-width: 880px;
  margin: 6px auto 0;
  color: rgba(255, 255, 255, .68);
  font-size: .8rem;
  line-height: 1.6;
}

/* ------------------------------------------------------------
   WHATSAPP FLUTUANTE
   ------------------------------------------------------------ */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(33, 192, 99, .38);
  font-weight: 640;
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(33, 192, 99, .45); }
.whatsapp-float img { width: 25px; height: 25px; object-fit: contain; }

/* ------------------------------------------------------------
   PÁGINA LEGAL (política de privacidade)
   ------------------------------------------------------------ */
.legal-main { padding: 60px 0 90px; }
.legal-card {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-soft);
}
.legal-card h1 {
  font-family: 'Fredoka', sans-serif;
  color: var(--ink);
  text-shadow: none;
  text-transform: none;
  font-weight: 650;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  letter-spacing: -.03em;
  line-height: 1.1;
}
.legal-card h2 {
  margin-top: 34px;
  font-size: 1.3rem;
  font-weight: 650;
}
.legal-card p, .legal-card li {
  color: #5c4654;
  font-size: .98rem;
  line-height: 1.7;
  font-weight: 450;
}
.legal-updated { color: var(--muted); font-size: .84rem; }

/* ------------------------------------------------------------
   MOVIMENTO REDUZIDO
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .journey-step { opacity: 1 !important; transform: none !important; }
  .journey-track::after { transform: scaleX(1); }
  .gallery-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .gallery-marquee { mask-image: none; -webkit-mask-image: none; }
  .hero-float { animation: none; }
}

/* ------------------------------------------------------------
   RESPONSIVO
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .badge-top { left: -14px; }
  .badge-bottom { right: -10px; }
}

@media (max-width: 1180px) {
  :root { --header-h: 84px; }
  .container { width: min(100% - 28px, var(--container)); }
  .nav-wrap { border-radius: 26px; }
  .nav-toggle { display: grid; }
  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 22px 70px rgba(76, 0, 53, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .main-nav a { text-align: center; }

  .hero { min-height: 0; padding-bottom: 100px; }
  .hero-grid, .split-grid, .form-grid { grid-template-columns: 1fr; gap: 38px; }
  .hero-card { justify-self: center; }
  .float-b { right: 6%; top: 5%; }
  .float-c { display: none; }

  .journey-track { grid-template-columns: 1fr; gap: 0; padding-left: 8px; }
  .journey-track::before,
  .journey-track::after {
    top: 10px;
    bottom: 10px;
    left: 28px;
    right: auto;
    width: 4px;
    height: auto;
  }
  .journey-track::after {
    transform: scaleY(0);
    transform-origin: top center;
  }
  .journey.play .journey-track::after { transform: scaleY(1); }
  .journey-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: start;
    text-align: left;
    padding: 0 0 34px;
  }
  .journey-dot { margin: 0; }

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

  .showcase-grid { grid-template-columns: 1fr; text-align: center; }
  .showcase-info p { margin: 0 auto 26px; min-height: 0; }
  .showcase-controls { justify-content: center; }
  .side-thumbnails {
    position: relative;
    right: 0;
    flex-direction: row;
    margin-top: 26px;
    justify-content: center;
  }
  .thumb.active { transform: scale(1.08) translateX(0); }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
  }
  .footer-social { text-align: center; justify-self: center; }
  .footer-copyright { justify-self: center; text-align: center; max-width: none; }
  .social-links { justify-content: center; }
}

@media (max-width: 680px) {
  :root { --header-h: 76px; }
  .site-header { padding: 10px 0; }
  .nav-wrap { padding: 8px; }
  .brand-logo { width: 44px; height: 44px; border-radius: 15px; }
  .brand-logo img { width: 36px; height: 36px; }
  .brand strong { font-size: .88rem; }
  .brand small { font-size: .66rem; }

  .hero { padding-bottom: 88px; }
  .hero::after { height: 150px; bottom: -78px; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  h2 { font-size: clamp(1.8rem, 8.6vw, 2.5rem); }
  .hero .lead { font-size: 1.02rem; }
  .btn { width: 100%; }
  .quick-stats { grid-template-columns: 1fr; }
  .quick-stats article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }
  .quick-stats span { text-align: right; margin-top: 0; }
  .float-a { width: 54px; top: 12%; }
  .float-b { width: 60px; }

  .video-shell { border-width: 5px; border-radius: 26px; }
  .badge-top { top: -14px; left: 8px; }
  .badge-bottom { right: 8px; bottom: -20px; }
  .mini-badge { max-width: 186px; padding: 12px 13px; }

  .section { padding: 72px 0; }
  .trust-grid, .include-list, .number-grid { grid-template-columns: 1fr; }
  .number-grid article { min-height: 0; }
  .pink-pattern::before { background-size: 460px 460px; }

  .gallery-item { width: 240px; }
  .gallery-item img { height: 300px; }

  .faq-parallax { background-attachment: scroll; }
  .lead-form { padding: 18px; border-radius: 28px; }
  .form-topline span { font-size: 1.05rem; }
  .whatsapp-float { left: 14px; right: 14px; bottom: 14px; justify-content: center; }
  .social-footer { padding-bottom: 96px; }
}

/* ============================================================
   v13.1 — ESTRUTURA MULTIPÁGINA
   ============================================================ */

/* Item ativo do menu (página atual) */
.main-nav a.is-active {
  background: #fff;
  color: var(--magenta);
}

/* Botão Tour Virtual no topo */
.main-nav .nav-tour {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--magenta);
  border: 2px solid rgba(236, 0, 140, .45);
  background: #fff;
  font-weight: 640;
}
.main-nav .nav-tour svg { width: 16px; height: 16px; flex: 0 0 auto; }
.main-nav .nav-tour:hover {
  background: var(--magenta);
  color: #fff;
  border-color: var(--magenta);
}
.main-nav .nav-tour .tour-soon-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 236, 122, .8);
  animation: tourDot 2s ease-out infinite;
}
@keyframes tourDot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 236, 122, .8); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 236, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 236, 122, 0); }
}

/* Hero compacto das páginas internas */
.page-hero {
  overflow: hidden;
  padding: 64px 0 96px;
  text-align: center;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -95px;
  height: 170px;
  background: var(--surface);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .page-title {
  max-width: 900px;
  margin: 0 auto 14px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 650;
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  text-transform: none;
  color: #fff;
  text-shadow: 0 14px 34px rgba(95, 0, 55, .24);
}
.page-hero .page-lead {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.55;
  font-weight: 470;
}

/* Cards de navegação da home ("conheça mais") */
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.explore-card {
  position: relative;
  display: block;
  padding: 26px 24px 24px;
  border-radius: 26px;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.explore-card:hover {
  transform: translateY(-6px);
  border-color: rgba(236, 0, 140, .4);
  box-shadow: var(--shadow);
}
.explore-card .trust-icon { margin-bottom: 16px; }
.explore-card h3 { margin: 0 0 6px; font-size: 1.16rem; }
.explore-card p { margin: 0 0 14px; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.explore-card .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--magenta);
  font-weight: 640;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.explore-card .go svg { width: 15px; height: 15px; transition: transform .25s ease; }
.explore-card:hover .go svg { transform: translateX(4px); }

/* Faixa de CTA no fim das páginas internas */
.cta-band { text-align: center; }
.cta-band h2 { max-width: 760px; margin-inline: auto; }
.cta-band p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.04rem;
  font-weight: 470;
}
.cta-band .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Página Tour Virtual (em breve) */
.tour-soon-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow);
}
.tour-soon-card .tour-icon {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  color: var(--magenta);
  background: rgba(236, 0, 140, .08);
  animation: floaty 7s ease-in-out infinite;
}
.tour-soon-card .tour-icon svg { width: 46px; height: 46px; }
.tour-soon-card h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.tour-soon-card p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.65;
}
.tour-soon-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #5a3f00;
  font-weight: 700;
  font-size: .84rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tour-soon-card .cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Nav mais compacta entre 980 e 1200px para caber todos os itens */
@media (max-width: 1200px) and (min-width: 981px) {
  .main-nav a { padding: 11px 10px; font-size: .82rem; }
  .main-nav .nav-tour { padding: 9px 12px; }
  .brand small { display: none; }
}

@media (max-width: 980px) {
  .explore-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-hero { padding-bottom: 84px; }
}

@media (max-width: 680px) {
  .explore-grid { grid-template-columns: 1fr; }
  .cta-band .cta-actions .btn { width: 100%; }
  .tour-soon-card .cta-actions .btn { width: 100%; }
}

/* ============================================================
   v14.1 — BOTÃO DE TEMA (claro / escuro)
   ============================================================ */
.theme-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  cursor: pointer;
  color: var(--toggle-color);
  background: var(--toggle-bg);
  border: 1px solid var(--border-brand);
  transition: background .25s ease, color .25s ease, transform .2s ease, border-color .25s ease;
}
.theme-toggle:hover { transform: translateY(-1px) rotate(-8deg); }
.theme-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  transition: opacity .3s ease, transform .45s cubic-bezier(.4,0,.2,1);
}
/* Padrão (claro): mostra a LUA (clique -> escuro) */
.theme-toggle .icon-sun  { opacity: 0; transform: scale(.4) rotate(-90deg); }
.theme-toggle .icon-moon { opacity: 1; transform: scale(1) rotate(0); }
/* Escuro: mostra o SOL (clique -> claro) */
[data-theme="dark"] .theme-toggle .icon-sun  { opacity: 1; transform: scale(1) rotate(0); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 0; transform: scale(.4) rotate(90deg); }

/* Posição do toggle dentro da navbar */
.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Evita "flash" branco antes do JS: se o tema já veio marcado no <html>,
   o body assume o gradiente escuro imediatamente. */
[data-theme="dark"] body { background: var(--page-grad-mid); }

/* Ajustes finos no escuro
   ------------------------------------------------------------ */
[data-theme="dark"] .section-cream { background: var(--surface-2); }
[data-theme="dark"] .numbers-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 90, 190, .10), transparent 20rem),
    var(--surface);
}
[data-theme="dark"] .showcase-section {
  background: radial-gradient(circle at 50% 50%, var(--surface-2) 0%, var(--surface) 100%);
}
[data-theme="dark"] .center-head p:not(.eyebrow),
[data-theme="dark"] .section-head p:not(.eyebrow) { color: var(--text-muted); }

/* Cartões creme (número/incluso) usam texto claro no escuro */
[data-theme="dark"] .number-grid article:not(:nth-child(1)):not(:nth-child(4)) { color: var(--text); }
[data-theme="dark"] .number-grid article:not(:nth-child(1)):not(:nth-child(4)) small { color: var(--text-muted); }

/* FAQ parallax: escurece o overlay pra manter leitura no dark */
[data-theme="dark"] .faq-parallax {
  background-image:
    linear-gradient(rgba(21, 10, 17, .82), rgba(28, 13, 23, .9)),
    url('../assets/franquiassorvetepicolepremiumgourmetbarato.avif');
}

/* Formulário RD embutido: campos escuros no tema escuro */
[data-theme="dark"] .lead-form {
  background: var(--surface);
  border-color: var(--border-brand);
}
[data-theme="dark"] .form-topline picture { background: var(--surface-2); }
[data-theme="dark"] .rd-native-wrap input,
[data-theme="dark"] .rd-native-wrap select,
[data-theme="dark"] .rd-native-wrap textarea,
[data-theme="dark"] .rd-native-wrap .bricks-form__input,
[data-theme="dark"] .rd-native-wrap .bricks-form__select,
[data-theme="dark"] .rd-native-wrap .bricks-form__textarea {
  background: var(--surface-input) !important;
  color: var(--text) !important;
  border-color: var(--border-brand) !important;
}
[data-theme="dark"] .rd-native-wrap label,
[data-theme="dark"] .rd-native-wrap .bricks-form__label { color: var(--text-muted) !important; }

/* Botão branco vira claro suave no dark pra não estourar */
[data-theme="dark"] .btn-white {
  background: var(--surface);
  color: var(--magenta);
}
[data-theme="dark"] .btn-white:hover { background: var(--surface-2); }

/* Toggle no menu mobile: ocupa a largura como os outros itens */
@media (max-width: 980px) {
  .nav-actions {
    justify-content: center;
    padding-top: 6px;
    margin-top: 4px;
    border-top: 1px solid var(--border-brand);
  }
  .main-nav .nav-actions { order: 9; }
}

@media (prefers-reduced-motion: reduce) {
  body, .site-header .nav-wrap, .trust-card, .number-grid article,
  .explore-card, .compare-solo, .faq-container details, .lead-form,
  .section-white, .section-cream, .journey-dot, .include-list li,
  .theme-toggle, .theme-toggle svg { transition: none !important; }
}

/* ============================================================
   v14.3 — DARK MODE PROFUNDO + HEADER PREMIUM + MARCA SERIFADA
   ============================================================ */

/* --- Áreas rosa da marca ficam escuras e profundas no dark --- */
[data-theme="dark"] .pink-pattern {
  background:
    radial-gradient(circle at 16% 14%, rgba(236, 0, 140, .1), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(255, 90, 190, .08), transparent 28rem),
    linear-gradient(160deg, #140109 0%, #0c0207 46%, #070106 100%);
}
[data-theme="dark"] .pink-pattern::before { opacity: .14; }

/* mantém um leve brilho magenta nos gradientes internos */
[data-theme="dark"] .numbers-section {
  background:
    radial-gradient(circle at 20% 18%, rgba(236, 0, 140, .1), transparent 20rem),
    var(--surface);
}

/* Cartões destaque (magenta) seguem magenta, mas um pouco mais contidos no escuro */
[data-theme="dark"] .trust-card.highlight,
[data-theme="dark"] .number-grid article:nth-child(1),
[data-theme="dark"] .number-grid article:nth-child(4),
[data-theme="dark"] .compare-maroma {
  background: linear-gradient(135deg, #c40077, #8f0056);
}

/* FAQ parallax bem escuro no dark */
[data-theme="dark"] .faq-parallax {
  background-image:
    linear-gradient(rgba(8, 4, 6, .9), rgba(8, 4, 6, .95)),
    url('../assets/franquiassorvetepicolepremiumgourmetbarato.avif');
}

/* Vídeo/badges no dark */
[data-theme="dark"] .mini-badge { background: rgba(26, 14, 22, .96); color: var(--text); }
[data-theme="dark"] .mini-badge span { color: var(--text-muted); }

/* ------------------------------------------------------------
   HEADER PREMIUM (estilo 4MR) — container flutuante sofisticado
   ------------------------------------------------------------ */

/* Marca com nome na MESMA fonte do título do hero (Montserrat 900) + logo maior */
/* Marca com nome na MESMA fonte do título do hero (Montserrat 900) + logo grande estilo 4MR */
.brand-logo {
  width: 116px;
  height: 116px;
  border-radius: 22px;
}
.brand-logo img { width: 116px; height: 116px; object-fit: contain; }
.brand strong {
  font-family: 'Montserrat', 'Fredoka', sans-serif;
  font-weight: 900;
  font-size: 1.24rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
  line-height: 1;
}
.brand small {
  font-size: .72rem;
  letter-spacing: .04em;
  font-weight: 500;
}

/* ------------------------------------------------------------
   RODAPÉ — logo premium (imagem já composta) + 4MR sobre o rosa
   ------------------------------------------------------------ */
.footer-logo img {
  width: clamp(12px, 12vw, 150px);
  opacity: 1;
}
/* 4MR agora aparece direto sobre o fundo (logo é branca), sem caixa branca */
.footer-4mr-tag {
  background: transparent;
  padding: 0;
  opacity: .9;
}
.footer-4mr-tag img { height: 30px; }
[data-theme="dark"] .footer-4mr-tag { opacity: .8; }

@media (max-width: 680px) {
  .brand-logo { width: 62px; height: 62px; border-radius: 16px; }
  .brand-logo img { width: 60px; height: 60px; }
  .brand strong { font-size: 1.12rem; }
  .brand small { display: none; }
}

/* ============================================================
   v14.4 — TOUR VIRTUAL 360 (iframe embutido)
   ============================================================ */
.tour-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0c0207;
  border: 1px solid var(--border-brand);
  box-shadow: var(--shadow);
}
.tour-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.tour-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 680px) {
  .tour-frame { aspect-ratio: 4 / 5; }
  .tour-actions .btn { width: 100%; }
}

/* ============================================================
   v16 — "Premium na moldura, divertido no recheio"
   Novos componentes: herói-foto + vídeo click-to-play, fotos nos
   cards, sabores gourmet, prova de rede, quebra do investimento,
   promoções, vitrine de produtos, onde-tem (mapa + CEP + iFood),
   lightbox, banner LGPD e landing de captação.
   ============================================================ */

:root {
  --gold: #c9a133;            /* acento premium (usar com parcimônia) */
  --gold-soft: rgba(201, 161, 51, .14);
}
[data-theme="dark"] {
  --gold: #e3c063;
  --gold-soft: rgba(227, 192, 99, .16);
}

/* Serifa editorial nos números-herói e citações (Playfair em uso de verdade) */
.numbers-section .number-grid strong,
.quote-editorial {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -.01em;
}
.quote-editorial {
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
  max-width: 640px;
  margin: 0 auto;
}
.quote-editorial cite { display: block; margin-top: 14px; font-style: normal; font-family: 'Fredoka', sans-serif; font-size: .95rem; color: var(--text-muted); }

/* ---------- HERO: foto premium + vídeo click-to-play ---------- */
.hero-photo { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.hero-photo img { display: block; width: 100%; height: auto; }
.video-facade {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  cursor: pointer; border-radius: inherit; overflow: hidden; background: var(--dark);
}
.video-facade img { transition: transform .5s ease; }
.video-facade:hover img { transform: scale(1.03); }
.facade-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(33,0,23,0) 46%, rgba(33,0,23,.55));
}
.facade-play span {
  display: inline-grid; place-items: center; width: 84px; height: 84px;
  border-radius: 50%; background: var(--white); color: var(--magenta);
  box-shadow: 0 16px 44px rgba(33,0,23,.4);
  transition: transform .25s ease;
}
.facade-play span svg { width: 34px; height: 34px; margin-left: 4px; }
.video-facade:hover .facade-play span,
.video-facade:focus-visible .facade-play span { transform: scale(1.1); }
.facade-label {
  position: absolute; left: 18px; bottom: 16px; color: #fff; text-align: left;
  font-weight: 600; text-shadow: 0 2px 14px rgba(33,0,23,.6); font-size: .95rem;
}
@media (prefers-reduced-motion: no-preference) {
  .video-facade:hover .facade-play span { animation: pop-play .5s ease; }
  @keyframes pop-play { 50% { transform: scale(1.16); } }
}

/* ---------- Cards "Por que investir" com foto real ---------- */
.trust-card.has-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.trust-card.has-photo .trust-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.trust-card.has-photo .trust-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.trust-card.has-photo:hover .trust-photo img { transform: scale(1.05); }
.trust-card.has-photo .trust-body { padding: 22px 24px 26px; }
.trust-card.has-photo h3 { margin-top: 0; }

/* ---------- Números com foto de vitrine ao lado ---------- */
.numbers-split { display: grid; grid-template-columns: 1.15fr .85fr; gap: 42px; align-items: center; }
.numbers-visual { position: relative; }
.numbers-visual .frame-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.numbers-visual img { display: block; width: 100%; height: 100%; object-fit: cover; }
.numbers-visual .tag-float { position: absolute; left: 18px; bottom: 18px; }
@media (max-width: 900px) { .numbers-split { grid-template-columns: 1fr; } }

/* ---------- Sabores gourmet (desejo + selo premium) ---------- */
.sabores-section { position: relative; overflow: hidden; }
.sabores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.sabor-card {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  background: var(--surface); box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-brand);
}
.sabor-card figure { margin: 0; }
.sabor-card .sabor-img { aspect-ratio: 4 / 3.4; overflow: hidden; background: var(--surface-2); }
.sabor-card .sabor-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s ease; }
.sabor-card:hover .sabor-img img { transform: scale(1.06) rotate(.4deg); }
.sabor-card figcaption { padding: 20px 22px 24px; }
.sabor-card h3 { margin: 0 0 6px; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; font-size: 1.35rem; }
.sabor-card p { margin: 0; color: var(--text-muted); font-size: .95rem; }
.selo-gourmet {
  position: absolute; top: 14px; left: 14px; z-index: 1;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: #2b1d00;
  font-weight: 600; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 999px; box-shadow: 0 8px 22px rgba(33,0,23,.28);
}
@media (max-width: 900px) { .sabores-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ---------- Prova de rede (fachada antes/depois + números) ---------- */
.rede-band .split-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 46px; align-items: center; }
.rede-foto { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.rede-foto img { display: block; width: 100%; height: auto; }
.rede-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 26px 0 30px; }
.rede-stats article { background: var(--surface); border: 1px solid var(--border-brand); border-radius: var(--radius-sm); padding: 18px 16px; text-align: center; }
.rede-stats strong { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: 1.9rem; color: var(--magenta); }
.rede-stats span { font-size: .85rem; color: var(--text-muted); }
@media (max-width: 900px) { .rede-band .split-grid { grid-template-columns: 1fr; } .rede-stats { grid-template-columns: 1fr 1fr; } }

/* ---------- Quebra do investimento ---------- */
.invest-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 34px; background: var(--surface); border: 1px solid var(--border-brand); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.invest-table th, .invest-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--border-brand); font-size: .98rem; }
.invest-table th { background: var(--surface-2); font-weight: 600; }
.invest-table tr:last-child td { border-bottom: 0; }
.invest-table td small { color: var(--text-muted); display: block; margin-top: 2px; }
.invest-total td { background: var(--gold-soft); font-weight: 600; }
.chip-cof { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 9px 14px; border-radius: 999px; background: var(--surface-2); border: 1px dashed var(--gold); color: var(--text); font-size: .88rem; }

/* Chip de pendência (dado aguardando a marca — sinalização honesta) */
.chip-pendente { display: inline-block; padding: 3px 10px; border-radius: 999px; background: var(--gold-soft); border: 1px dashed var(--gold); color: var(--text-muted); font-size: .74rem; letter-spacing: .03em; }

/* ---------- Promoções da semana ---------- */
.promo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 40px; }
.promo-card { position: relative; border-radius: var(--radius-md); overflow: hidden; background: var(--surface); border: 1px solid var(--border-brand); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.promo-card.is-destaque { outline: 2px solid var(--magenta); outline-offset: -2px; }
.promo-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--surface-2); }
.promo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.promo-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-body h3 { margin: 0; font-size: 1.2rem; }
.promo-body p { margin: 0; color: var(--text-muted); font-size: .95rem; flex: 1; }
.selo-oferta { position: absolute; top: 14px; left: 14px; background: var(--magenta); color: #fff; font-weight: 700; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; box-shadow: 0 8px 22px rgba(33,0,23,.3); }
.promo-validade { font-size: .8rem; color: var(--text-muted); display: inline-flex; align-items: center; gap: 6px; }
.promo-empty { text-align: center; padding: 46px 20px; border: 1.5px dashed var(--border-brand); border-radius: var(--radius-md); color: var(--text-muted); max-width: 560px; margin: 40px auto 0; }
.promo-empty img { width: 84px; height: auto; margin-bottom: 12px; }

/* ---------- Vitrine de produtos (linhas no espírito do site oficial) ---------- */
.linhas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 44px; }
.linha-card {
  --linha-cor: var(--magenta);
  position: relative; display: flex; flex-direction: column;
  border-radius: 30px 30px var(--radius-md) var(--radius-md); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-brand);
  box-shadow: var(--shadow-soft); text-decoration: none; color: inherit;
  transition: transform .28s ease, box-shadow .28s ease;
}
.linha-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.linha-topo { background: var(--linha-cor); color: #fff; padding: 14px 20px; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.linha-topo h3 { margin: 0; font-size: 1.15rem; color: #fff; }
.linha-topo .linha-giro { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; background: rgba(255,255,255,.22); padding: 5px 10px; border-radius: 999px; white-space: nowrap; }
.linha-img { aspect-ratio: 4 / 3.6; overflow: hidden; background: var(--surface-2); }
.linha-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.linha-card:hover .linha-img img { transform: scale(1.05); }
.linha-body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.linha-body p { margin: 0; color: var(--text-muted); font-size: .93rem; flex: 1; }
.linha-body .go { color: var(--linha-cor); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
.linha-body .go svg { width: 18px; height: 18px; transition: transform .25s ease; }
.linha-card:hover .go svg { transform: translateX(4px); }
@media (max-width: 980px) { .linhas-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .linhas-grid { grid-template-columns: 1fr; } }

/* ---------- Onde tem Maroma: busca por CEP + mapa + unidades ---------- */
.cep-box { background: var(--surface); border: 1px solid var(--border-brand); border-radius: var(--radius-md); box-shadow: var(--shadow-soft); padding: 26px 26px 24px; max-width: 720px; margin: 40px auto 0; }
.cep-box h3 { margin: 0 0 14px; }
.cep-form { display: flex; gap: 12px; flex-wrap: wrap; }
.cep-form input {
  flex: 1; min-width: 180px; font: inherit; padding: 14px 18px;
  border-radius: 14px; border: 1.5px solid var(--border-brand);
  background: var(--surface-input); color: var(--text);
}
.cep-form input:focus-visible { outline: 3px solid var(--magenta-2); outline-offset: 1px; }
.cep-ou { text-align: center; margin: 14px 0 0; color: var(--text-muted); font-size: .9rem; }
.cep-status { margin: 14px 0 0; font-size: .95rem; min-height: 1.4em; }
.cep-status.is-erro { color: var(--danger); }
.perto-list { display: grid; gap: 14px; margin-top: 18px; }
.perto-item { display: flex; gap: 14px; align-items: center; background: var(--surface-2); border: 1px solid var(--border-brand); border-radius: var(--radius-sm); padding: 12px 14px; }
.perto-item img { width: 74px; height: 74px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.perto-item .p-info { flex: 1; min-width: 0; }
.perto-item strong { display: block; }
.perto-item .p-dist { color: var(--magenta); font-weight: 600; font-size: .88rem; }
.perto-item .p-acoes { display: flex; flex-direction: column; gap: 8px; }

.mapa-shell { position: relative; margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border-brand); background: var(--surface-2); }
#mapa { width: 100%; height: 520px; }
#mapa:empty::before { content: 'Carregando o mapa das unidades…'; display: grid; place-items: center; height: 100%; color: var(--text-muted); }
.mapa-legenda { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; margin-top: 18px; color: var(--text-muted); font-size: .9rem; }
.mapa-legenda span { display: inline-flex; align-items: center; gap: 8px; }
.pin-dot { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 2.5px solid #fff; box-shadow: 0 2px 8px rgba(33,0,23,.35); }
.pin-dot.aberta { background: var(--magenta); }
.pin-dot.em-breve { background: var(--gold); }
.pin-maroma { background: var(--magenta); border: 3px solid #fff; border-radius: 50% 50% 50% 4px; transform: rotate(-45deg); width: 30px; height: 30px; box-shadow: 0 4px 14px rgba(33,0,23,.4); display: grid; place-items: center; }
.pin-maroma.em-breve { background: var(--gold); }
.pin-maroma::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #fff; }
.leaflet-popup-content-wrapper { border-radius: 16px; font-family: 'Fredoka', sans-serif; }

.unidades-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; margin-top: 44px; }
.unidade-card { background: var(--surface); border: 1px solid var(--border-brand); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.unidade-foto { aspect-ratio: 16 / 10; overflow: hidden; background: var(--surface-2); position: relative; }
.unidade-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.unidade-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.unidade-body h3 { margin: 0; font-size: 1.2rem; }
.unidade-body address { font-style: normal; color: var(--text-muted); font-size: .92rem; flex: 1; }
.unidade-acoes { display: flex; gap: 10px; flex-wrap: wrap; }
.status-chip { position: absolute; top: 12px; left: 12px; padding: 6px 12px; border-radius: 999px; font-size: .74rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #fff; background: var(--magenta); box-shadow: 0 6px 18px rgba(33,0,23,.3); }
.status-chip.em-breve { background: var(--gold); color: #2b1d00; }
.btn-ifood { background: #ea1d2c; color: #fff !important; }
.btn-ifood:hover { background: #c8121f; }
.btn-sm { padding: 10px 16px; font-size: .88rem; border-radius: 12px; }

/* ---------- Lightbox (vanilla, teclado + foco) ---------- */
.foto-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; margin-top: 34px; }
.foto-item { position: relative; border: 0; padding: 0; cursor: zoom-in; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); }
.foto-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.foto-item:hover img, .foto-item:focus-visible img { transform: scale(1.06); }
.foto-item:focus-visible { outline: 3px solid var(--magenta-2); outline-offset: 3px; }
.foto-item figcaption, .foto-item .foto-cap { position: absolute; inset: auto 0 0 0; padding: 26px 14px 12px; color: #fff; font-size: .82rem; text-align: left; background: linear-gradient(180deg, transparent, rgba(33,0,23,.72)); }
.lbx { position: fixed; inset: 0; z-index: 1200; display: none; align-items: center; justify-content: center; background: rgba(23,0,16,.92); padding: 24px; }
.lbx.is-open { display: flex; }
.lbx figure { margin: 0; max-width: min(920px, 94vw); text-align: center; }
.lbx img { max-width: 100%; max-height: 78vh; border-radius: 18px; box-shadow: 0 30px 90px rgba(0,0,0,.5); }
.lbx figcaption { color: #ffd9ef; margin-top: 14px; font-size: .95rem; }
.lbx-btn { position: absolute; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.14); color: #fff; transition: background .2s ease; }
.lbx-btn:hover, .lbx-btn:focus-visible { background: var(--magenta); }
.lbx-btn svg { width: 24px; height: 24px; }
.lbx-fechar { top: 22px; right: 22px; }
.lbx-ant { left: 18px; top: 50%; transform: translateY(-50%); }
.lbx-prox { right: 18px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lbx-ant { left: 8px; } .lbx-prox { right: 8px; } }

/* ---------- Banner de consentimento (LGPD) ---------- */
.lgpd-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1300; background: var(--surface); color: var(--text); border: 1px solid var(--border-brand); border-radius: var(--radius-md); box-shadow: var(--shadow); padding: 18px 20px; display: none; gap: 16px; align-items: center; flex-wrap: wrap; max-width: 760px; margin-inline: auto; }
.lgpd-bar.is-visible { display: flex; }
.lgpd-bar p { margin: 0; flex: 1 1 320px; font-size: .9rem; }
.lgpd-bar .lgpd-acoes { display: flex; gap: 10px; }

/* ---------- Mascote guiando o CTA ---------- */
.cta-band .container { position: relative; }
.mascote-cta { position: absolute; right: 8px; bottom: -96px; width: 132px; pointer-events: none; filter: drop-shadow(0 14px 30px rgba(33,0,23,.35)); }
@media (prefers-reduced-motion: no-preference) {
  .mascote-cta { animation: mascote-bob 3.6s ease-in-out infinite; }
  @keyframes mascote-bob { 50% { transform: translateY(-10px) rotate(-2deg); } }
}
@media (max-width: 860px) { .mascote-cta { display: none; } }

/* ---------- Apoio visual em blocos internos ---------- */
.apoio-foto { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-soft); }
.apoio-foto img { display: block; width: 100%; height: auto; }
.bloco-apoio { display: grid; grid-template-columns: 1fr 1fr; gap: 42px; align-items: center; margin-top: 54px; }
.bloco-apoio.invert > .apoio-foto { order: 2; }
@media (max-width: 860px) { .bloco-apoio { grid-template-columns: 1fr; } .bloco-apoio.invert > .apoio-foto { order: 0; } }

/* ---------- Landing de captação (captura.html) ---------- */
.lp-header { position: sticky; top: 0; z-index: 60; background: var(--nav-bg); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-brand); }
.lp-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.lp-hero { padding: 64px 0 80px; }
.lp-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: start; }
.lp-provas { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 26px; }
.lp-provas span { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.16); color: #fff; border: 1px solid rgba(255,255,255,.28); padding: 9px 14px; border-radius: 999px; font-size: .88rem; font-weight: 500; }
.lp-selo-4mr { display: inline-flex; align-items: center; gap: 10px; margin-top: 26px; color: #ffd9ef; font-size: .85rem; }
.lp-selo-4mr img { height: 34px; width: auto; background: #fff; border-radius: 8px; padding: 4px 8px; }
.lp-foto { margin-top: 30px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.lp-foto img { display: block; width: 100%; height: auto; }
@media (max-width: 940px) { .lp-grid { grid-template-columns: 1fr; } }

/* ---------- Navegação: acomoda os novos links ---------- */
@media (min-width: 1181px) {
  .nav-wrap { gap: 12px; }
  .main-nav { gap: 2px; padding: 3px; }
  .main-nav > a { font-size: .88rem; padding: 10px 12px; }
  .main-nav .nav-tour { padding-inline: 12px; }
  .main-nav .nav-cta { padding: 10px 16px; }
  /* o wordmark pode encolher para não empurrar o menu */
  .brand span { min-width: 0; }
  .brand small { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}
/* Faixa intermediária (menu já é hambúrguer): garante respiro entre marca e botão */
@media (min-width: 981px) and (max-width: 1180px) {
  .brand small { font-size: .7rem; }
}
/* A marca é um link, mas não deve manter contorno de foco preso após o clique */
.brand:focus:not(:focus-visible) { outline: none; }

/* Utilitário de acessibilidade (rótulos só para leitores de tela) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Placeholder de fachada (ilustração da marca até a foto real chegar) */
.unidade-foto img.unidade-foto-placeholder { object-fit: contain; padding: 26px; background: var(--surface-2); }
.perto-item img[src$=".svg"] { object-fit: contain; padding: 8px; background: var(--surface-2); }

/* ============================================================
   lead.html — página de anúncio: SÓ o formulário, centralizado
   ============================================================ */
body.lead-only { min-height: 100vh; display: grid; place-items: center; padding: 28px 16px; }
.lead-only-main { width: 100%; max-width: 520px; }
.lead-only-card {
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border-brand);
  padding: 38px 32px 30px; text-align: center;
}
.lead-only-logo { display: inline-grid; place-items: center; width: 64px; height: 64px; margin: 0 auto 16px; }
.lead-only-logo img { width: 64px; height: 64px; object-fit: contain; }
.lead-only-card h1 {
  font-family: 'Montserrat', sans-serif; font-weight: 900; text-transform: uppercase;
  font-size: clamp(1.5rem, 4.6vw, 2.05rem); line-height: 1.02; letter-spacing: -.03em;
  color: var(--text); margin: 0 0 12px;
}
.lead-only-sub { color: var(--text-muted); margin: 0 0 24px; font-size: 1.02rem; }
.lead-only .rd-native-wrap { text-align: left; }
.lead-only-provas {
  list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 10px;
  text-align: left; font-size: .95rem; color: var(--text);
}
.lead-only-provas li {
  background: var(--surface-2); border: 1px solid var(--border-brand);
  border-radius: 12px; padding: 11px 15px;
}
.lead-only-privacy { font-size: .82rem; color: var(--text-muted); margin: 22px 0 0; }
.lead-only-privacy a { color: var(--magenta); }
.lead-only-4mr {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border-brand);
  color: var(--text-muted); font-size: .82rem;
}
.lead-only-4mr img { height: 30px; width: auto; }
@media (max-width: 420px) { .lead-only-card { padding: 30px 22px 26px; } }

/* ============================================================
   RÁDIO MAROMA — player do franqueado (§17 do script.js)
   Usa os tokens de tema (--surface, --text…) p/ claro e escuro.
   ============================================================ */
.radio-player{
  --radio-cor: var(--brand-pink);
  max-width: 720px; margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 40px);
  position: relative; overflow: hidden;
}
.radio-player::before{
  content:""; position:absolute; inset:0 0 auto 0; height:5px;
  background: linear-gradient(90deg, var(--radio-cor), var(--magenta-2, #ff42b7));
}
.radio-agora{ display:flex; align-items:center; gap:18px; }
.radio-capa{
  width:82px; height:82px; flex:0 0 auto; border-radius:20px;
  background: radial-gradient(120% 120% at 30% 20%, var(--radio-cor), var(--grape));
  display:grid; place-items:center; color:#fff;
  box-shadow: 0 12px 30px rgba(107,0,66,.28);
}
.radio-eq{ display:flex; align-items:flex-end; gap:4px; height:34px; }
.radio-eq i{ width:5px; height:10px; background:#fff; border-radius:3px; opacity:.9; }
.radio-player.is-playing .radio-eq i{ animation: radioEq .9s ease-in-out infinite; }
.radio-eq i:nth-child(2){ animation-delay:.15s } .radio-eq i:nth-child(3){ animation-delay:.3s } .radio-eq i:nth-child(4){ animation-delay:.45s }
@keyframes radioEq{ 0%,100%{ height:9px } 50%{ height:30px } }
.radio-info{ min-width:0 }
.radio-estado{ margin:0; font-size:.82rem; letter-spacing:.04em; text-transform:uppercase; color:var(--radio-cor); font-weight:600; }
.radio-nome{ margin:.1em 0 .1em; font-size:1.5rem; line-height:1.1; color:var(--text); }
.radio-faixa{ margin:0; color:var(--text-muted); font-size:.95rem; min-height:1.2em; }

.radio-controles{ display:flex; align-items:center; gap:20px; margin:26px 0 10px; }
.radio-play{
  width:64px; height:64px; flex:0 0 auto; border:none; cursor:pointer;
  border-radius:50%; color:#fff; background:var(--radio-cor);
  display:grid; place-items:center; transition:transform .15s ease, filter .15s ease;
  box-shadow:0 10px 26px rgba(230,0,126,.34);
}
.radio-play:hover{ transform:scale(1.06) } .radio-play:active{ transform:scale(.96) }
.radio-play svg{ width:30px; height:30px }
.radio-play .ico-pause{ display:none }
.radio-player.is-playing .radio-play .ico-play{ display:none }
.radio-player.is-playing .radio-play .ico-pause{ display:block }
.radio-volume{ display:flex; align-items:center; gap:10px; flex:1 }
.radio-mute{ background:none; border:none; color:var(--text-muted); cursor:pointer; padding:6px; border-radius:10px; }
.radio-mute svg{ width:22px; height:22px }
.radio-player.is-muted .radio-mute{ color:var(--danger) }
.radio-volume input[type=range]{ flex:1; accent-color:var(--radio-cor); height:4px; cursor:pointer; }

.radio-estacoes{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:12px; margin-top:22px; }
.radio-chip{
  --chip: var(--brand-pink);
  text-align:left; cursor:pointer; padding:14px 16px; border-radius:var(--radius-sm);
  background:var(--surface-2); border:1.5px solid var(--border-brand);
  transition:border-color .15s ease, transform .15s ease, background .15s ease;
}
.radio-chip:hover{ transform:translateY(-2px) }
.radio-chip strong{ display:block; color:var(--text); font-size:1rem; }
.radio-chip span{ display:block; color:var(--text-muted); font-size:.82rem; margin-top:2px; line-height:1.35; }
.radio-chip.is-active{ border-color:var(--chip); background:color-mix(in srgb, var(--chip) 10%, var(--surface)); }
.radio-chip.is-active strong{ color:var(--chip) }
.radio-dica{ margin-top:22px }
.radio-dica a{ color:var(--radio-cor); font-weight:600; }

@media (max-width:520px){
  .radio-agora{ flex-direction:column; text-align:center; }
  .radio-controles{ flex-wrap:wrap; justify-content:center; }
}
@media (prefers-reduced-motion: reduce){
  .radio-player.is-playing .radio-eq i{ animation:none; height:18px; }
}
