/* ============================================================
   GATO NEVES — Landing Page (v2, visual limpo)
   navy profundo · laranja terracota · off-white liso
   Oswald (títulos) · Playfair Display Italic (destaques) · Inter (texto)
   ============================================================ */

:root {
  /* Cores */
  --ink: #16212C;        /* navy quase preto */
  --ink-2: #1E2C3A;      /* navy card */
  --ink-3: #2A3B4D;      /* navy borda */
  --paper: #F6F4EF;      /* off-white liso */
  --paper-2: #EFECE4;    /* off-white escurecido */
  --paper-linha: #E2DED2;
  --laranja: #E8761E;    /* terracota */
  --laranja-vivo: #F08A35;
  --laranja-fundo: #E06C10;
  --slate: #8FA9BC;      /* azul acinzentado do brasão */
  --whats: #25D366;
  --ouro: #F2A93B;       /* estrelas */

  /* Tipografia */
  --f-display: "Oswald", "Arial Narrow", sans-serif;
  --f-serif: "Playfair Display", Georgia, serif;
  --f-texto: "Inter", system-ui, sans-serif;

  /* Ritmo */
  --secao-y: clamp(64px, 9vw, 120px);
  --raio: 16px;
  --sombra: 0 18px 44px rgba(10, 18, 26, .16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-texto);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.container { width: min(1120px, 92%); margin-inline: auto; }
.container--estreito { width: min(820px, 92%); }
.center { text-align: center; }
.only-desktop { display: none; }
@media (min-width: 768px) {
  .only-desktop { display: inline; }
  .only-mobile { display: none; }
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--laranja); color: var(--ink);
  padding: 10px 18px; font-weight: 700; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Tipografia base ---------- */
h1, h2 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); }
h3 { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }

/* Destaque em itálico serifado */
.marker, .hand {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--laranja);
}
.marker--grande { font-size: 1.12em; }

.kicker {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .8rem;
  color: var(--laranja-fundo);
  margin-bottom: 10px;
}
.kicker--laranja { color: var(--laranja-vivo); }

.section__sub {
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 40px;
  opacity: .85;
}
.center .section__sub, .section__sub.center { margin-inline: auto; }

/* ---------- Seções ---------- */
.section { padding-block: var(--secao-y); position: relative; }
.section--ink {
  background: linear-gradient(180deg, #141E28 0%, var(--ink) 100%);
  color: var(--paper);
}
.section--paper { background: var(--paper); color: var(--ink); }
.section--paper-2 { background: var(--paper-2); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 22px;
  font-size: .95rem;
  line-height: 1.15;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; min-height: 42px; }
.btn .ico { width: 21px; height: 21px; fill: currentColor; flex: none; }

.btn--laranja {
  background: linear-gradient(180deg, var(--laranja-vivo), var(--laranja-fundo));
  color: #131C25;
  box-shadow: 0 8px 24px rgba(232, 118, 30, .32);
}
.btn--laranja:hover { box-shadow: 0 12px 30px rgba(232, 118, 30, .45); }

.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(246, 244, 239, .4);
}
.btn--ghost:hover { border-color: var(--paper); background: rgba(246, 244, 239, .06); }

