/* =========================================================================
   Dani Pet Shop — Banho e Tosa · Santos/SP
   Folha de estilo principal
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  /* base roxo-quase-preto: o neon só brilha de verdade sobre fundo escuro */
  --ink:    #0c0618;
  --ink-2:  #140a24;
  --ink-3:  #1c0f31;
  --ink-4:  #251543;

  --purple:   #7c3aed;
  --purple-2: #a855f7;
  --purple-3: #c084fc;
  --purple-4: #6d28d9;
  --purple-glow: rgba(168, 85, 247, .55);

  --yellow:   #fde047;
  --yellow-2: #facc15;
  --yellow-3: #fef3c7;
  --yellow-glow: rgba(253, 224, 71, .42);

  --cyan: #67e8f9;                      /* bolhas de sabão, igual ao logotipo */
  --wa:   #25d366;
  --wa-2: #128c4a;

  --white: #fdfcff;
  --lilac:   #cfc3ea;                   /* texto de apoio */
  --lilac-2: #9a8bc2;

  --line:   rgba(192, 132, 252, .16);
  --line-2: rgba(192, 132, 252, .34);
  --glass:   rgba(255, 255, 255, .035);
  --glass-2: rgba(255, 255, 255, .075);

  --ff-display: "Fredoka", "Trebuchet MS", sans-serif;
  --ff-body: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wrap: 1200px;
  --gut: clamp(20px, 5vw, 48px);
  --r-sm: 12px;
  --r: 20px;
  --r-lg: 28px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 78px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* height:auto e obrigatorio: as <img> trazem width/height no HTML (para o
   navegador reservar o espaco e evitar layout shift), e sem isto o CSS que
   muda a largura deixava a altura travada no valor do atributo, esticando
   o logotipo e as fotos */
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
/* o navegador dá margin:1em 40px a <figure> por padrão — sem isso cada card
   da galeria perderia 80px de largura */
figure { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--purple-2); color: #fff; }

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

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--purple), var(--purple-4));
  border-radius: 99px;
  border: 2px solid var(--ink);
}
::-webkit-scrollbar-thumb:hover { background: var(--purple-2); }

/* ---------- utilidades ---------- */
.wrap {
  width: min(100% - var(--gut) * 2, var(--wrap));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(68px, 9vw, 122px) 0;
  overflow: hidden;
}
.section--tight { padding: clamp(46px, 6vw, 74px) 0; }
.section > .wrap { position: relative; z-index: 1; }

.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;
}

.skip-link {
  position: absolute; left: 12px; top: -70px; z-index: 999;
  background: var(--yellow); color: #2a1206;
  padding: 11px 20px; border-radius: 0 0 10px 10px;
  font-weight: 800;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; }

/* ======================================================================
   FUNDOS DECORATIVOS
   ====================================================================== */

/* patinhas em marca d'água — assinatura visual da marca */
.paw-bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23a855f7' fill-opacity='.10'%3E%3Cellipse cx='30' cy='42' rx='8' ry='10'/%3E%3Cellipse cx='46' cy='33' rx='7' ry='9'/%3E%3Cellipse cx='62' cy='38' rx='7' ry='9'/%3E%3Cellipse cx='74' cy='51' rx='7' ry='8'/%3E%3Cpath d='M52 52c11 0 20 8 20 17s-9 11-20 11-20-2-20-11 9-17 20-17z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 150px 150px;
  pointer-events: none;
  opacity: .55;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 40%, #000 15%, transparent 72%);
}

/* auroras: manchas neon desfocadas que dão profundidade ao fundo */
.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: .5;
}
.aurora--purple {
  width: 620px; height: 620px;
  background: radial-gradient(circle, var(--purple-2) 0%, rgba(168,85,247,.22) 42%, transparent 70%);
}
.aurora--yellow {
  width: 430px; height: 430px;
  background: radial-gradient(circle, rgba(253,224,71,.5) 0%, rgba(253,224,71,.12) 45%, transparent 72%);
}
.aurora--cyan {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(103,232,249,.4) 0%, rgba(103,232,249,.1) 45%, transparent 72%);
}

/* faixa divisória em degradê neon */
.section + .section::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(92%, 900px); height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}

