/* =====================================================================
   SUPER UZZO — Landing "Cadastrou, Ganhou!" (Essência Chá Branco Sofistic)
   Design: híbrido AZUL da marca + detalhes DOURADO/off-white (premium)
   ===================================================================== */

/* ---------- Fontes da marca (auto-hospedadas) ---------- */
@font-face {
  font-family: "NibPro";
  src: url("../fonts/NibPro-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Outfit";
  src: url("../fonts/Outfit-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --blue: #1450b4;          /* Azul Super Uzzo (principal) */
  --blue-deep: #0e3a86;
  --blue-deeper: #0a2b63;
  --blue-med: #59a1e9;      /* Azul médio */
  --blue-light: #76b7ff;    /* Azul claro */
  --blue-soft: #e9eef3;     /* Azul suave */
  --gray: #c6cacc;

  --cream: #f7f1e4;         /* off-white do rótulo Chá Branco */
  --cream-2: #efe4cf;
  --ink: #0f2340;           /* texto escuro (navy) */
  --ink-soft: #47546b;

  --gold: #c9a24b;
  --gold-hi: #e7cb85;
  --gold-deep: #a07a2c;

  --white: #ffffff;

  --grad-gold: linear-gradient(135deg, #efd699 0%, #d3ac57 45%, #b98d33 100%);
  --grad-hero: radial-gradient(120% 120% at 80% 0%, #1f63cf 0%, #1450b4 42%, #0e3a86 100%);

  --font-display: "NibPro", "Georgia", serif;
  --font-body: "Outfit", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-card: 0 24px 60px -20px rgba(9, 33, 74, 0.45);
  --shadow-soft: 0 12px 30px -12px rgba(9, 33, 74, 0.28);
  --container: 1180px;
}

/* ---------- Reset base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* trava a rolagem lateral no mobile; "clip" (e não "hidden")
     para não quebrar o position:sticky do header */
  overflow-x: clip;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 5vw, 40px);
}
.txt-gold {
  color: var(--gold-hi);
  font-style: italic;
}
/* destaque dourado na chamada "Cadastre-se e ganhe!" */
.hero__title .txt-highlight { color: var(--gold-hi); }

/* ---------- Botões ---------- */
.btn {
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--btn-fg);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 11px 20px; font-size: 0.9rem; }

.btn--gold {
  background: var(--grad-gold);
  color: #3d2c07;
  box-shadow: 0 14px 26px -10px rgba(160, 122, 44, 0.7);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn--gold:hover { filter: brightness(1.05); box-shadow: 0 18px 34px -10px rgba(160, 122, 44, 0.85); }

.btn--blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 26px -12px rgba(20, 80, 180, 0.8);
}
.btn--blue:hover { background: var(--blue-deep); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  padding: 11px 22px;
  font-size: 0.92rem;
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.22); }