.btn--outline-ink {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--outline-ink:hover { background: var(--ink); color: var(--paper); }

.btn--ink {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(12, 20, 28, .3);
}
.btn--ink:hover { background: var(--ink-2); }

.btn--whats {
  background: var(--whats);
  color: #0B2B17;
}
.btn--whats:hover { background: #2EE07A; }

.link-seta {
  font-weight: 600;
  color: inherit;
  text-decoration-color: var(--laranja);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.link-seta:hover { color: var(--laranja-fundo); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 30, 40, .9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 244, 239, .08);
  color: var(--paper);
  transition: box-shadow .25s ease;
}
.header.rolou { box-shadow: 0 6px 24px rgba(8, 14, 20, .45); }
.header__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 68px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.header__logo-chip {
  background: var(--paper);
  border-radius: 10px;
  padding: 4px;
  display: grid;
  place-items: center;
  flex: none;
}
.header__logo-chip--lg { padding: 6px; border-radius: 12px; }
.header__name { display: flex; flex-direction: column; line-height: 1.05; }
.header__name strong {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 1.05rem;
}
.header__name small {
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate);
}
.header__nav {
  display: flex;
  gap: 22px;
  font-family: var(--f-display);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 500;
}
.header__nav a {
  text-decoration: none;
  color: rgba(246, 244, 239, .85);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.header__nav a:hover { color: var(--laranja-vivo); border-color: var(--laranja-vivo); }
.header__actions { display: flex; align-items: center; gap: 12px; }

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 2px solid rgba(246, 244, 239, .3);
  border-radius: 10px;
  cursor: pointer;
}
.header__burger span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform .25s ease, opacity .2s ease;
}
.header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink-2);
    border-bottom: 3px solid var(--laranja);
    padding: 8px 0 12px;
    display: none;
  }
  .header__nav.aberto { display: flex; }
  .header__nav a { padding: 13px 6%; border-bottom: none; font-size: 1rem; }
  .header__burger { display: flex; }
  .header__name small { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  padding-block: clamp(56px, 8vw, 110px);
  overflow: hidden;
  position: relative;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(720px 420px at 82% 18%, rgba(232, 118, 30, .16), transparent 65%),
    radial-gradient(560px 380px at 8% 92%, rgba(143, 169, 188, .1), transparent 60%);
}
.hero__grid {
  display: grid;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (min-width: 920px) {
  .hero__grid { grid-template-columns: 1.04fr .96fr; }
}
.hero h1 { margin-bottom: 18px; }
.hero h1 .marker { font-size: .94em; }
.hero__sub {
  font-size: clamp(1.08rem, 1.5vw, 1.22rem);
  max-width: 440px;
  color: rgba(246, 244, 239, .88);
  margin-bottom: 30px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.hero__stats li {
  display: grid;
  gap: 2px;
  padding-right: 26px;
  margin-right: 26px;
  border-right: 1px solid rgba(246, 244, 239, .14);
}
.hero__stats li:last-child { border-right: 0; padding-right: 0; margin-right: 0; }
.hero__stats strong {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--laranja-vivo);
}
.hero__stats span {
  font-size: .78rem;
  line-height: 1.35;
  color: rgba(246, 244, 239, .68);
}

.hero__midia { position: relative; margin-block: 18px 26px; }
.hero__foto {
  margin: 0;
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 14, 20, .5);
  border: 1px solid rgba(246, 244, 239, .1);
}
.hero__card {
  position: absolute;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(8, 14, 20, .35);
}
.hero__card--nota {
  left: clamp(-18px, -1.5vw, -8px);
  bottom: -24px;
  background: #FFFFFF;
  color: var(--ink);
  padding: 14px 20px;
  display: grid;
  gap: 1px;
}
.hero__card--nota strong { font-family: var(--f-display); font-size: 1.06rem; letter-spacing: .02em; }
.hero__card--nota small { color: #66707B; font-size: .78rem; }
.hero__card--chip {
  top: -16px;
  right: clamp(-14px, -1vw, -6px);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(22, 33, 44, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(246, 244, 239, .16);
  color: var(--paper);
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  padding: 10px 16px;
  border-radius: 999px;
}
.hero__card--chip .ico { width: 19px; height: 19px; color: var(--laranja-vivo); }
@media (max-width: 919px) {
  .hero__card--nota { left: 12px; bottom: -20px; padding: 11px 16px; }
  .hero__card--chip { right: 8px; top: -14px; font-size: .72rem; padding: 8px 12px; gap: 7px; }
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .hero__stats li { border-right: 0; padding-right: 0; margin-right: 0; }
  .hero__stats strong { font-size: 1.5rem; }
}

.stars { color: var(--ouro); letter-spacing: .1em; font-size: .95em; }
.stars--lg { font-size: 1.5rem; }

/* ---------- Dor ---------- */
.dor h2 { margin-bottom: 36px; }
.dor__notas {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-bottom: 40px;
}
.nota {
  background: #FFFFFF;
  border: 1px solid var(--paper-linha);
  border-left: 4px solid var(--laranja);
  border-radius: 12px;
  padding: 20px 18px;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.06rem;
  line-height: 1.5;
  color: #34424F;
  box-shadow: 0 10px 24px rgba(22, 33, 44, .06);
}
.dor__texto {
  max-width: 680px;
  font-size: 1.08rem;
}
.dor__texto strong { color: var(--laranja-fundo); }

/* ---------- Passos ---------- */
.passos h2 { margin-bottom: 52px; }
.passos__grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-bottom: 44px;
}
.card-paper {
  background: #FFFFFF;
  border: 1px solid var(--paper-linha);
  border-radius: var(--raio);
  box-shadow: 0 12px 28px rgba(22, 33, 44, .06);
  padding: 28px 24px;
}
.passo { position: relative; padding-top: 40px; }
.passo__num {
  position: absolute;
  top: -24px;
  left: 24px;
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 700;
  font-size: 1.4rem;
  color: #131C25;
  background: linear-gradient(180deg, var(--laranja-vivo), var(--laranja-fundo));
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(232, 118, 30, .35);
}
.passo h3 { font-size: 1.12rem; margin-bottom: 10px; }
.passo p { font-size: .98rem; color: #3A4856; }
.passo strong { color: var(--laranja-fundo); }

/* ---------- Diferenciais (bento) ---------- */
.diferenciais h2 { margin-bottom: 44px; }
.bento { display: grid; gap: 22px; }
@media (min-width: 860px) {
  .bento { grid-template-columns: repeat(12, 1fr); }
  .bento__card { grid-column: span var(--span, 6); }
}
.bento__card {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--raio);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, border-color .2s ease;
}
.bento__card:hover { transform: translateY(-4px); border-color: rgba(232, 118, 30, .55); }
.bento__card--foto img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (min-width: 860px) {
  .bento__card--foto img { height: 260px; }
}
.bento__body { padding: 22px 24px 26px; }
.bento__body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--paper); }
.bento__body p { color: rgba(246, 244, 239, .8); font-size: .98rem; }
.bento__card--flat { justify-content: center; padding-top: 26px; }
.bento__ico { width: 52px; height: 52px; color: var(--laranja); margin: 0 24px; }
.bento__hand { font-size: 1.05rem; color: var(--laranja-vivo); margin-left: 4px; white-space: nowrap; }
.tag {
  display: inline-block;
  background: var(--laranja);
  color: #131C25;
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.tag--mini { font-size: .62rem; padding: 3px 9px; margin-bottom: 8px; }

/* ---------- Areia embalada ---------- */
.embalada .section__sub { margin-bottom: 52px; max-width: 640px; }
.embalada__grid {
  display: grid;
  gap: 44px;
  align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 920px) {
  .embalada__grid { grid-template-columns: .92fr 1.08fr; }
}
.embalada__foto { margin: 0; }
.embalada__foto img {
  border-radius: var(--raio);
  box-shadow: 0 22px 50px rgba(22, 33, 44, .2);
}
.embalada .check-lista li { color: #3A4856; }
.embalada .check-lista li strong { color: var(--ink); }
.embalada__publico {
  font-size: .98rem;
  color: #5A6672;
  margin: 22px 0 26px;
  max-width: 520px;
}
.embalada__produtos {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.embalada__produtos li {
  background: #FFFFFF;
  border: 1px solid var(--paper-linha);
  border-top: 4px solid var(--laranja);
  border-radius: 12px;
  padding: 18px 18px 16px;
  display: grid;
  gap: 4px;
  box-shadow: 0 10px 24px rgba(22, 33, 44, .05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.embalada__produtos li:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(22, 33, 44, .1);
}
.embalada__produtos img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}
.embalada__produtos strong {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 1.02rem;
}
.embalada__produtos span { font-size: .85rem; color: #66707B; }

/* ---------- Depoimentos ---------- */
.depoimentos h2 { margin-bottom: 30px; }
.depo__nota {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.depo__media {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 1;
}
.depo__fonte { font-size: 1rem; color: #3A4856; }
.depo__fonte a { font-weight: 700; color: var(--ink); }
.depo__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 36px;
}
.depo {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.depo p {
  font-size: 1.02rem;
  color: #2C3947;
  flex: 1;
}
.depo footer { display: flex; flex-direction: column; gap: 2px; }
.depo footer small { color: #6A7684; font-size: .8rem; }

/* ---------- Produtos ---------- */
.produtos h2 { margin-bottom: 10px; }
.produtos__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-bottom: 56px;
}
.produto {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: var(--raio);
  padding: 20px 20px 18px;
  text-decoration: none;
  min-height: 108px;
  position: relative;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.produto:hover {
  transform: translateY(-3px);
  border-color: var(--laranja);
  background: #223243;
}
.produto h3 { font-size: 1.02rem; color: var(--paper); font-weight: 500; }
.produto__seta {
  margin-top: auto;
  color: var(--laranja-vivo);
  font-size: 1.3rem;
  font-weight: 700;
  transition: translate .18s ease;
}
.produto:hover .produto__seta { translate: 6px 0; }

/* Marcas (marquee) */
.marcas__titulo {
  font-family: var(--f-display);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  color: var(--slate);
  margin-bottom: 20px;
}
.marcas__marquee {
  display: flex;
  overflow: hidden;
  gap: 40px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marcas__lista {
  display: flex;
  gap: 40px;
  flex: none;
  align-items: center;
  animation: marquee 26s linear infinite;
}
.marcas__marquee:hover .marcas__lista { animation-play-state: paused; }
.marcas__lista li {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.15rem;
  color: rgba(246, 244, 239, .5);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 40px)); }
}

/* ---------- Dicas ---------- */
.dicas h2 { margin-bottom: 6px; }
.dicas__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 44px 0 40px;
}
.dica {
  background: linear-gradient(180deg, #1B2836, var(--ink));
  color: var(--paper);
  border-radius: var(--raio);
  padding: 26px 24px 24px;
  border: 1px solid var(--ink-3);
  border-top: 4px solid var(--laranja);
  box-shadow: 0 14px 30px rgba(22, 33, 44, .14);
}
.dica h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.dica h3 span {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 600;
  text-transform: none;
  color: var(--laranja-vivo);
  display: inline-block;
}
.dica p { font-size: .95rem; color: rgba(246, 244, 239, .82); }

/* ---------- FAQ ---------- */
.faq h2 { margin-bottom: 40px; }
.faq__lista { display: grid; gap: 12px; }
.faq details {
  background: #FFFFFF;
  border: 1px solid var(--paper-linha);
  border-radius: 12px;
  overflow: hidden;
}
.faq details[open] { border-color: var(--laranja); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--laranja-fundo);
  transition: rotate .2s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq summary:hover { color: var(--laranja-fundo); }
.faq details p {
  padding: 0 20px 20px;
  color: #3A4856;
}
.faq details a { color: var(--laranja-fundo); font-weight: 600; }

/* ---------- Onde fica ---------- */
.onde__grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 920px) {
  .onde__grid { grid-template-columns: 1.05fr .95fr; }
}
.onde h2 { margin-bottom: 30px; }
.onde__lista { display: grid; gap: 20px; margin-bottom: 26px; }
.onde__lista li { display: grid; gap: 3px; }
.onde__lista strong {
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: var(--laranja-vivo);
}
.onde__lista span { color: rgba(246, 244, 239, .9); }
.onde__lista a { color: var(--paper); font-weight: 600; text-decoration-color: var(--laranja); text-underline-offset: 3px; }
.onde__botoes { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.onde__entrega {
  border-top: 1px solid rgba(246, 244, 239, .14);
  padding-top: 28px;
}
.onde__entrega h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 600;
}
.check-lista { display: grid; gap: 12px; margin-bottom: 24px; }
.check-lista li {
  padding-left: 30px;
  position: relative;
  color: rgba(246, 244, 239, .88);
}
.check-lista li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--laranja);
  font-weight: 800;
  font-size: 1.1rem;
}
.check-lista strong { color: var(--paper); }

/* Foto com legenda (limpa) */
.foto-card { margin: 0; }
.foto-card img {
  border-radius: var(--raio);
  box-shadow: 0 20px 48px rgba(8, 14, 20, .45);
  border: 1px solid rgba(246, 244, 239, .1);
}
.foto-card figcaption {
  margin: 12px 2px 16px;
  font-size: 1.02rem;
  color: rgba(246, 244, 239, .75);
}
.onde__mapa {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 12px;
  filter: saturate(.85);
}

/* ---------- CTA final ---------- */
.cta-final {
  background: linear-gradient(180deg, var(--laranja-vivo) 0%, var(--laranja-fundo) 100%);
  color: #16212C;
  padding-block: clamp(56px, 8vw, 96px);
}
.cta-final h2 { margin-bottom: 14px; }
.cta-final p { font-size: 1.12rem; margin-bottom: 28px; font-weight: 500; }
.cta-final__micro {
  font-size: .85rem !important;
  margin-top: 16px;
  font-weight: 500 !important;
  opacity: .8;
}

/* ---------- Footer ---------- */
.footer {
  background: #101922;
  color: rgba(246, 244, 239, .78);
  padding-top: 56px;
  font-size: .93rem;
}
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  padding-bottom: 40px;
}
.footer__marca { display: grid; gap: 14px; justify-items: start; max-width: 300px; }
.footer h3 {
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--laranja-vivo);
  margin-bottom: 14px;
}
.footer ul { display: grid; gap: 9px; }
.footer a { color: rgba(246, 244, 239, .85); text-decoration-color: rgba(232, 118, 30, .5); text-underline-offset: 3px; }
.footer a:hover { color: var(--laranja-vivo); }
.footer__legal {
  border-top: 1px solid rgba(246, 244, 239, .1);
  padding-block: 18px;
  font-size: .8rem;
  color: rgba(246, 244, 239, .45);
}

/* ---------- WhatsApp flutuante ---------- */
.whats-flutuante {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whats);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(12, 60, 30, .45);
  transition: transform .18s ease;
}
.whats-flutuante:hover { transform: scale(1.08); }
.whats-flutuante svg { width: 32px; height: 32px; }
.whats-flutuante::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whats);
  animation: pulso 2.2s ease-out infinite;
}
@keyframes pulso {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visivel { opacity: 1; transform: none; }
.no-observer .reveal { opacity: 1; transform: none; }

/* Âncoras não escondem o título sob o header fixo */
section[id], [id] { scroll-margin-top: 84px; }

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marcas__lista { animation: none; }
  .whats-flutuante::after { animation: none; }
  .btn, .bento__card, .produto { transition: none; }
}