/* bolhas de sabão subindo — tema de banho, ecoa as bolhas do logotipo */
.bubbles {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.bubble {
  position: absolute;
  bottom: -140px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.85), rgba(255,255,255,.1) 38%, transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(103,232,249,.35), transparent 60%);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 18px rgba(103, 232, 249, .3), 0 0 22px rgba(103, 232, 249, .16);
  animation: float-up linear infinite;
}
@keyframes float-up {
  0%   { transform: translate(0, 0) scale(.6); opacity: 0; }
  12%  { opacity: .85; }
  80%  { opacity: .6; }
  100% { transform: translate(var(--drift, 30px), -115vh) scale(1.1); opacity: 0; }
}

/* ======================================================================
   TÍTULOS DE SEÇÃO
   ====================================================================== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: .76rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  text-shadow: 0 0 20px var(--yellow-glow);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
}

.s-title {
  font-size: clamp(2rem, 5.2vw, 3.45rem);
  max-width: 21ch;
  font-weight: 600;
}
.s-title em {
  font-style: normal;
  color: var(--purple-3);
  text-shadow: 0 0 38px var(--purple-glow);
}
.s-title b {
  font-weight: 600;
  color: var(--yellow);
  text-shadow: 0 0 34px var(--yellow-glow);
}
.s-lead {
  color: var(--lilac);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 64ch;
  margin-top: 18px;
}

.head-center { text-align: center; }
.head-center .s-title, .head-center .s-lead { margin-inline: auto; }

/* ======================================================================
   BOTÕES
   ====================================================================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 11px;
  padding: 16px 30px;
  border: 0; border-radius: 99px;
  font-family: var(--ff-body);
  font-size: .96rem; font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

/* varredura espelhada no hover */
.btn::after {
  content: "";
  position: absolute; top: 0; left: -140%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-22deg);
  z-index: 2;
  pointer-events: none;
}
.btn:hover::after { animation: sweep .85s var(--ease); }
@keyframes sweep { to { left: 170%; } }

/* brilho que passa sozinho, de tempos em tempos, nos botões principais */
.btn--primary::before, .btn--wa::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 35%, rgba(255,255,255,.26) 50%, transparent 65%);
  transform: translateX(-100%);
  animation: idle-shine 4.6s var(--ease) infinite;
  z-index: 1;
  pointer-events: none;
}
.btn--wa::before { animation-delay: 1.3s; }
@keyframes idle-shine {
  0%, 55% { transform: translateX(-100%); }
  85%, 100% { transform: translateX(100%); }
}

.btn--primary {
  background: linear-gradient(135deg, var(--purple-2) 0%, var(--purple) 52%, var(--purple-4) 100%);
  color: #fff;
  box-shadow: 0 10px 32px -8px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover {
  box-shadow: 0 20px 50px -10px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,.45);
}

.btn--wa {
  background: linear-gradient(135deg, #34e27e 0%, var(--wa) 52%, var(--wa-2) 100%);
  color: #04230f;
  box-shadow: 0 10px 32px -8px rgba(37,211,102,.55), inset 0 1px 0 rgba(255,255,255,.42);
}
.btn--wa:hover { box-shadow: 0 20px 50px -10px rgba(37,211,102,.7); }

.btn--yellow {
  background: linear-gradient(135deg, var(--yellow-3) 0%, var(--yellow) 48%, var(--yellow-2) 100%);
  color: #3b2606;
  box-shadow: 0 10px 32px -8px var(--yellow-glow), inset 0 1px 0 rgba(255,255,255,.62);
}
.btn--yellow:hover { box-shadow: 0 20px 50px -10px var(--yellow-glow); }

/* botão espelhado / de vidro */
.btn--glass {
  background: linear-gradient(160deg, rgba(255,255,255,.15), rgba(255,255,255,.04));
  color: var(--white);
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 8px 26px -12px rgba(0,0,0,.9);
}
.btn--glass:hover {
  border-color: var(--purple-3);
  background: linear-gradient(160deg, rgba(192,132,252,.22), rgba(255,255,255,.06));
}

.btn--lg { padding: 19px 38px; font-size: 1.04rem; }
.btn--sm { padding: 12px 22px; font-size: .88rem; }
.btn--block { display: flex; width: 100%; }

/* ======================================================================
   CARTÕES DE VIDRO
   ====================================================================== */
/* Os cards ficam sobre fundo sólido, então usam gradiente translúcido em vez
   de backdrop-filter. O blur real fica só onde há sobreposição de conteúdo
   (cabeçalho, menu, lightbox), evitando dezenas de camadas de composição. */
.glass {
  position: relative;
  background: linear-gradient(158deg, var(--glass-2) 0%, var(--glass) 44%, rgba(255,255,255,.015) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 22px 48px -30px rgba(0,0,0,.95);
  overflow: hidden;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
/* reflexo no topo — é o que dá a leitura de "vidro" */
.glass::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 48%;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
  pointer-events: none;
}
/* holofote roxo que acompanha o cursor (posição vinda do JS) */
.glass::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(168,85,247,.2), transparent 62%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.glass:hover {
  transform: translateY(-5px);
  border-color: var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 34px 62px -32px rgba(124,58,237,.6);
}
.glass:hover::after { opacity: 1; }

/* ======================================================================
   CABEÇALHO
   ====================================================================== */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .35s var(--ease);
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(12, 6, 24, .72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid transparent;
  opacity: 0;
  transition: opacity .35s var(--ease), border-color .35s var(--ease);
}
.header.is-stuck::before { opacity: 1; border-bottom-color: var(--line); }
.header.is-stuck { height: 66px; }

.header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  position: relative; z-index: 1;
  width: min(100% - var(--gut) * 2, 1320px);
}

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img {
  height: 46px; width: auto;
  filter: drop-shadow(0 3px 14px rgba(168, 85, 247, .55));
  transition: height .35s var(--ease);
}
.header.is-stuck .brand img { height: 40px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 13px;
  font-size: .9rem; font-weight: 700;
  color: var(--lilac);
  border-radius: 99px;
  position: relative;
  transition: color .25s, background-color .25s;
}
.nav a:hover, .nav a.is-active {
  color: var(--white);
  background: rgba(168, 85, 247, .16);
}
.nav a.is-active::after {
  content: "";
  position: absolute; left: 50%; bottom: 2px;
  transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 2px;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow-glow);
}

