/* ============================================================
   PRADOTEC PISCINAS — Design System
   Brand: Azul escuro #003B8E · Azul piscina #00B8E6 · Branco
   ============================================================ */

:root {
  /* Brand */
  --navy:        #003B8E;
  --navy-700:    #00489f;
  --navy-900:    #001f4d;
  --navy-950:    #001536;
  --cyan:        #00B8E6;
  --cyan-bright: #21d2ff;
  --cyan-soft:   #b9ecfa;
  --aqua-bg:     #eef8fd;

  /* Neutrals */
  --white:   #ffffff;
  --paper:   #f4f9fc;
  --ink:     #0a2440;
  --ink-soft:#3f5b78;
  --line:    #dbe7f1;

  /* Accent */
  --accent:        var(--cyan);
  --accent-bright: var(--cyan-bright);

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  /* Shape */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 38px;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0,59,142,.07);
  --shadow-md: 0 18px 44px -18px rgba(0,59,142,.30);
  --shadow-lg: 0 40px 80px -30px rgba(0,40,100,.45);

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 104px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip (não hidden): hidden tornaria o body o container de rolagem,
     quebrando window.scrollY, eventos de scroll e os efeitos de reveal */
  overflow-x: clip;
}

html {
  /* impede a faixa branca lateral no mobile: o clip precisa estar no
     elemento raiz para valer no viewport, não só no body */
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html { overflow-x: hidden; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* Section rhythm */
section { position: relative; }
.section-pad { padding: clamp(72px, 9vw, 132px) 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--navy);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--accent);
}
.eyebrow.on-dark { color: var(--cyan-bright); }
.eyebrow.center { justify-content: center; }

.h-sec {
  font-size: clamp(32px, 4.6vw, 56px);
  margin: 18px 0 0;
}
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-soft);
  max-width: 60ch;
}
.head-center { text-align: center; }
.head-center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(0,184,230,.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -10px rgba(0,184,230,.85); }
.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.6);
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -10px rgba(37,211,102,.75); }
.btn-ghost {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); }
.btn-outline {
  background: #fff; color: var(--navy); border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--accent); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 18px 32px; font-size: 17px; }

/* ---------- Logo badge ---------- */
.logo-badge {
  background: transparent; border-radius: 0;
  display: grid; place-items: center;
  box-shadow: none; overflow: visible;
}
.logo-badge img { width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 3px 8px rgba(0,12,36,.35)); }

/* ============================================================
   SPLASH / ABERTURA
   ============================================================ */
.splash {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(33,210,255,.30), transparent 55%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy) 55%, var(--navy-700) 100%);
  overflow: hidden;
  transition: transform .85s cubic-bezier(.75,0,.18,1);
}
.splash.done { transform: translateY(-100%); }
.splash.gone { display: none; }
body.splash-lock { overflow: hidden; }