/* ---------- Barra de promo ---------- */
.promobar {
  background: var(--grad-gold);
  color: #3d2c07;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.promobar strong { font-weight: 800; letter-spacing: 0.06em; }
.promobar__dot { opacity: 0.5; }

/* ---------- Header ---------- */
.site-header {
  background: var(--blue-deep);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 2px 20px -8px rgba(0, 0, 0, 0.4);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-block: 14px;
}
.site-header__logo img { height: clamp(52px, 6vw, 68px); width: auto; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  color: var(--white);
  padding-block: clamp(34px, 6vw, 66px) clamp(44px, 7vw, 80px);
  isolation: isolate;
}
/* Fundo em camadas: brilho radial + campo de bolhas (bolhas de sabão) */
.hero {
  background:
    radial-gradient(90% 80% at 78% 8%, rgba(118, 183, 255, 0.35) 0%, transparent 55%),
    radial-gradient(70% 60% at 20% 100%, rgba(89, 161, 233, 0.30) 0%, transparent 60%),
    var(--grad-hero);
}
.hero__deco { position: absolute; inset: 0; z-index: -1; overflow: hidden; pointer-events: none; }

.bubble, .ring, .dot { position: absolute; border-radius: 50%; will-change: transform; }

/* bolhas preenchidas (efeito glossy de bolha de sabão) */
.bubble {
  background: radial-gradient(circle at 34% 28%,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.12) 42%,
    rgba(255, 255, 255, 0) 62%);
  box-shadow: inset 0 -6px 16px rgba(255, 255, 255, 0.12), inset 0 4px 10px rgba(9, 33, 74, 0.15);
  animation: bubble-float var(--dur, 8s) ease-in-out var(--del, 0s) infinite;
}
.bubble--gold {
  background: radial-gradient(circle at 34% 28%,
    rgba(231, 203, 133, 0.7) 0%,
    rgba(231, 203, 133, 0.18) 44%,
    rgba(231, 203, 133, 0) 64%);
}
/* anéis (bolhas contornadas) */
.ring {
  border: 2px solid rgba(255, 255, 255, 0.24);
  animation: bubble-float var(--dur, 9s) ease-in-out var(--del, 0s) infinite;
}
.ring--gold { border-color: rgba(231, 203, 133, 0.45); }
/* pontinhos */
.dot { background: rgba(255, 255, 255, 0.5); animation: bubble-float var(--dur, 7s) ease-in-out var(--del, 0s) infinite; }

.bubble--a { width: 230px; height: 230px; top: -70px; left: -46px; --dur: 11s; }
.bubble--b { width: 130px; height: 130px; bottom: 6%;  left: 5%;   --dur: 9s;  --del: -2s; }
.bubble--c { width: 66px;  height: 66px;  top: 16%;    left: 40%;  --dur: 7s;  --del: -1s; }
.bubble--gold { width: 88px; height: 88px; top: 6%;    left: 27%;  --dur: 10s; --del: -3s; }
.bubble--d { width: 40px;  height: 40px;  bottom: 26%; left: 34%;  --dur: 6s;  --del: -1.5s; }
.bubble--e { width: 150px; height: 150px; top: 52%;    right: 40%; --dur: 12s; --del: -4s; }

.ring--a { width: 180px; height: 180px; top: 4%;    right: 12%; --dur: 12s; --del: -2s; }
.ring--b { width: 96px;  height: 96px;  bottom: 10%; left: 26%; --dur: 10s; --del: -3s; }
.ring--c { width: 54px;  height: 54px;  top: 22%;    left: 10%; --dur: 8s;  --del: -1s; }
.ring--gold { width: 120px; height: 120px; bottom: 16%; right: 18%; --dur: 11s; --del: -2.5s; }

.dot--a { width: 14px; height: 14px; top: 30%; left: 22%; --dur: 6s; --del: -1s; }
.dot--b { width: 10px; height: 10px; bottom: 34%; left: 16%; --dur: 7s; --del: -2s; }
.dot--c { width: 12px; height: 12px; top: 12%; left: 52%; --dur: 6.5s; --del: -0.5s; }

/* Bolhas extras SÓ no mobile (voando ao redor do produto) */
.mb-1 { width: 74px; height: 74px; top: 5%;  left: 7%;   --dur: 9s;  --del: -1s; }
.mb-2 { width: 44px; height: 44px; top: 25%; right: 8%;  --dur: 7s;  --del: -2s; }
.mb-3 { width: 34px; height: 34px; top: 4%;  right: 24%; --dur: 8s;  --del: -1.5s; } /* dourada */
.mb-4 { width: 58px; height: 58px; top: 30%; left: 12%;  --dur: 10s; --del: -0.5s; } /* anel */
.mb-5 { width: 30px; height: 30px; top: 15%; right: 30%; --dur: 8s;  --del: -2.5s; } /* anel */
.mb-6 { width: 12px; height: 12px; top: 22%; left: 46%;  --dur: 6s;  --del: -1s; }   /* ponto */