.header-cta { display: flex; align-items: center; gap: 10px; flex: none; }

/* hambúrguer */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: rgba(168, 85, 247, .1);
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: transform .3s var(--ease), opacity .2s;
}
.burger span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.burger span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* gaveta mobile */
.drawer {
  position: fixed; inset: 0;
  z-index: 99;
  background: rgba(12, 6, 24, .93);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  display: flex; flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 20px) var(--gut) 40px;
  gap: 6px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s;
}
.drawer.is-open { opacity: 1; visibility: visible; }
.drawer a {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 5.5vw, 2rem);
  font-weight: 500;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  transform: translateY(14px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease), color .2s;
}
.drawer.is-open a { transform: none; opacity: 1; }
.drawer a:hover { color: var(--purple-3); }
.drawer .btn { margin-top: 22px; }

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(34px, 5.5vw, 58px)) 0 clamp(60px, 8vw, 100px);
  background:
    radial-gradient(ellipse 90% 60% at 18% 8%, rgba(124, 58, 237, .32), transparent 62%),
    radial-gradient(ellipse 70% 55% at 88% 18%, rgba(253, 224, 71, .12), transparent 60%),
    linear-gradient(175deg, var(--ink-3) 0%, var(--ink) 58%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.hero-logo {
  width: min(100%, 425px);
  margin-bottom: 8px;
  filter: drop-shadow(0 12px 40px rgba(168, 85, 247, .55));
  animation: logo-in 1s var(--ease) both;
}
@keyframes logo-in {
  from { opacity: 0; transform: translateY(18px) scale(.94); }
}

.hero h1 {
  font-size: clamp(1.95rem, 5vw, 3.35rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--yellow);
  text-shadow: 0 0 40px var(--yellow-glow);
}
.hero-lead {
  color: var(--lilac);
  font-size: clamp(1.02rem, 1.7vw, 1.16rem);
  max-width: 54ch;
  margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 30px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: 99px;
  border: 1px solid var(--line-2);
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  font-size: .82rem; font-weight: 700;
  color: var(--lilac);
}
.chip svg { width: 15px; height: 15px; color: var(--yellow); flex: none; }

/* moldura da foto do hero */
.hero-figure { position: relative; }
.hero-figure .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -40px rgba(124, 58, 237, .85), inset 0 1px 0 rgba(255,255,255,.14);
  animation: figure-in 1.1s var(--ease) .15s both;
}
@keyframes figure-in {
  from { opacity: 0; transform: translateY(26px) scale(.97); }
}
.hero-figure .frame::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(190deg, transparent 52%, rgba(12, 6, 24, .62) 100%);
  pointer-events: none;
}
.hero-figure img { width: 100%; height: auto; }