.splash-inner { position: relative; display: flex; flex-direction: column; align-items: center; }
.splash-logo {
  width: clamp(170px, 28vw, 280px);
  filter: drop-shadow(0 18px 40px rgba(0,12,36,.5));
  animation: splash-pop 1s cubic-bezier(.2,.9,.3,1.35) both;
}
.splash-name {
  margin-top: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 4vw, 38px);
  color: #fff; letter-spacing: -.01em; text-align: center;
  animation: splash-fade .7s ease .55s both;
}
.splash-name span {
  display: block; font-size: .42em; font-weight: 600;
  letter-spacing: .34em; color: var(--cyan-bright); margin-top: 4px;
}
.splash-bar {
  margin-top: 30px; width: 150px; height: 3px; border-radius: 999px;
  background: rgba(255,255,255,.15); overflow: hidden;
  animation: splash-fade .5s ease .7s both;
}
.splash-bar span {
  display: block; height: 100%; width: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-bright));
  transform: translateX(-100%);
  animation: splash-load 1.5s cubic-bezier(.4,0,.2,1) .7s forwards;
}
.splash-ripple {
  position: absolute; top: 38%; left: 50%;
  width: clamp(220px, 36vw, 360px); height: clamp(220px, 36vw, 360px);
  border: 1.5px solid rgba(33,210,255,.35); border-radius: 50%;
  transform: translate(-50%,-50%) scale(.55); opacity: 0;
}
.splash-ripple.r1 { animation: splash-ripple 1.8s ease-out .35s both; }
.splash-ripple.r2 { animation: splash-ripple 1.8s ease-out .75s both; }
.splash-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  height: clamp(60px, 9vw, 120px);
  animation: splash-fade 1s ease .3s both;
}
@keyframes splash-pop {
  0% { opacity: 0; transform: scale(.45) translateY(34px); }
  100% { opacity: 1; transform: none; }
}
@keyframes splash-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes splash-load { to { transform: translateX(0); } }
@keyframes splash-ripple {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(.55); }
  35% { opacity: .8; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.25); }
}
@media (prefers-reduced-motion: reduce) {
  .splash-logo, .splash-name, .splash-bar, .splash-bar span, .splash-ripple, .splash-wave { animation: none; }
  .splash-bar span { transform: none; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .3s ease, box-shadow .3s ease, height .3s;
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: 100%; }
.nav-brand { display: flex; align-items: center; gap: 13px; }
.nav-badge { width: 92px; height: 92px; transition: width .3s, height .3s; }
.nav.scrolled .nav-badge { width: 66px; height: 66px; }
/* logo "quicando": flutua suavemente o tempo todo, como na água */
.nav .nav-badge img { animation: logo-bob 2.6s ease-in-out infinite; }
@keyframes logo-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .nav .nav-badge img { animation: none; }
}
.nav-brand b {
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  letter-spacing: -.01em; color: #fff; line-height: 1;
}
.nav-brand span { display: block; font-size: 11px; letter-spacing: .26em; color: var(--cyan-bright); font-weight: 600; }
.nav.scrolled .nav-brand b { color: var(--navy); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 14.5px;
  letter-spacing: .04em; color: rgba(255,255,255,.88);
  padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav.scrolled .nav-links a { color: var(--ink-soft); }
.nav.scrolled .nav-links a:hover { color: var(--navy); background: var(--aqua-bg); }

.nav.scrolled {
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 6px 24px -10px rgba(0,40,100,.22);
  height: 84px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; margin: 5px 0; transition: .25s; }
.nav.scrolled .nav-burger span { background: var(--navy); }

/* mobile menu sheet */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: linear-gradient(160deg, var(--navy-950), var(--navy));
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
  padding: 0 var(--gutter);
  transform: translateY(-100%); transition: transform .4s cubic-bezier(.7,0,.2,1), visibility .4s;
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-display); font-size: 28px; font-weight: 600; color: #fff;
  padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.12);
}
.mobile-menu .btn { margin-top: 22px; align-self: flex-start; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(33,210,255,.30), transparent 55%),
    linear-gradient(155deg, var(--navy-950) 0%, var(--navy) 55%, var(--navy-700) 100%);
  color: #fff; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px);
  align-items: start; width: 100%;
  position: relative; z-index: 3;
  padding-top: clamp(20px, 4vw, 48px); padding-bottom: clamp(40px, 6vw, 80px);
}

