/* ===================== TOKENS ===================== */
:root {
  --blue-900: #08315c;
  --blue-700: #0a4d8c;
  --blue-600: #0b5aa6;
  --blue-500: #1577cc;
  --blue-300: #6fb6ec;
  --blue-100: #e7f2fb;
  --blue-050: #f3f8fc;

  --yellow: #ffd400;
  --wpp: #25d366;
  --wpp-dark: #1da851;

  --ink: #0f1c2b;
  --muted: #5a6b7b;
  --line: #e1e8ef;
  --white: #ffffff;

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(10, 49, 92, .06);
  --shadow: 0 10px 30px rgba(10, 49, 92, .10);
  --shadow-lg: 0 24px 60px rgba(10, 49, 92, .16);

  --max: 1140px;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 24px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn .icon { width: 20px; height: 20px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn--wpp { background: var(--wpp); color: #053a1b; box-shadow: 0 8px 22px rgba(37, 211, 102, .35); }
.btn--wpp:hover { background: var(--wpp-dark); color: #fff; }
.btn--ghost { background: var(--white); color: var(--blue-700); border-color: var(--blue-100); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--blue-300); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.is-scrolled { box-shadow: 0 6px 24px rgba(10, 49, 92, .10); background: rgba(255, 255, 255, .96); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__mark { font-weight: 900; font-size: 1.5rem; letter-spacing: -.5px; color: var(--blue-700); }
.logo__mark--accent { color: var(--blue-500); }
.logo__sub { font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-weight: 600; font-size: .96rem; color: var(--ink); transition: color .15s; }
.nav a:hover { color: var(--blue-600); }
.nav__cta {
  background: var(--wpp); color: #053a1b !important;
  padding: 11px 20px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, .3);
}
.nav__cta:hover { background: var(--wpp-dark); color: #fff !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--blue-700); border-radius: 2px; transition: .25s; }

/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 480px at 86% -8%, rgba(21,119,204,.55), transparent 60%),
    radial-gradient(760px 520px at -6% 112%, rgba(11,90,166,.45), transparent 60%),
    linear-gradient(160deg, #0d3a64 0%, #08243f 58%, #061b30 100%);
  padding: 84px 0 90px;
}
/* Pontilhado sutil claro pra dar textura no fundo escuro */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.06) 1.2px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(70% 70% at 35% 30%, #000, transparent 78%);
  mask-image: radial-gradient(70% 70% at 35% 30%, #000, transparent 78%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px; font-size: .9rem; color: var(--muted);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.hero__badge strong { color: var(--ink); }
.stars { color: var(--yellow); letter-spacing: 1px; }

.hero__title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 900; line-height: 1.1; letter-spacing: -1px; color: #fff; }
.hl { color: #fff; position: relative; white-space: nowrap; }
.hl::after { content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px; background: var(--yellow); opacity: .85; z-index: -1; border-radius: 4px; }

.hero__text { font-size: 1.16rem; color: rgba(226,239,251,.82); margin: 22px 0 30px; max-width: 540px; }
.hero__text strong { color: #fff; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-weight: 600; font-size: .94rem; color: #bfe0ff; }

.hero__panel { display: flex; flex-direction: column; gap: 18px; align-items: center; }
/* Moldura mockup de smartphone */
.hero__video {
  position: relative; width: 100%; max-width: 300px; margin-inline: auto;
  padding: 13px; border-radius: 46px;
  background: linear-gradient(155deg, #f3f5f9 0%, #ced4de 55%, #b4bcc8 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,.65), inset 0 2px 4px rgba(255,255,255,.9);
}
/* Botões laterais (energia à direita, volume à esquerda) */
.hero__video::before,
.hero__video::after { content: ''; position: absolute; width: 3px; border-radius: 4px; background: #a7aeba; z-index: 0; }
.hero__video::before { right: -3px; top: 126px; height: 60px; }
.hero__video::after  { left: -3px;  top: 100px; height: 54px; }
/* Notch / dynamic island */
.hero__phone-notch {
  position: absolute; top: 25px; left: 50%; transform: translateX(-50%);
  width: 84px; height: 23px; background: #000; border-radius: 999px; z-index: 6;
}
/* Tela */
.hero__phone-screen {
  position: relative; aspect-ratio: 9 / 16; border-radius: 34px; overflow: hidden;
  background: var(--blue-900); z-index: 1;
}
.hero__video-el {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 2;
}
.hero__video-fallback {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  text-align: center; padding: 24px; color: var(--blue-100);
  background: linear-gradient(160deg, var(--blue-600), var(--blue-900));
}
.hero__video-play {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.4rem; color: #fff;
}
.hero__video-fallback p { font-weight: 700; font-size: 1.1rem; color: #fff; }
.hero__video-fallback small { font-size: .76rem; color: var(--blue-300); }
.hero__video-fallback code { background: rgba(255,255,255,.12); padding: 2px 6px; border-radius: 5px; }
.hero__video-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 3;
  background: rgba(8,49,92,.78); color: #fff; backdrop-filter: blur(6px);
  font-weight: 700; font-size: .82rem; padding: 7px 14px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero__video-tag em { color: var(--yellow); font-style: normal; }

.hero__brands { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.hero__brands span {
  background: var(--white); border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 10px; font-weight: 700; color: var(--blue-700);
  font-size: .9rem; box-shadow: var(--shadow-sm);
}

/* ===================== STRIP ===================== */
.strip { background: var(--blue-700); padding: 40px 0; }
.strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.strip__item { color: #fff; text-align: center; }
.strip__icon { font-size: 2rem; margin-bottom: 10px; }
.strip__item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.strip__item p { font-size: .92rem; color: var(--blue-100); }

/* ===================== SECTIONS ===================== */
.section { padding: 84px 0; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-500); margin-bottom: 12px; }
.section__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 900; letter-spacing: -.5px; }
.section__head p { color: var(--muted); font-size: 1.08rem; margin-top: 12px; }

/* ===================== SERVIÇOS ===================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { aspect-ratio: 16 / 11; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__body { padding: 24px 26px 28px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); }
.brands-line { text-align: center; margin-top: 34px; color: var(--muted); font-size: 1.05rem; }

/* ===================== CONFIANÇA ===================== */
.section--trust {
  background:
    radial-gradient(700px 420px at 92% 8%, rgba(21,119,204,.32), transparent 60%),
    linear-gradient(160deg, #0d3a64 0%, #08243f 100%);
}
.section--trust .eyebrow { color: #7cc0f5; }
.section--trust .trust__text h2 { color: #fff; }
.section--trust .trust__text > p { color: rgba(226,239,251,.82); }
.section--trust .trust__list li { color: rgba(226,239,251,.92); }
.section--trust .trust__list strong { color: #bfe0ff; }
.trust__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: 56px; align-items: center; }
.trust__text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: 16px; }
.trust__text > p { color: var(--muted); font-size: 1.08rem; margin-bottom: 24px; }
.trust__list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 30px; }
.trust__list li { position: relative; padding-left: 34px; color: var(--ink); }
.trust__list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; background: var(--wpp); color: #fff;
  border-radius: 50%; display: grid; place-items: center; font-size: .75rem; font-weight: 800;
}
.trust__list strong { color: var(--blue-700); }

.trust__proof { display: flex; flex-direction: column; gap: 18px; }
.trust__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.trust__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-badge {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; text-align: center; box-shadow: var(--shadow);
}
.proof-badge__num { display: block; font-size: 3.6rem; font-weight: 900; color: var(--blue-700); line-height: 1; }
.proof-badge__stars { display: block; color: var(--yellow); font-size: 1.5rem; letter-spacing: 3px; margin: 6px 0; }
.proof-badge__label { color: var(--muted); font-weight: 600; }
.proof-mini { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-sm); }
.proof-mini strong { display: block; font-size: 1.3rem; color: var(--blue-700); }
.proof-mini span { color: var(--muted); font-size: .92rem; }

/* ===================== VÍDEOS ===================== */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  background: linear-gradient(160deg, var(--blue-600), var(--blue-900));
  color: #fff; border-radius: var(--radius); padding: 28px 24px 26px;
  min-height: 200px; display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden; box-shadow: var(--shadow); transition: transform .2s;
}
.video-card:hover { transform: translateY(-4px); }
.video-card__play {
  position: absolute; top: 22px; left: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.18); display: grid; place-items: center; font-size: 1.1rem;
}
.video-card__tag { font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.video-card p { color: var(--blue-100); font-size: .95rem; }
.videos__cta, .reviews__cta { text-align: center; margin-top: 36px; }

/* ===================== AVALIAÇÕES / CARROSSEL ===================== */
.section--reviews { background: var(--blue-050); }

/* Resumo estilo Google */
.g-summary {
  display: flex; align-items: center; gap: 18px;
  max-width: 560px; margin: 0 auto 36px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 24px; box-shadow: var(--shadow-sm);
}
.g-logo { width: 42px; height: 42px; flex: 0 0 auto; }
.g-summary__info { flex: 1; }
.g-summary__top { display: flex; align-items: center; gap: 10px; }
.g-summary__top strong { font-size: 1.9rem; font-weight: 700; color: #202124; line-height: 1; }
.g-stars { color: #fbbc04; letter-spacing: 1px; font-size: 1.15rem; }
.g-summary__count { font-size: .92rem; color: var(--muted); }
.g-summary__count strong { color: #202124; }
.g-summary__btn {
  flex: 0 0 auto; font-weight: 600; font-size: .92rem; color: #1a73e8;
  border: 1px solid #dadce0; border-radius: 999px; padding: 9px 18px; transition: .15s;
}
.g-summary__btn:hover { background: #f1f6fe; border-color: #1a73e8; }

.carousel-wrap { position: relative; max-width: 760px; margin: 0 auto; padding: 0 60px; }
.carousel { position: relative; overflow: hidden; border-radius: 12px; padding: 6px 4px; }
.carousel__track { display: flex; transition: transform .5s cubic-bezier(.22,.61,.36,1); }
.review { flex: 0 0 100%; padding: 8px; }

/* Card no estilo Google */
.g-card {
  background: var(--white); border: 1px solid #e8eaed; border-radius: 12px;
  padding: 24px 26px 28px; box-shadow: var(--shadow-sm); text-align: left;
  min-height: 210px;
}
.g-card__head { display: flex; align-items: center; gap: 12px; }
.g-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 1.25rem; flex: 0 0 auto;
}
.g-card__id { flex: 1; line-height: 1.3; }
.g-card__name { display: block; font-weight: 600; color: #202124; font-size: 1rem; }
.g-card__time { font-size: .82rem; color: #70757a; }
.g-card__logo { width: 22px; height: 22px; flex: 0 0 auto; }
.g-card__stars { color: #fbbc04; font-size: 1.15rem; letter-spacing: 1px; margin: 14px 0 8px; }
.g-card__text { color: #3c4043; font-size: 1.02rem; line-height: 1.6; }

.carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--white); color: var(--blue-700); font-size: 1.6rem; cursor: pointer;
  box-shadow: var(--shadow); display: grid; place-items: center; transition: .15s; z-index: 5;
}
.carousel__btn:hover { background: var(--blue-600); color: #fff; }
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }

.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel__dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--blue-300); cursor: pointer; opacity: .5; transition: .2s; }
.carousel__dots button.is-active { opacity: 1; background: var(--blue-600); width: 26px; border-radius: 5px; }

/* ===================== ÁREA ===================== */
.area__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.area__text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: 14px; }
.area__text > p { color: var(--muted); font-size: 1.08rem; }
.area__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.area__tags li { background: var(--blue-100); color: var(--blue-700); font-weight: 600; padding: 7px 14px; border-radius: 999px; font-size: .9rem; }
.area__addr { color: var(--ink); line-height: 1.9; }
.area__map iframe { width: 100%; height: 340px; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* ===================== CONTATO ===================== */
.section--contato { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: #fff; text-align: center; }
.contato__inner h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 900; letter-spacing: -.5px; }
.contato__inner > p { color: var(--blue-100); font-size: 1.12rem; margin: 14px 0 32px; }
.contato__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.section--contato .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.section--contato .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.contato__social { margin-top: 34px; display: flex; gap: 12px; justify-content: center; color: var(--blue-100); font-weight: 600; }
.contato__social a:hover { color: var(--yellow); }

/* ===================== FOOTER ===================== */
.footer { background: var(--blue-900); color: var(--blue-100); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding: 56px 0 40px; }
.footer__brand .logo__mark { color: #fff; font-size: 1.6rem; }
.footer__brand .logo__mark--accent { color: var(--blue-300); }
.footer__brand p { margin-top: 12px; font-size: .94rem; color: var(--blue-300); }
.footer__col { display: flex; flex-direction: column; gap: 8px; }
.footer__col strong { color: #fff; margin-bottom: 6px; }
.footer__col a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; font-size: .85rem; color: var(--blue-300); }
.footer__bottom-inner { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center; justify-content: space-between; }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: var(--blue-300); }
.footer__legal a:hover { color: #fff; }

/* ===================== BANNER DE COOKIES (LGPD) ===================== */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 70;
  max-width: 720px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  animation: cookie-up .4s ease;
}
@keyframes cookie-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.cookie-bar__text { flex: 1; min-width: 240px; font-size: .9rem; color: var(--ink); line-height: 1.5; }
.cookie-bar__text a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-bar__btn { font-weight: 700; font-size: .92rem; padding: 11px 22px; border-radius: 999px; cursor: pointer; border: 2px solid transparent; transition: .15s; }
.cookie-bar__btn--ghost { background: var(--white); color: var(--muted); border-color: var(--line); }
.cookie-bar__btn--ghost:hover { border-color: var(--blue-300); color: var(--ink); }
.cookie-bar__btn--ok { background: var(--wpp); color: #053a1b; }
.cookie-bar__btn--ok:hover { background: var(--wpp-dark); color: #fff; }
@media (max-width: 600px) {
  .cookie-bar { padding: 16px; gap: 12px; }
  .cookie-bar__actions { width: 100%; }
  .cookie-bar__btn { flex: 1; }
}

/* ===================== PÁGINA LEGAL ===================== */
.legal { padding: 60px 0 80px; background: var(--white); }
.legal__wrap { max-width: 820px; margin: 0 auto; }
.legal h1 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: 8px; }
.legal__updated { color: var(--muted); font-size: .92rem; margin-bottom: 32px; }
.legal h2 { font-size: 1.25rem; font-weight: 800; color: var(--blue-700); margin: 34px 0 10px; }
.legal p, .legal li { color: var(--ink); line-height: 1.7; }
.legal ul { margin: 10px 0 10px 22px; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: var(--blue-600); font-weight: 600; }
.legal__note { background: var(--blue-050); border: 1px solid var(--line); border-left: 4px solid var(--blue-500); border-radius: 10px; padding: 16px 20px; margin: 24px 0; font-size: .94rem; color: var(--muted); }
.legal__back { display: inline-block; margin-top: 36px; font-weight: 700; color: var(--blue-600); }

/* ===================== WHATSAPP FLOAT ===================== */
.wpp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wpp);
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
}
.wpp-float svg { width: 32px; height: 32px; fill: #fff; }
.wpp-float:hover { background: var(--wpp-dark); }
@keyframes pulse {
  0% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* ===================== REVEAL ===================== */
.reveal {
  opacity: 0; transform: translateY(34px);
  transition: opacity .7s ease, transform .8s cubic-bezier(.16,.84,.44,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .wpp-float { animation: none; }
}

/* ===================== RESPONSIVE ===================== */

/* Tablet / telas médias */
@media (max-width: 980px) {
  /* Hero empilha: conteúdo (head) primeiro, vídeo depois */
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__content { text-align: center; }
  .hero__badge, .hero__actions, .hero__trust { justify-content: center; }
  .hero__text { margin-left: auto; margin-right: auto; }
  .hero::before { width: 100%; opacity: .12; }

  .trust__inner, .area__inner { grid-template-columns: 1fr; gap: 36px; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cards, .videos { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.6fr 1fr 1fr; }
}

/* Ponto do menu hambúrguer (antes da nav horizontal apertar) */
@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px; transform: translateY(-120%); transition: transform .3s; box-shadow: var(--shadow);
  }
  .nav.is-open { transform: none; }
  .nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__cta { text-align: center; margin-top: 12px; border-bottom: 0; }
  .nav-toggle { display: flex; }
}

/* Celular */
@media (max-width: 600px) {
  .container { padding: 0 18px; }
  .section { padding: 54px 0; }
  .section__head { margin-bottom: 36px; }
  .hero { padding: 44px 0 56px; }
  .hero::before, .hero::after { display: none; }
  .hl { white-space: normal; }

  .cards, .videos, .strip__grid, .footer__inner { grid-template-columns: 1fr; }
  .hero__actions .btn, .contato__actions .btn { width: 100%; justify-content: center; }
  .hero__video { max-width: 280px; }

  /* Resumo do Google empilhado e centralizado */
  .g-summary { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
  .g-summary__top { justify-content: center; }
  .g-summary__btn { width: 100%; text-align: center; }

  /* Cards de avaliação mais compactos */
  .g-card { padding: 22px 20px 24px; min-height: 0; }
  .g-card__text { font-size: .98rem; }
  .review { padding: 4px; }
  .carousel-wrap { padding: 0 40px; }
  .carousel__btn { width: 34px; height: 34px; font-size: 1.2rem; }
  .carousel__btn--prev { left: 0; }
  .carousel__btn--next { right: 0; }

  .footer__brand { text-align: left; }
  .area__map iframe { height: 280px; }
  .trust__list li { padding-left: 30px; }
}