/* etiqueta flutuante sobre a foto */
.float-tag {
  position: absolute;
  z-index: 3;
  display: flex; align-items: center; gap: 11px;
  padding: 12px 17px;
  border-radius: 16px;
  background: rgba(20, 10, 36, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  box-shadow: 0 18px 40px -20px rgba(0,0,0,.95);
  animation: bob 4.5s ease-in-out infinite;
}
@keyframes bob {
  50% { transform: translateY(-9px); }
}
.float-tag--a { left: -22px; bottom: 16%; }
.float-tag--b { right: -18px; top: 9%; animation-delay: 1.6s; }
.float-tag .ico {
  width: 38px; height: 38px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 0 22px rgba(168, 85, 247, .55);
}
.float-tag .ico svg { width: 20px; height: 20px; color: #fff; }
.float-tag b { display: block; font-size: .92rem; font-weight: 800; line-height: 1.25; }
.float-tag span { font-size: .76rem; color: var(--lilac-2); }

/* ======================================================================
   FAIXA DESLIZANTE
   ====================================================================== */
.marquee {
  position: relative;
  padding: 15px 0;
  background: linear-gradient(90deg, var(--purple-4), var(--purple), var(--purple-2), var(--purple));
  background-size: 300% 100%;
  animation: hue-slide 12s linear infinite;
  border-block: 1px solid rgba(255,255,255,.14);
  overflow: hidden;
  display: flex;
}
@keyframes hue-slide { to { background-position: 300% 0; } }
.marquee-track {
  display: flex; align-items: center; gap: 44px;
  flex: none;
  padding-right: 44px;
  animation: slide 34s linear infinite;
}
@keyframes slide { to { transform: translateX(-100%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display);
  font-size: clamp(.92rem, 2vw, 1.12rem); font-weight: 500;
  white-space: nowrap;
  color: #fff;
}
.marquee-track span::before {
  content: "🐾"; font-size: 1em;
}

/* ======================================================================
   NÚMEROS
   ====================================================================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat {
  padding: 26px 20px;
  text-align: center;
  border-radius: var(--r);
}
.stat .n {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 34px var(--yellow-glow);
  margin-bottom: 7px;
}
.stat .l {
  font-size: .84rem; font-weight: 700;
  color: var(--lilac);
  line-height: 1.4;
}

/* ======================================================================
   SOBRE
   ====================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(32px, 5vw, 62px);
  align-items: center;
}
.about-figure .frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -46px rgba(124, 58, 237, .9), inset 0 1px 0 rgba(255,255,255,.14);
}
.about-figure .frame::before {
  content: "";
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(200deg, transparent 55%, rgba(12, 6, 24, .55) 100%);
  pointer-events: none;
}

.about-list { display: grid; gap: 13px; margin-top: 26px; }
.about-list li {
  display: flex; gap: 13px; align-items: flex-start;
  color: var(--lilac);
  font-size: .98rem;
}
.about-list .tick {
  flex: none;
  width: 25px; height: 25px; margin-top: 3px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 0 16px rgba(168, 85, 247, .5);
}
.about-list .tick svg { width: 14px; height: 14px; color: #fff; }
.about-list b { color: var(--white); }

/* ======================================================================
   SERVIÇOS
   ====================================================================== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(288px, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.card { padding: 30px 26px 28px; }
.card .ico {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 17px;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 10px 28px -10px var(--purple-glow), inset 0 1px 0 rgba(255,255,255,.3);
  margin-bottom: 19px;
}
.card .ico svg { width: 27px; height: 27px; color: #fff; }
.card--gold .ico {
  background: linear-gradient(140deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 10px 28px -10px var(--yellow-glow), inset 0 1px 0 rgba(255,255,255,.6);
}
.card--gold .ico svg { color: #3b2606; }
.card h3 { font-size: 1.24rem; margin-bottom: 10px; font-weight: 600; }
.card p { color: var(--lilac); font-size: .95rem; }
.card .price {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin-top: 16px;
  font-family: var(--ff-display);
  font-size: 1.32rem; font-weight: 600;
  color: var(--yellow);
}
.card .price small {
  font-family: var(--ff-body);
  font-size: .76rem; font-weight: 700;
  color: var(--lilac-2);
}

/* ======================================================================
   TABELA DE PREÇOS
   ====================================================================== */
.price-grid {
  display: grid;
  /* 440px garante 2 colunas no desktop: com 4 cartoes fecha 2+2, em vez de
     3+1 com uma coluna vazia */
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 20px;
  margin-top: 46px;
  align-items: start;
}
.price-card { padding: 0; }
.price-card > header {
  display: flex; align-items: center; gap: 14px;
  padding: 22px 26px;
  background: linear-gradient(120deg, rgba(124, 58, 237, .4), rgba(124, 58, 237, .12));
  border-bottom: 1px solid var(--line);
}
.price-card > header .ico {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 13px;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 0 20px rgba(168, 85, 247, .55);
}
.price-card > header .ico svg { width: 22px; height: 22px; color: #fff; }
.price-card > header h3 { font-size: 1.12rem; font-weight: 600; }
.price-card > header p {
  font-size: .78rem; color: var(--lilac-2); margin: 2px 0 0;
  font-weight: 600;
}

.price-card--gold > header {
  background: linear-gradient(120deg, rgba(250, 204, 21, .3), rgba(250, 204, 21, .08));
}
.price-card--gold > header .ico {
  background: linear-gradient(140deg, var(--yellow), var(--yellow-2));
  box-shadow: 0 0 20px var(--yellow-glow);
}
.price-card--gold > header .ico svg { color: #3b2606; }

.price-list { padding: 8px 26px 24px; }
.price-list li {
  display: flex; align-items: baseline; gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list .desc { flex: 1; min-width: 0; }
.price-list .desc b {
  display: block;
  font-size: .97rem; font-weight: 800;
  color: var(--white);
  line-height: 1.35;
}
.price-list .desc span {
  display: block;
  font-size: .82rem; color: var(--lilac-2);
  line-height: 1.45;
}
.price-list .val {
  flex: none;
  font-family: var(--ff-display);
  font-size: 1.06rem; font-weight: 600;
  color: var(--yellow);
  white-space: nowrap;
  text-align: right;
  text-shadow: 0 0 22px var(--yellow-glow);
}
.price-list .val small {
  display: block;
  font-family: var(--ff-body);
  font-size: .7rem; font-weight: 700;
  color: var(--lilac-2);
  text-shadow: none;
}
.price-note {
  margin: 0 26px 24px;
  padding: 13px 16px;
  border-radius: 13px;
  background: rgba(168, 85, 247, .1);
  border: 1px solid var(--line);
  font-size: .82rem;
  color: var(--lilac);
  display: flex; gap: 10px; align-items: flex-start;
}
.price-note svg { width: 16px; height: 16px; flex: none; margin-top: 3px; color: var(--purple-3); }

/* destaque da promoção */
.promo {
  position: relative;
  margin-top: 30px;
  padding: clamp(32px, 5vw, 52px);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 90% at 50% 0%, rgba(253, 224, 71, .22), transparent 62%),
    linear-gradient(135deg, var(--ink-4), var(--ink-2));
  border: 1px solid rgba(253, 224, 71, .34);
  box-shadow: 0 34px 80px -46px var(--yellow-glow), inset 0 1px 0 rgba(255,255,255,.12);
}
/* borda neon que pulsa */
.promo::before {
  content: "";
  position: absolute; inset: -2px;
  border-radius: inherit;
  background: conic-gradient(from var(--ang, 0deg), transparent 0 62%, var(--yellow) 78%, transparent 92%);
  animation: spin-border 5s linear infinite;
  z-index: 0;
  opacity: .55;
}
.promo::after {
  content: "";
  position: absolute; inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--ink-4), var(--ink-2));
  z-index: 0;
}
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin-border { to { --ang: 360deg; } }
.promo > * { position: relative; z-index: 1; }

.promo .tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 18px; border-radius: 99px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  color: #3b2606;
  font-size: .78rem; font-weight: 900;
  letter-spacing: .13em; text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 0 30px var(--yellow-glow);
}
.promo h3 {
  font-size: clamp(1.6rem, 4.4vw, 2.5rem);
  margin-bottom: 8px;
  font-weight: 600;
}
.promo .big {
  font-family: var(--ff-display);
  font-size: clamp(3.4rem, 12vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--yellow);
  text-shadow: 0 0 60px var(--yellow-glow);
  margin: 10px 0 4px;
  display: block;
}
.promo .big sup {
  font-size: .34em; font-weight: 600;
  vertical-align: super;
  margin-right: 4px;
}
.promo p { color: var(--lilac); max-width: 48ch; margin-inline: auto; }
.promo .fine { font-size: .82rem; color: var(--lilac-2); margin-top: 14px; }
.promo .btn { margin-top: 26px; }

/* ======================================================================
   PASSO A PASSO
   ====================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 48px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 34px 24px 28px;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  /* .glass::before ja existe nestes cards: sem zerar left/height/background,
     o reflexo do vidro continua valendo e empurra o numero para a esquerda */
  position: absolute; top: 14px; right: 20px; left: auto;
  height: auto; background: none;
  font-family: var(--ff-display);
  font-size: 3.1rem; font-weight: 700;
  line-height: 1;
  color: rgba(192, 132, 252, .16);
}
.step .ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 0 24px rgba(168, 85, 247, .5);
  margin-bottom: 17px;
}
.step .ico svg { width: 24px; height: 24px; color: #fff; }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }
.step p { color: var(--lilac); font-size: .92rem; }

/* ======================================================================
   POLÍTICAS DE ATENDIMENTO
   ====================================================================== */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
  margin-top: 46px;
}
.policy {
  padding: 30px 27px;
  border-left: 3px solid var(--purple-2);
}
.policy .ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: rgba(168, 85, 247, .16);
  border: 1px solid var(--line-2);
  margin-bottom: 18px;
}
.policy .ico svg { width: 25px; height: 25px; color: var(--purple-3); }
.policy h3 { font-size: 1.14rem; margin-bottom: 11px; font-weight: 600; }
.policy p { color: var(--lilac); font-size: .94rem; }
.policy .why {
  margin-top: 15px;
  padding: 13px 15px;
  border-radius: 12px;
  background: rgba(253, 224, 71, .07);
  border: 1px solid rgba(253, 224, 71, .2);
  font-size: .87rem;
  color: var(--yellow-3);
}
.policy .why b { color: var(--yellow); }