.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px 8px 12px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; color: #eaf7ff; backdrop-filter: blur(6px);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #43e08b; box-shadow: 0 0 0 4px rgba(67,224,139,.25); }
.hero h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  margin: 22px 0 0; max-width: 14ch;
}
.hero h1 .grad {
  background: linear-gradient(100deg, var(--cyan-bright), #8be9ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { margin-top: 22px; font-size: clamp(17px, 1.5vw, 21px); color: #cfe3f5; max-width: 46ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: #fff; }
.hero-trust .t-rate { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust .t-star { width: 22px; height: 22px; color: #ffb703; }
.hero-trust .t span { font-size: 13.5px; color: #a8c6e2; letter-spacing: .02em; }

/* hero media — top of the frame aligns with the "Atendimento em Itu e região" pill.
   Uses margin (not transform) so the reveal animation doesn't override it. */
.hero-media { position: relative; margin-top: 0; }

/* hero carousel */
.carousel { position: absolute; inset: 0; }
.car-track { position: absolute; inset: 0; }
.car-slide {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0; transition: opacity .9s ease;
}
.car-slide.is-active { opacity: 1; }
.car-dots {
  position: absolute; left: 0; right: 0; bottom: 16px; z-index: 4;
  display: flex; justify-content: center; gap: 8px; pointer-events: auto;
}
.car-dots button {
  width: 9px; height: 9px; border-radius: 999px; border: 0; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.5); transition: width .3s, background .3s;
}
.car-dots button.is-active { width: 26px; background: #fff; }
.hero-media .frame {
  position: relative; border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.18);
  aspect-ratio: 4/5;
}
.hero-float {
  position: absolute; left: -34px; bottom: 38px;
  background: rgba(255,255,255,.96); color: var(--ink);
  border-radius: var(--r-md); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px;
  backdrop-filter: blur(8px);
}
.hero-float .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--aqua-bg); display: grid; place-items: center; color: var(--navy); }
.hero-float .ic svg { width: 24px; height: 24px; }
.hero-float b { font-family: var(--font-display); font-size: 15px; display: block; }
.hero-float span { font-size: 12.5px; color: var(--ink-soft); }

/* água 3D em tela cheia — fundo do hero (WebGL em site.js) */
.hero-water { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-water canvas { width: 100%; height: 100%; display: block; }
/* sobretom para legibilidade do texto: mais escuro à esquerda, água visível à direita */
.hero-water::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,21,54,.55) 0%, rgba(0,21,54,0) 26%),
    linear-gradient(90deg, rgba(0,21,54,.78) 0%, rgba(0,21,54,.42) 48%, rgba(0,21,54,.10) 100%);
}

/* decorative caustics */
.hero-caustic { position: absolute; inset: 0; z-index: 1; opacity: .5; mix-blend-mode: screen; pointer-events: none;
  background:
    radial-gradient(60% 40% at 20% 80%, rgba(33,210,255,.4), transparent 60%),
    radial-gradient(50% 35% at 75% 30%, rgba(0,184,230,.35), transparent 60%);
}

/* ============================================================
   WAVE DIVIDER
   ============================================================ */
.wave { display: block; width: 100%; height: clamp(50px, 7vw, 110px); }

/* ============================================================
   QUEM SOMOS
   ============================================================ */