/* Desktop: exatamente como está (esconde as bolhas mobile) */
@media (min-width: 980px) {
  .hero__deco .m-only { display: none; }
}
/* Mobile: remove o halo grande atrás do frasco */
@media (max-width: 979px) {
  .hero__media-blob { display: none; }
}

@keyframes bubble-float {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%  { transform: translateY(-18px) translateX(6px); }
  66%  { transform: translateY(-6px) translateX(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .bubble, .ring, .dot { animation: none; }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

/* Coluna de copy (produto + frase) */
.hero__copy { order: 1; }
.hero__headrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(14px, 4vw, 22px);
  margin-bottom: clamp(18px, 3vw, 26px);
}
.hero__headtext { min-width: 0; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(231, 203, 133, 0.6);
  color: var(--gold-hi);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  padding: 8px 16px;
  border-radius: 999px;
  text-transform: uppercase;
}
.tag__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-hi);
  box-shadow: 0 0 0 4px rgba(231, 203, 133, 0.25);
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.05rem, 5.6vw, 3.1rem);
  letter-spacing: -0.01em;
  line-height: 1.06;
  margin-top: 0;
  text-wrap: balance;
}
.hero__title-line { display: block; }
.nowrap { white-space: nowrap; }
.hero__subtitle {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 30em;
  margin-top: 18px;
}
.hero__subtitle strong { color: var(--white); font-weight: 700; }

.benefits { margin-top: 26px; display: grid; gap: 14px; }
.benefit {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.02rem;
}
.benefit__icon {
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(231, 203, 133, 0.14);
  border: 1px solid rgba(231, 203, 133, 0.4);
  color: var(--gold-hi);
}
.benefit__icon svg { width: 22px; height: 22px; }
.benefit strong { font-weight: 700; }

.seal {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: rgba(9, 33, 74, 0.35);
  border: 1px dashed rgba(231, 203, 133, 0.55);
  padding: 11px 18px;
  border-radius: 14px;
  font-size: 0.95rem;
}
.seal__icon { color: var(--gold-hi); }
.seal__icon svg { width: 20px; height: 20px; }
.seal strong { color: var(--gold-hi); }

/* Produto (à esquerda, junto do título) */
.hero__media {
  position: relative;
  display: grid;
  place-items: center;
  align-self: center;   /* mobile: produto centralizado no topo */
  flex: 0 0 auto;
}
/* halo suave atrás do frasco (abraça o produto sem invadir o título) */
.hero__media-blob {
  position: absolute;
  z-index: 0;
  width: 260%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  top: 47%; left: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 46%,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.82) 28%,
    rgba(236, 242, 249, 0.5) 48%,
    rgba(255, 255, 255, 0.1) 64%,
    rgba(255, 255, 255, 0) 72%);
  border-radius: 50%;
  animation: blob-morph 12s ease-in-out infinite;
}
@keyframes blob-morph {
  0%, 100% { border-radius: 49% 51% 48% 52% / 52% 48% 52% 48%; }
  50% { border-radius: 52% 48% 53% 47% / 48% 53% 47% 53%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__media-blob { animation: none; }
}
.hero__media-glow {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(231,203,133,0.35), transparent 62%);
  filter: blur(14px);
  z-index: 0;
  bottom: 4%;
}
.hero__product {
  position: relative;
  z-index: 1;
  height: clamp(290px, 54vw, 380px);
  width: auto;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.38));
  animation: floaty 5s ease-in-out infinite;
}
.hero__gift-badge {
  position: absolute;
  z-index: 2;
  top: 4%;
  right: -6px;
  background: var(--grad-gold);
  color: #3d2c07;
  width: 68px; height: 68px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  transform: rotate(-12deg);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.5);
  border: 3px solid rgba(255, 255, 255, 0.85);
}
.hero__gift-badge strong { font-size: 1.05rem; font-weight: 900; letter-spacing: 0.03em; }
.hero__gift-badge small { font-size: 0.7rem; font-weight: 700; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__product { animation: none; }
}