/* ======================================================================
   GALERIA — carrossel infinito
   ====================================================================== */
/* Faixa que "sangra" até a borda da tela, para o efeito de esteira contínua
   não ficar contido dentro do .wrap central. */
.carousel {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 44px;
  overflow: hidden;
  /* sombra nas duas pontas para a foto não "nascer/sumir" de forma abrupta */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.carousel-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: var(--gut);
  /* JS duplica o conteúdo (2x) e a animação desloca exatamente metade da
     largura total — como as duas metades são idênticas, a esteira parece
     não ter fim. Duração calculada no JS a partir da largura real. */
  animation: carousel-scroll linear infinite;
}
.carousel-track.is-paused { animation-play-state: paused; }
@keyframes carousel-scroll {
  to { transform: translateX(-50%); }
}

.carousel .shot {
  flex: none;
  width: clamp(190px, 22vw, 250px);
}

.shot {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: zoom-in;
  background: var(--ink-2);
  aspect-ratio: 3 / 4;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(12, 6, 24, .92));
  font-size: .85rem; font-weight: 700;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.shot:hover, .shot:focus-visible {
  transform: translateY(-6px);
  border-color: var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(124, 58, 237, .8);
}
.shot:hover img, .shot:focus-visible img { transform: scale(1.07); }
.shot:hover figcaption, .shot:focus-visible figcaption { transform: none; opacity: 1; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid; place-items: center;
  padding: clamp(16px, 4vw, 42px);
  background: rgba(8, 3, 16, .94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(90vw, 640px); }
.lightbox img {
  max-width: 100%;
  max-height: 66vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--r);
  border: 1px solid var(--line-2);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.95);
}
.lightbox figcaption {
  margin-top: 18px;
  text-align: center;
}
.lightbox figcaption #lbCap {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2.6vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.lightbox figcaption #lbDesc {
  font-size: .92rem;
  color: var(--lilac);
  max-width: 52ch;
  margin-inline: auto;
}
.lb-btn {
  position: absolute;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(28, 15, 49, .82);
  cursor: pointer;
  transition: background-color .25s, transform .25s var(--ease), border-color .25s;
}
.lb-btn:hover { background: var(--purple); transform: scale(1.08); border-color: var(--purple-3); }
.lb-btn svg { width: 22px; height: 22px; }
.lb-close { top: clamp(14px, 3vw, 26px); right: clamp(14px, 3vw, 26px); }
.lb-prev { left: clamp(10px, 2.5vw, 26px); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(10px, 2.5vw, 26px); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.08); }