.about {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: #fff; overflow: hidden;
}
/* vídeo de fundo — entra com transição quando a seção aparece na rolagem */
.about-video {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.3s ease, transform 2s ease;
}
.about.video-in .about-video { opacity: 1; transform: none; }
.about-video video { width: 100%; height: 100%; object-fit: cover; }
/* sobretom: mais escuro à direita, onde fica o texto */
.about-video::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,21,54,.72) 0%, rgba(0,21,54,.30) 30%, rgba(0,21,54,.55) 100%),
    linear-gradient(90deg, rgba(0,21,54,.30) 0%, rgba(0,21,54,.74) 100%);
}
.about .h-sec { color: #fff; }
.about .lead { color: #cfe3f5; }
.about-points li { color: #eaf4fd; }
.about-points .ck { background: rgba(33,210,255,.18); color: var(--cyan-bright); }
.about-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(36px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.about-media { position: relative; }
.about-media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 5/6; }
.about-media .frame img,
.about-media .frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-badge {
  position: absolute; right: -22px; bottom: -22px;
  background: var(--navy); color: #fff; border-radius: var(--r-md);
  padding: 22px 26px; box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid rgba(33,210,255,.35);
}
.about-badge b { font-family: var(--font-display); font-size: 40px; display: block; line-height: 1; }
.about-badge span { font-size: 13px; color: var(--cyan-bright); letter-spacing: .04em; }
.about p + p { margin-top: 18px; }
.about-points { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.about-points li { display: flex; gap: 13px; align-items: flex-start; font-weight: 500; }
.about-points .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--aqua-bg); color: var(--navy); display: grid; place-items: center; margin-top: 1px; }
.about-points .ck svg { width: 15px; height: 15px; }

/* ============================================================
   SERVIÇOS
   ============================================================ */
.services { background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 30px 30px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .25s ease, border-color .25s;
  position: relative; overflow: hidden;
}
.svc-card::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--accent-bright), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-ic {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(150deg, var(--navy), var(--navy-700));
  display: grid; place-items: center; color: var(--cyan-bright);
  margin-bottom: 22px; box-shadow: 0 12px 24px -10px rgba(0,59,142,.6);
}
.svc-ic svg { width: 32px; height: 32px; }
.svc-card h3 { font-size: 21px; }
.svc-card p { margin-top: 10px; color: var(--ink-soft); font-size: 15.5px; }

/* dark CTA card closing the services grid */
.svc-card-cta {
  background: linear-gradient(160deg, var(--navy-950), var(--navy));
  color: #fff; border-color: transparent;
}
.svc-card-cta .svc-ic { background: rgba(255,255,255,.12); }
.svc-card-cta h3 { color: #fff; }
.svc-card-cta p { color: #bcd9f1; }

/* ============================================================
   ANTES & DEPOIS
   ============================================================ */
.gallery { background: linear-gradient(180deg, var(--navy-950), var(--navy)); color: #fff; }
.gallery .lead { color: #bdd6ee; }
.ba-featured { margin-top: 54px; }
.ba {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none;
  border: 1px solid rgba(255,255,255,.14);
}
.ba-featured .ba { aspect-ratio: 16/8.4; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; max-width: none; }
.ba .before-wrap { position: absolute; inset: 0; overflow: hidden; width: 50%; }
.ba .before-wrap img { right: auto; left: 0; } /* width set in JS to full board width so image is clipped, not squished */
.ba-tag {
  position: absolute; top: 16px; z-index: 4;
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; letter-spacing: .08em;
  text-transform: uppercase; padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(6px);
}
.ba-tag.before { left: 16px; background: rgba(10,36,64,.7); color: #cfe3f5; }
.ba-tag.after { right: 16px; background: rgba(0,184,230,.85); color: #04263a; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; width: 3px; background: #fff; z-index: 5;
  transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(0,0,0,.05);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 50%; background: #fff; cursor: ew-resize;
  display: grid; place-items: center; color: var(--navy); box-shadow: 0 8px 22px rgba(0,0,0,.3);
}
.ba-knob svg { width: 26px; height: 26px; }
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.ba-grid .ba { aspect-ratio: 16/10; }
.ba-grid .ba-knob { width: 44px; height: 44px; }

/* ============================================================
   PLANOS
   ============================================================ */
.plans { background: var(--white); }
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 54px; max-width: 920px; margin-left: auto; margin-right: auto; }
.plan {
  border: 1.5px solid var(--line); border-radius: var(--r-lg); padding: 38px 36px;
  background: #fff; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  position: relative;
}
.plan.featured {
  border-color: transparent;
  background: linear-gradient(165deg, var(--navy-950), var(--navy));
  color: #fff; box-shadow: var(--shadow-lg);
}
.plan.featured h3, .plan.featured .price { color: #fff; }
.plan-badge {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: #04263a; background: var(--cyan-bright);
  padding: 6px 12px; border-radius: 999px;
}
.plan h3 { font-size: 25px; }
.plan .ptag { font-size: 14px; color: var(--ink-soft); margin-top: 6px; }
.plan.featured .ptag { color: var(--cyan-bright); }
.plan .price { font-family: var(--font-display); font-size: 40px; font-weight: 700; margin-top: 22px; line-height: 1; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--ink-soft); }
.plan.featured .price small { color: #bcd9f1; }
.plan ul { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 14px; }
.plan li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; }
.plan li .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--aqua-bg); color: var(--navy); display: grid; place-items: center; margin-top: 2px; }
.plan.featured li .ck { background: rgba(33,210,255,.2); color: var(--cyan-bright); }
.plan li .ck svg { width: 13px; height: 13px; }
.plan .btn { margin-top: auto; justify-content: center; }
.plans-note { text-align: center; color: var(--ink-soft); font-size: 14.5px; margin-top: 26px; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.reviews { background: var(--aqua-bg); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.rev-card { background: #fff; border-radius: var(--r-lg); padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.stars { display: flex; gap: 3px; color: #ffb703; }
.stars svg { width: 19px; height: 19px; }
.rev-card p { margin-top: 18px; font-size: 17px; color: var(--ink); font-weight: 500; flex: 1; }
.rev-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.rev-who .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--navy), var(--cyan)); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; }
.rev-who b { font-family: var(--font-display); font-size: 15px; display: block; }
.rev-who span { font-size: 13px; color: var(--ink-soft); }

/* ============================================================
   ÁREA DE ATENDIMENTO
   ============================================================ */
.area { background: var(--white); }
.area-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(34px, 5vw, 70px); align-items: center; }
.cities { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-wrap: wrap; gap: 12px; }
.cities li {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--aqua-bg); border: 1px solid var(--line); color: var(--navy);
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 11px 18px; border-radius: 999px;
}
.cities li svg { width: 16px; height: 16px; color: var(--accent); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(120deg, var(--navy-950), var(--navy) 60%, var(--cyan)); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(28px, 3.4vw, 44px); max-width: 18ch; }
.cta-inner .lead { color: #d3e7f7; margin-top: 14px; }

/* ============================================================
   RODAPÉ
   ============================================================ */
.footer { background: var(--navy-950); color: #c4d8ec; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: clamp(60px,7vw,90px) 0 56px; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.footer-brand .nav-badge { width: 112px; height: 112px; }
.footer-brand b { font-family: var(--font-display); font-size: 21px; color: #fff; }
.footer-brand span { font-size: 11px; letter-spacing: .26em; color: var(--cyan-bright); }
.footer-col p { font-size: 14.5px; color: #9fbdda; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col li a { font-size: 14.5px; color: #b6d0e9; transition: color .2s; display: inline-flex; align-items: center; gap: 9px; }
.footer-col li a:hover { color: var(--cyan-bright); }
.footer-col li svg { width: 16px; height: 16px; color: var(--cyan); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: #8fb0cf; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 70;
  width: 62px; height: 62px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.7);
  animation: wa-pulse 2.6s infinite;
}
.wa-float svg { width: 33px; height: 33px; }
.wa-float:hover { transform: scale(1.07); }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px -6px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px -6px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -6px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
  .reveal.from-left { transform: translateX(-52px); }
  .reveal.from-right { transform: translateX(52px); }
  .reveal.zoom { transform: scale(.9) translateY(22px); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal.d1 { transition-delay: .1s; }
  .reveal.d2 { transition-delay: .2s; }
  .reveal.d3 { transition-delay: .3s; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .svc-grid, .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
/* Nav collapses to burger before the horizontal menu can overflow */
@media (max-width: 1130px) {
  .nav-links, .nav-cta .btn-text { display: none; }
  .nav-burger { display: block; }
}
@media (max-width: 880px) {
  .hero-grid, .about-grid, .area-grid, .plans-grid { grid-template-columns: 1fr; }
  /* carrossel visível no mobile, abaixo do texto */
  .hero-media { display: block; width: 100%; max-width: 480px; margin: 30px auto 0; }
  .hero-media .frame { aspect-ratio: 4/3; }
  .hero-float { left: 14px; bottom: 14px; }
  .hero { min-height: auto; }
  .hero-copy { text-align: left; }
  .about-media { max-width: 460px; }
  .area-grid .map-frame { order: -1; }
  .ba-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .svc-grid, .rev-grid, .plans-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 20px; }
  :root { --gutter: 20px; }
}