/* Coluna do formulário (exclusiva à direita) */
.hero__form { order: 2; }
.lead-form,
.lead-success {
  background: var(--cream);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 32px);
  box-shadow: var(--shadow-card);
  color: var(--ink);
}
.lead-form__title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--blue-deep);
  margin-bottom: 18px;
  line-height: 1.18;
}

/* honeypot escondido */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field { margin-bottom: 15px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1.6px solid #ddd3bf;
  border-radius: 12px;
  padding: 13px 15px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: #9aa1ac; }
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.22);
}
.field input.is-invalid,
.field select.is-invalid {
  border-color: #d24b4b;
  box-shadow: 0 0 0 3px rgba(210, 75, 75, 0.15);
}

/* select: tira a aparência nativa e usa a mesma seta em todos os navegadores */
.field select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%230e3a86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}
/* enquanto nada foi escolhido, o texto fica com cor de placeholder */
.field select:invalid { color: #9aa1ac; }
.field__error {
  display: block;
  color: #c0392b;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 5px;
  min-height: 0;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--ink-soft);
  line-height: 1.4;
  margin-top: 6px;
}
.consent input {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.lead-form__submit {
  width: 100%;
  margin-top: 18px;
  font-size: 1.05rem;
  position: relative;
}
.lead-form__submit.is-loading .btn__label { opacity: 0.35; }
.btn__spinner {
  display: none;
  position: absolute;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(61, 44, 7, 0.35);
  border-top-color: #3d2c07;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.is-loading .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.lead-form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin: 12px 0 0;
}

/* Sucesso */
.lead-success { text-align: center; }
.lead-success__check {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #3d2c07;
  display: grid; place-items: center;
}
.lead-success__check svg { width: 32px; height: 32px; }
.lead-success h2 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--blue-deep);
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.lead-success p { margin: 0 0 10px; color: var(--ink-soft); }
.lead-success__how {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: 14px;
  padding: 14px 16px;
  color: var(--ink) !important;
}
.lead-success .btn { margin-top: 8px; }

/* ---------- Cabeçalho de seção ---------- */
.section-head { text-align: center; margin-bottom: clamp(28px, 5vw, 46px); }
.section-head__eyebrow {
  display: inline-block;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--blue-deep);
}

/* ---------- Como retirar ---------- */
.steps {
  background: var(--blue-soft);
  padding-block: clamp(48px, 8vw, 84px);
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(18px, 3vw, 26px);
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid #e2e8f2;
}
.step__num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-gold);
  color: #3d2c07;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px -8px rgba(160, 122, 44, 0.6);
}
.step__title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.step p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
.steps__cta { text-align: center; margin-top: clamp(30px, 5vw, 46px); }

/* ---------- Endereço + mapa ---------- */
.store { padding-block: clamp(48px, 8vw, 84px); }
.store__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(26px, 4vw, 44px);
  align-items: center;
}
/* itens de grid não podem forçar a track a crescer além da viewport */
.store__inner > * { min-width: 0; }
.store__info .section-head__title { text-align: left; margin-bottom: 6px; }
.store__info .store__eyebrow-below { display: inline-block; margin-bottom: 18px; }
.store__address {
  font-size: 1.12rem;
  line-height: 1.55;
  margin: 0 0 20px;
}
.store__address strong { color: var(--blue-deep); }
.store__points { display: grid; gap: 12px; margin-bottom: 24px; }
.store__points li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.store__ico { flex: none; font-size: 1.15rem; line-height: 1.3; }
/* Foto da fachada (min-width:0 + max-width:100% evitam que o aspect-ratio
   force uma largura mínima e estoure a tela no mobile). */