/* ======================================================================
   GARANTIAS
   ====================================================================== */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.promise {
  padding: 28px 24px;
  text-align: center;
}
.promise .ico {
  width: 58px; height: 58px;
  margin: 0 auto 17px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--purple-2), var(--purple-4));
  box-shadow: 0 0 30px rgba(168, 85, 247, .55), inset 0 1px 0 rgba(255,255,255,.3);
}
.promise .ico svg { width: 27px; height: 27px; color: #fff; }
.promise h3 { font-size: 1.08rem; margin-bottom: 9px; font-weight: 600; }
.promise p { color: var(--lilac); font-size: .91rem; }

/* ======================================================================
   INSTAGRAM
   ====================================================================== */
.insta-box {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 26px;
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--r-lg);
  background:
    radial-gradient(ellipse 70% 100% at 0% 50%, rgba(192, 132, 252, .22), transparent 60%),
    linear-gradient(120deg, var(--ink-4), var(--ink-2));
  border: 1px solid var(--line-2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.insta-box .ig-ico {
  width: 62px; height: 62px; flex: none;
  display: grid; place-items: center;
  border-radius: 19px;
  background: linear-gradient(45deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  box-shadow: 0 0 34px rgba(220, 39, 67, .55);
}
.insta-box .ig-ico svg { width: 31px; height: 31px; color: #fff; }
.insta-box h3 { font-size: clamp(1.3rem, 3vw, 1.75rem); margin-bottom: 5px; font-weight: 600; }
.insta-box p { color: var(--lilac); font-size: .95rem; }
.insta-text { display: flex; align-items: center; gap: 20px; flex: 1 1 320px; }

/* ======================================================================
   ÁREAS ATENDIDAS
   ====================================================================== */
.cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.city {
  position: relative;
  padding: 10px 19px;
  border-radius: 99px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  font-size: .89rem; font-weight: 700;
  color: var(--lilac);
  transition: border-color .3s, color .3s, transform .3s var(--ease);
}
.city::before { content: "📍 "; }
.city:hover {
  border-color: var(--purple-3);
  color: var(--white);
  transform: translateY(-2px);
}
.city--main {
  border-color: rgba(253, 224, 71, .4);
  color: var(--yellow);
  background: rgba(253, 224, 71, .08);
}

.map-frame {
  margin-top: 36px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 70px -40px rgba(124, 58, 237, .8);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 380px; border: 0; filter: grayscale(.2) contrast(1.05); }

/* ======================================================================
   FAQ
   ====================================================================== */
.faq { max-width: 860px; margin: 46px auto 0; display: grid; gap: 13px; }
.faq-item { overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  background: none; border: 0;
  text-align: left;
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.2vw, 1.12rem); font-weight: 500;
  cursor: pointer;
  transition: color .25s;
}
.faq-q:hover { color: var(--purple-3); }
.faq-q i {
  position: relative;
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: rgba(168, 85, 247, .12);
  transition: background-color .3s, transform .35s var(--ease);
}
.faq-q i::before, .faq-q i::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  background: var(--purple-3);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .3s, background-color .3s;
}
.faq-q i::before { width: 12px; height: 2px; }
.faq-q i::after { width: 2px; height: 12px; }
.faq-item.is-open .faq-q i { background: var(--purple); transform: rotate(180deg); }
.faq-item.is-open .faq-q i::after { opacity: 0; }
.faq-item.is-open .faq-q i::before { background: #fff; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 24px 22px;
  color: var(--lilac);
  font-size: .96rem;
}

/* ======================================================================
   CTA FINAL
   ====================================================================== */
.cta {
  background:
    radial-gradient(ellipse 80% 70% at 50% 100%, rgba(124, 58, 237, .34), transparent 64%),
    linear-gradient(185deg, var(--ink) 0%, var(--ink-3) 100%);
  text-align: center;
}
.cta .s-title { margin-inline: auto; }
.cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-top: 34px;
}
.cta-contacts {
  display: flex; flex-wrap: wrap; gap: 14px 34px; justify-content: center;
  margin-top: 36px;
  font-size: .93rem;
  color: var(--lilac);
}
.cta-contacts a { display: inline-flex; align-items: center; gap: 9px; transition: color .25s; }
.cta-contacts a:hover { color: var(--yellow); }
.cta-contacts svg { width: 17px; height: 17px; color: var(--purple-3); flex: none; }

/* ======================================================================
   RODAPÉ
   ====================================================================== */
.footer {
  padding: clamp(50px, 6vw, 74px) 0 30px;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px 30px;
}
.footer img.flogo {
  width: 190px; margin-bottom: 18px;
  filter: drop-shadow(0 4px 20px rgba(168, 85, 247, .5));
}
.footer p { color: var(--lilac-2); font-size: .9rem; }
.footer h4 {
  font-size: .8rem; font-weight: 800;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 17px;
  font-family: var(--ff-body);
}
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-info li {
  color: var(--lilac-2); font-size: .9rem;
  transition: color .25s;
}
.footer-links a:hover { color: var(--purple-3); }
.footer-info { display: grid; gap: 12px; }
.footer-info li { display: flex; gap: 10px; align-items: flex-start; }
.footer-info svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--purple-3); }
.footer-info a:hover { color: var(--yellow); }