.store__photo {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
  border: 4px solid var(--white);
}
.store__photo picture { display: block; height: 100%; }
.store__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Modal do mapa ---------- */
.map-modal {
  position: fixed;
  inset: 0;
  z-index: 70;   /* acima do header (40) e do cookie banner (60) */
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 32px);
}
.map-modal[hidden] { display: none; }
.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 33, 74, 0.62);
  backdrop-filter: blur(3px);
  animation: mapFade 0.2s ease;
}
.map-modal__dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: clamp(18px, 3vw, 26px);
  overflow-y: auto;
  animation: mapPop 0.22s ease;
}
.map-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.map-modal__title {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  line-height: 1.2;
}
.map-modal__addr {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.map-modal__close {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(14, 58, 134, 0.08);
  color: var(--blue-deep);
  font-size: 1.6rem;
  line-height: 1;
  transition: background 0.2s ease;
}
.map-modal__close:hover { background: rgba(14, 58, 134, 0.16); }
.map-modal__frame {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-width: 0;
  background: #e9eef7;
}
.map-modal__frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-modal__cta { align-self: center; }

@keyframes mapFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes mapPop {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .map-modal__backdrop, .map-modal__dialog { animation: none; }
}
@media (min-width: 700px) {
  .map-modal__frame { min-height: 340px; }
}

/* ---------- Regras (2ª dobra) ---------- */
.rules-section {
  background: var(--white);
  padding-block: clamp(48px, 8vw, 84px);
}
.rules {
  background: var(--blue-soft);
  border: 1px solid #d7e0ee;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  max-width: 940px;
  margin-inline: auto;
  box-shadow: var(--shadow-soft);
}
.rules__title {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--blue-deep);
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  margin-bottom: 20px;
}
.rules__list { display: grid; gap: 13px; }
.rules__list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.rules__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.rules__list strong { color: var(--blue-deep); }

/* ---------- Rodapé ---------- */
.site-footer {
  background: var(--blue-deeper);
  color: rgba(255, 255, 255, 0.85);
  padding-block: clamp(36px, 5vw, 52px) 30px;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__logo { height: 40px; width: auto; }
.site-footer__legal { margin: 0; font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Cookie banner (LGPD) ---------- */
.cookie-banner[hidden] { display: none; }  /* faz o atributo hidden vencer o display:flex */
.cookie-banner {
  position: fixed;
  z-index: 60;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 720px;
  margin-inline: auto;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--cream-2);
  border-radius: 16px;
  box-shadow: 0 20px 50px -14px rgba(9, 33, 74, 0.5);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner p { margin: 0; font-size: 0.86rem; flex: 1 1 260px; color: var(--ink-soft); }
.cookie-banner strong { color: var(--blue-deep); }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
/* Mobile: logotipo centralizado no topo e no rodapé */
@media (max-width: 759px) {
  .site-header__inner { justify-content: center; }
  .site-footer__bottom { justify-content: center; text-align: center; }
}

@media (min-width: 760px) {
  .promobar { font-size: 0.9rem; }
}

@media (min-width: 980px) {
  .hero__inner {
    grid-template-columns: 1.5fr 0.82fr;
    column-gap: clamp(28px, 4vw, 52px);
    align-items: start;
  }
  .hero__copy { align-self: center; padding-block: 8px; }
  .hero__form { align-self: start; }   /* formulário no topo */

  /* produto à esquerda, ao lado da frase (maior e puxado p/ borda) */
  .hero__headrow {
    flex-direction: row;
    align-items: center;
    gap: clamp(8px, 1.4vw, 20px);
    margin-bottom: clamp(22px, 3vw, 30px);
  }
  .hero__media {
    align-self: center;
    margin-left: 0;   /* frasco já vem justo; alinha com a descrição abaixo */
  }
  .hero__product { height: clamp(330px, 32vw, 460px); }
  .hero__title { font-size: clamp(1.95rem, 2.95vw, 2.78rem); margin-top: 0; }

  /* foto quadrada: coluna um pouco mais estreita p/ não dominar a seção */
  .store__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr); }
}