.social { display: flex; gap: 11px; margin-top: 18px; }
.social a {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 13px;
  border: 1px solid var(--line-2);
  background: rgba(168, 85, 247, .1);
  transition: background-color .3s, transform .3s var(--ease), border-color .3s;
}
.social a:hover {
  background: var(--purple);
  transform: translateY(-3px);
  border-color: var(--purple-3);
}
.social svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--lilac-2);
}
.footer-bottom a { color: var(--lilac); }
.footer-bottom a:hover { color: var(--yellow); }

/* ======================================================================
   WHATSAPP FLUTUANTE
   ====================================================================== */
.wa-float {
  position: fixed;
  right: clamp(14px, 3vw, 26px);
  bottom: clamp(14px, 3vw, 26px);
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, #34e27e, var(--wa) 55%, var(--wa-2));
  box-shadow: 0 12px 34px -8px rgba(37, 211, 102, .65);
  transform: scale(0);
  transition: transform .4s var(--ease), box-shadow .3s;
}
.wa-float.is-visible { transform: scale(1); }
.wa-float:hover { box-shadow: 0 18px 46px -8px rgba(37, 211, 102, .85); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }
/* halo pulsante */
.wa-float::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ======================================================================
   ANIMAÇÕES DE ENTRADA
   ====================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ======================================================================
   RESPONSIVO
   ====================================================================== */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .header-cta .btn--wa { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  /* a foto fica DEPOIS do titulo e dos botoes: no celular o visitante
     precisa chegar ao CTA sem rolar uma foto inteira antes */
  .hero-figure { max-width: 420px; margin: 8px auto 0; width: 100%; }
  .hero-logo { margin-inline: auto; width: min(100%, 380px); }
  .hero { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-badges { justify-content: center; }
  .float-tag--a { left: 8px; }
  .float-tag--b { right: 8px; }
  .about-figure { max-width: 460px; margin-inline: auto; width: 100%; }
  .s-title, .s-lead { margin-inline: auto; }
  .insta-box { text-align: center; justify-content: center; }
  .insta-text { flex-direction: column; text-align: center; }
}

/* .price-grid (min 440px) e .policy-grid (min 420px) usam minmax() com um
   piso fixo em px: o auto-fit reduz o NÚMERO de colunas, mas não encolhe
   esse piso — então numa tela estreita a única coluna continua com 440px/
   420px de largura mínima e estoura o viewport. Força 1fr (sem piso) antes
   que isso aconteça. */
@media (max-width: 760px) {
  .price-grid, .policy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 68px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* mesmo problema em telas bem estreitas para os pisos menores (.cards
     288px, .promise-grid 310px) */
  .cards, .promise-grid { grid-template-columns: 1fr; }
  .carousel .shot { width: 152px; }
  .carousel-track { gap: 12px; }
  .shot figcaption { font-size: .76rem; padding: 26px 11px 11px; opacity: 1; transform: none; }
  .btn { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .header-cta .btn { width: auto; }
  .float-tag { padding: 9px 13px; }
  .float-tag .ico { width: 32px; height: 32px; }
  .float-tag b { font-size: .82rem; }
  .float-tag span { font-size: .7rem; }
  .price-list, .price-card > header { padding-inline: 20px; }
  .price-note { margin-inline: 20px; }
  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }
}

@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
}

/* ---------- acessibilidade: movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .bubbles { display: none; }
  /* sem a animação infinita, vira uma faixa rolável normal com o dedo/mouse */
  .carousel-track { animation: none !important; transform: none !important; overflow-x: auto; scroll-snap-type: x proximity; }
  .carousel .shot { scroll-snap-align: start; }
}

/* ---------- impressão: a tabela de preços é o que o cliente imprime ---------- */
@media print {
  .header, .drawer, .wa-float, .bubbles, .aurora, .marquee,
  .lightbox, .hero-figure, .map-frame, .carousel { display: none !important; }
  body { background: #fff; color: #111; }
  .glass, .price-card { border: 1px solid #ccc; box-shadow: none; background: #fff; }
  .price-list .val, .s-title em, .s-title b, .eyebrow { color: #6d28d9; text-shadow: none; }
  .section { padding: 18px 0; break-inside: avoid; }
}
