/* =====================================================
   CVO — Consultório de Visão e Óculos
   style.css — Tema Azul/Branco Tecnológico
   ===================================================== */

/* ── RESET & VARIABLES ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #0f2d5a;
  --blue-600: #1a3f7a;
  --blue-500: #1d4ed8;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;
  --blue-200: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --accent:   #38bdf8;
  --accent2:  #06b6d4;
  --glow:     rgba(59,130,246,.35);
  --glow2:    rgba(56,189,248,.2);
  --font-display: 'Syne', sans-serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --radius:   12px;
  --radius-lg: 20px;
  --transition: .3s cubic-bezier(.25,.46,.45,.94);
  --shadow-blue: 0 0 40px rgba(59,130,246,.2);
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--gray-800);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading { overflow: hidden; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── SCROLLBAR ──────────────────────────────────────── */

/* ── LOADER ──────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0;
  background: var(--blue-900);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loader-logo {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 800;
  color: var(--white);
  letter-spacing: .1em;
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 32px;
  animation: logoPulse 1.5s ease-in-out infinite;
}
@keyframes logoPulse {
  0%,100% { opacity: 1; } 50% { opacity: .6; }
}
.loader-bar {
  width: 240px; height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  margin: 0 auto 16px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  border-radius: 2px;
  width: 0;
  transition: width .1s linear;
}
.loader-txt {
  font-family: var(--font-mono);
  font-size: .75rem;
  color: var(--blue-300);
  letter-spacing: .1em;
}

/* ── LAYOUT ─────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { position: relative; padding: 100px 0; overflow: hidden; }
.section-dark { background: var(--blue-900); color: var(--white); }
.section-soft { background: var(--blue-50); }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-500);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1.5px;
  background: var(--blue-400);
}
.eyebrow-light {
  font-family: var(--font-mono);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue-300);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.eyebrow-light::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--blue-400);
  display: inline-block;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-900);
  margin-bottom: 20px;
}
.sec-title em { font-style: normal; color: var(--blue-500); }
.sec-title.light { color: var(--white); }
.sec-title.light em { color: var(--blue-300); }

.sec-hdr.center { text-align: center; margin-bottom: 60px; }
.sec-hdr.center .eyebrow,
.sec-hdr.center .eyebrow-light { justify-content: center; }
.sec-hdr.center .eyebrow::before,
.sec-hdr.center .eyebrow-light::before { display: none; }

.sec-sub { color: var(--gray-600); font-size: 1.05rem; }
.sec-sub.light { color: var(--blue-200); }
.body-txt { color: var(--gray-600); font-size: .97rem; margin-bottom: 16px; line-height: 1.75; }
.body-txt.light { color: var(--blue-200); }

/* ── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background .3s, padding .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(10,22,40,.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-cvo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: .06em;
  line-height: 1;
}
.nav-brand-sub {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-300); font-family: var(--font-mono);
}
.nav-links {
  display: flex; gap: 6px; margin-left: auto; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .88rem; font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-500);
  color: var(--white) !important;
  font-size: .85rem; font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  transition: background .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--blue-400);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(59,130,246,.4);
}
.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mob {
  display: flex;
  flex-direction: column;
  background: rgba(10,22,40,.98);
  backdrop-filter: blur(20px);
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94), padding .3s;
}
.nav-mob.open {
  max-height: 500px;
  padding: 12px 24px 24px;
}
.mob-link {
  color: rgba(255,255,255,.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .95rem;
  transition: color .2s;
}
.mob-link:hover { color: var(--blue-300); }
.mob-cta {
  margin-top: 16px;
  background: var(--blue-500);
  color: var(--white) !important;
  padding: 14px 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  border: none;
}

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--blue-900);
  color: var(--white);
  padding: 120px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-bg {
  position: absolute; inset: 0;
  pointer-events: none;
}

/* Grid pattern */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.07) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Glowing orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(29,78,216,.35) 0%, transparent 70%);
  top: -200px; right: -100px;
  animation-delay: 0s;
}
.orb2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(56,189,248,.2) 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation-delay: -3s;
}
.orb3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(96,165,250,.15) 0%, transparent 70%);
  top: 50%; left: 40%;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-30px) scale(1.05); }
  66% { transform: translate(-15px,20px) scale(.97); }
}

.hero-particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .5;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative; z-index: 1;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .line { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--blue-200);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-500);
  color: var(--white);
  font-size: .92rem; font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background .2s, transform .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .2s;
}
.btn-primary:hover { background: var(--blue-400); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(59,130,246,.5); }
.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: var(--white);
  font-size: .92rem; font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background .2s, border-color .2s, transform .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25); transform: translateY(-2px); }

/* Hero stats */
.hero-stats {
  display: flex; gap: 0; align-items: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 20px 28px;
  max-width: fit-content;
}
.hstat { text-align: center; padding: 0 28px; }
.hstat:first-child { padding-left: 0; }
.hstat:last-child { padding-right: 0; }
.hnum {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--white), var(--blue-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  min-width: 110px;
  text-align: center;
}
.hlbl { font-size: .72rem; color: var(--blue-300); letter-spacing: .06em; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.1); }

/* Hero visual — photo frame */
.hero-visual { display: flex; justify-content: center; align-items: center; }

.hero-photo-frame {
  position: relative;
  width: 100%; max-width: 460px;
}
.hero-photo-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,.25);
  box-shadow: 0 0 60px rgba(59,130,246,.15), inset 0 1px 0 rgba(255,255,255,.06);
  background: rgba(255,255,255,.04);
  animation: cardFloat 5s ease-in-out infinite;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-placeholder {
  display: none;
  width: 100%; height: 100%;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: .72rem;
  text-align: center;
  letter-spacing: .05em;
}
.hero-photo-badge {
  position: absolute; bottom: -16px; left: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(10,22,40,.9);
  border: 1px solid rgba(59,130,246,.25);
  backdrop-filter: blur(12px);
  color: var(--blue-300);
  font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .08em;
  padding: 10px 18px;
  border-radius: 100px;
}
.hero-photo-stat {
  position: absolute; top: 20px; right: -20px;
  background: var(--blue-500);
  color: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(29,78,216,.5);
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-photo-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 800;
  line-height: 1;
}
.hero-photo-stat span { font-size: .7rem; opacity: .85; }

@keyframes cardFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── SOBRE — FOTOS ───────────────────────────────────── */
.sobre-foto-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  padding-bottom: 24px;
}
.sobre-foto-main {
  grid-column: 1 / 3;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
}
.sobre-foto-secondary {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--blue-100);
  background: var(--blue-50);
}
.sobre-foto {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.foto-placeholder {
  display: flex;
  width: 100%; height: 100%;
  min-height: 120px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
  color: var(--blue-400);
  font-family: var(--font-mono);
  font-size: .7rem;
  text-align: center;
  padding: 12px;
}
.foto-placeholder.dark {
  color: var(--blue-300);
  background: rgba(255,255,255,.03);
}
.foto-placeholder.small { font-size: .62rem; gap: 5px; }
/* duplicatas removidas */
.sobre-foto-float-badge {
  grid-column: 2 / 3;
  display: flex; align-items: center; gap: 8px;
  background: var(--blue-500);
  color: var(--white);
  font-size: .78rem; font-weight: 600;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(29,78,216,.35);
  align-self: end;
}

/* ── AGENDAMENTO — WHATSAPP ──────────────────────────── */
.agend-wpp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 20px;
}

/* ── CARD BASE ─── */
.agend-wpp-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .3s, transform .3s;
}
.agend-wpp-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}

/* ── FOTO ─── */
.agend-wpp-foto {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.agend-wpp-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder visível quando imagem falha — controlado via JS */
.agend-wpp-foto .foto-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--blue-400);
  font-family: var(--font-mono);
  font-size: .72rem;
  text-align: center;
  padding: 16px;
  background: var(--blue-50);
}

/* ── BODY ─── */
.agend-wpp-body {
  padding: 32px 28px 28px;
}
.agend-wpp-unid-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue-500);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 14px;
}
.agend-wpp-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.agend-wpp-sub {
  font-size: .85rem;
  color: var(--gray-600);
  margin-bottom: 22px;
  line-height: 1.6;
}
.agend-wpp-note {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .78rem; color: var(--blue-400);
  text-align: center; justify-content: center;
  margin-top: 36px;
  line-height: 1.6;
}
.agend-wpp-note svg { flex-shrink: 0; margin-top: 2px; }
.agend-wpp-num-tel {
  margin-left: auto;
  font-size: .78rem;
  opacity: .85;
  font-family: var(--font-mono);
  white-space: nowrap;
}

/* ── MINI FORM ─── */
.agend-mini-form { display: flex; flex-direction: column; gap: 14px; }
.amf-group { display: flex; flex-direction: column; gap: 5px; }
.amf-group label {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-600);
}
.amf-group input,
.amf-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.amf-group input::placeholder,
.amf-group textarea::placeholder { color: var(--gray-400); }
.amf-group input:focus,
.amf-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
}
.amf-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #16a34a, #25D366);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 700;
  letter-spacing: .06em;
  padding: 15px 20px;
  border-radius: 10px; border: none; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: 6px;
  position: relative; overflow: hidden;
}
.amf-btn:hover {
  background: linear-gradient(135deg, #15803d, #22c55e);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}
.amf-btn:active { transform: translateY(0); }
.amf-note {
  font-size: .72rem;
  color: var(--gray-400);
  text-align: center;
  line-height: 1.5;
}

.eye-wrap {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
}
.eye-outer, .eye-mid, .eye-inner {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.eye-outer {
  width: 180px; height: 180px;
  border: 1px solid rgba(59,130,246,.2);
  animation: eyeSpin 20s linear infinite;
}
.eye-mid {
  width: 130px; height: 130px;
  border: 1px solid rgba(59,130,246,.3);
  animation: eyeSpin 15s linear infinite reverse;
}
.eye-inner {
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(29,78,216,.3), rgba(10,22,40,.8));
  border: 1px solid rgba(96,165,250,.4);
  box-shadow: 0 0 30px rgba(59,130,246,.3);
}
@keyframes eyeSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.pupil {
  width: 40px; height: 40px;
  background: radial-gradient(circle at 40% 40%, #1a3f7a, #030712);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 10px rgba(0,0,0,.5);
}
.pupil-core {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #1d4ed8 0%, transparent 60%);
  animation: pupilPulse 3s ease-in-out infinite;
}
.pupil-shine {
  position: absolute;
  top: 6px; left: 8px;
  width: 10px; height: 10px;
  background: rgba(255,255,255,.7);
  border-radius: 50%;
  filter: blur(2px);
}
@keyframes pupilPulse { 0%,100%{opacity:.7} 50%{opacity:1} }

.eye-scan-line {
  position: absolute;
  width: 100%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  top: 50%; left: 0;
  animation: scanLine 3s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes scanLine {
  0%   { top: 10%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

.eye-ring {
  position: absolute;
  border: 1px solid var(--blue-400);
  border-radius: 50%;
  animation: ringExpand 3s ease-out infinite;
  opacity: 0;
}
.ring1 { width: 80px; height: 80px; animation-delay: 0s; }
.ring2 { width: 80px; height: 80px; animation-delay: 1s; }
.ring3 { width: 80px; height: 80px; animation-delay: 2s; }
@keyframes ringExpand {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(2.8); opacity: 0; }
}

.eye-data {
  display: flex; justify-content: space-around;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 16px;
}
.data-item { text-align: center; }
.data-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .6rem; color: var(--blue-300);
  letter-spacing: .12em; margin-bottom: 4px;
}
.data-val {
  font-family: var(--font-mono);
  font-size: 1rem; font-weight: 500;
  color: var(--white);
}

.eye-status {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: var(--blue-300);
  font-family: var(--font-mono);
  justify-content: center;
}
.status-dot {
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease infinite;
  box-shadow: 0 0 6px #22c55e;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: var(--blue-300);
  font-family: var(--font-mono); font-size: .65rem; letter-spacing: .12em;
  animation: scrollFade 2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--blue-400), transparent);
  animation: scrollGrow 2s ease-in-out infinite;
}
@keyframes scrollFade { 0%,100%{opacity:.4} 50%{opacity:1} }
@keyframes scrollGrow { 0%{height:0;opacity:0} 50%{height:48px;opacity:1} 100%{height:48px;opacity:0} }

/* ── SOBRE ───────────────────────────────────────────── */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.pill {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  color: var(--blue-600);
  font-size: .75rem; font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: .04em;
}
.sobre-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,130,246,.12);
  border-color: var(--blue-200);
}
.mini-card.featured {
  background: var(--blue-900);
  border-color: var(--blue-700);
  color: var(--white);
}
.mini-card.featured h4 { color: var(--white); }
.mini-card.featured p { color: var(--blue-200); }
.mini-card.featured .mc-ico { color: var(--blue-300); }
.mc-ico {
  width: 44px; height: 44px;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.mini-card h4 { font-size: .95rem; font-weight: 600; margin-bottom: 8px; color: var(--blue-900); }
.mini-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.6; }

/* ── SERVIÇOS ────────────────────────────────────────── */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sv-card-new {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: background .3s, border-color .3s, transform .3s;
  overflow: hidden;
}
.sv-card-new::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  opacity: 0; transition: opacity .3s;
}
.sv-card-new:hover {
  background: rgba(59,130,246,.08);
  border-color: rgba(59,130,246,.3);
  transform: translateY(-4px);
}
.sv-card-new:hover::before { opacity: 1; }
.sv-num {
  font-family: var(--font-mono);
  font-size: .65rem; color: var(--blue-400);
  letter-spacing: .15em;
  margin-bottom: 20px;
}
.sv-ico-new {
  width: 52px; height: 52px;
  color: var(--blue-300);
  margin-bottom: 20px;
}
.sv-card-new h3 {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.sv-card-new p { font-size: .85rem; color: var(--blue-200); line-height: 1.7; margin-bottom: 20px; }
.sv-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .65rem; letter-spacing: .1em;
  color: var(--blue-300);
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.2);
  padding: 4px 10px; border-radius: 6px;
}

/* ── TECNOLOGIA ──────────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tech-list { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.tech-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  transition: border-color .2s, box-shadow .2s;
}
.tech-item:hover { border-color: var(--blue-300); box-shadow: 0 4px 16px rgba(59,130,246,.08); }
.tech-check {
  width: 26px; height: 26px;
  background: var(--blue-500);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.tech-item strong { display: block; font-size: .92rem; font-weight: 600; color: var(--blue-900); margin-bottom: 3px; }
.tech-item span { font-size: .8rem; color: var(--gray-600); }

/* Tech display / screen */
.tech-display { position: relative; }
.tech-screen {
  background: var(--blue-900);
  border: 1px solid rgba(59,130,246,.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(59,130,246,.15), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.ts-header {
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(59,130,246,.15);
  padding: 14px 20px;
  display: flex; align-items: center; gap: 12px;
}
.ts-dots { display: flex; gap: 6px; }
.ts-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.15);
}
.ts-dots span:nth-child(1) { background: #ef4444; }
.ts-dots span:nth-child(2) { background: #f59e0b; }
.ts-dots span:nth-child(3) { background: #22c55e; }
.ts-title { font-family: var(--font-mono); font-size: .7rem; color: var(--blue-300); letter-spacing: .08em; }
.ts-body { padding: 28px; }
.ts-eye-chart {
  text-align: center;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.8);
  margin-bottom: 28px;
  line-height: 1.6;
  letter-spacing: .25em;
}
.chart-row { letter-spacing: .3em; }
.ts-metrics { display: flex; flex-direction: column; gap: 12px; }
.metric-row {
  display: grid; grid-template-columns: 100px 1fr 60px;
  align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: .72rem; color: var(--blue-300);
}
.metric-bar {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  overflow: hidden;
}
.mb-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
  border-radius: 4px;
  animation: fillGrow 2s ease-out forwards;
}
@keyframes fillGrow { from{width:0} }
.ts-scan-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(59,130,246,.03) 50%, transparent 60%);
  animation: scanOverlay 4s linear infinite;
  pointer-events: none;
}
@keyframes scanOverlay {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}
.tech-glow {
  position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--blue-500);
  filter: blur(40px);
  opacity: .3;
  pointer-events: none;
}

/* ── AGENDAMENTO ─────────────────────────────────────── */
.agend-outer {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.agend-unidades {
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 32px;
}
.au-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(59,130,246,.15);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.au-card:hover { border-color: rgba(59,130,246,.35); background: rgba(59,130,246,.06); }
.au-ico { color: var(--blue-300); flex-shrink: 0; margin-top: 2px; }
.au-card strong { display: block; font-size: .9rem; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.au-card span { display: block; font-size: .78rem; color: var(--blue-300); line-height: 1.7; }

/* Form card */
.agend-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 0 0 1px rgba(59,130,246,.1);
  position: relative;
  overflow: hidden;
}
.agend-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
}

.afc-header {
  display: flex; gap: 16px; align-items: center;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}
.afc-icon {
  width: 48px; height: 48px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-500); flex-shrink: 0;
}
.afc-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--blue-900); margin-bottom: 3px; }
.afc-header p { font-size: .8rem; color: var(--gray-400); }

.agend-fields { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.af-group { display: flex; flex-direction: column; gap: 7px; }
.af-group.af-group-full { grid-column: 1 / -1; }
.af-group label {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--gray-600);
}
.optional { font-weight: 400; text-transform: none; letter-spacing: 0; }
.af-input-wrap {
  display: flex; align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 0 14px;
  gap: 10px;
  transition: border-color .2s, box-shadow .2s, background .2s;
  color: var(--gray-400);
}
.af-input-wrap:focus-within {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59,130,246,.1);
  background: var(--white);
  color: var(--blue-500);
}
.af-input-wrap input,
.af-input-wrap select,
.af-input-wrap textarea {
  flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-body);
  font-size: .9rem; color: var(--gray-800);
  padding: 13px 0;
}
.af-input-wrap input::placeholder,
.af-input-wrap textarea::placeholder { color: var(--gray-400); }
.af-select-wrap { position: relative; }
.af-select-wrap select { appearance: none; cursor: pointer; }
.sel-arrow { position: absolute; right: 14px; color: var(--gray-400); pointer-events: none; }
.af-textarea-wrap { align-items: flex-start; padding-top: 4px; }
.af-textarea-wrap svg { margin-top: 12px; }
.af-textarea-wrap textarea { resize: vertical; min-height: 80px; line-height: 1.6; }

.agend-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  font-family: var(--font-display);
  font-size: .92rem; font-weight: 700;
  letter-spacing: .04em;
  padding: 16px 28px;
  border-radius: 12px; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  margin-bottom: 14px;
}
.agend-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,.45);
}
.agend-submit:active { transform: translateY(0); }
.btn-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  animation: shine 3s ease infinite;
}
@keyframes shine { 0%{left:-100%} 30%,100%{left:150%} }

.agend-note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: .72rem; color: var(--gray-400);
  line-height: 1.6;
}
.agend-note svg { flex-shrink: 0; margin-top: 1px; }

/* ── UNIDADES ────────────────────────────────────────── */
.units-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.unit-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  overflow: hidden;
}
.unit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--accent));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.unit-card:hover { border-color: var(--blue-200); box-shadow: 0 12px 40px rgba(59,130,246,.1); transform: translateY(-4px); }
.unit-card:hover::before { transform: scaleX(1); }
.unit-badge {
  position: absolute; top: 28px; right: 28px;
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 800;
  color: var(--blue-50); line-height: 1;
  pointer-events: none;
  user-select: none;
}
.unit-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 28px;
}
.unit-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--blue-900);
}
.unit-status {
  display: flex; align-items: center; gap: 6px;
  font-size: .72rem; color: #22c55e;
  font-family: var(--font-mono);
  background: rgba(34,197,94,.08);
  border: 1px solid rgba(34,197,94,.2);
  padding: 4px 10px; border-radius: 100px;
  white-space: nowrap;
}
.status-pulse {
  width: 6px; height: 6px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink 2s ease infinite;
  box-shadow: 0 0 4px #22c55e;
}

.unit-info { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.ui-row {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .88rem; color: var(--gray-600);
  line-height: 1.6;
}
.ui-row svg { color: var(--blue-400); flex-shrink: 0; margin-top: 3px; }

.unit-actions { display: flex; gap: 12px; }
.unit-btn-wpp {
  display: flex; align-items: center; gap: 8px;
  background: #25D366;
  color: var(--white);
  font-size: .85rem; font-weight: 600;
  padding: 12px 20px; border-radius: 10px;
  transition: background .2s, transform .2s;
  flex: 1; justify-content: center;
}
.unit-btn-wpp:hover { background: #22c55e; transform: translateY(-1px); }
.unit-btn-map {
  display: flex; align-items: center; gap: 6px;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: .85rem; font-weight: 500;
  padding: 12px 20px; border-radius: 10px;
  transition: background .2s, transform .2s;
  flex: 1; justify-content: center;
  border: 1px solid var(--gray-200);
}
.unit-btn-map:hover { background: var(--gray-200); transform: translateY(-1px); }

/* ── DEPOIMENTOS ─────────────────────────────────────── */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dep-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow .3s, transform .3s;
}
.dep-card:hover { box-shadow: 0 8px 32px rgba(59,130,246,.1); transform: translateY(-3px); }
.dep-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.dep-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.dep-autor { display: flex; align-items: center; gap: 12px; }
.dep-av {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue-500), var(--accent));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .95rem;
  flex-shrink: 0;
}
.dep-autor strong { display: block; font-size: .88rem; font-weight: 600; color: var(--blue-900); }
.dep-autor span { font-size: .75rem; color: var(--gray-400); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--blue-900); }
.footer-top { padding: 70px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.fb-logo {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 800;
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.footer-brand p { font-size: .85rem; color: var(--blue-300); line-height: 1.7; margin-bottom: 22px; }
.fb-social { display: flex; gap: 10px; }
.fb-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-300);
  transition: background .2s, color .2s, transform .2s;
}
.fb-social a:hover { background: var(--blue-500); color: var(--white); transform: translateY(-2px); }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: .82rem; color: var(--blue-300); }
.footer-col li strong { color: var(--blue-200); }
.footer-col a { color: var(--blue-300); transition: color .2s; }
.footer-col a:hover { color: var(--white); }

.footer-bot { padding: 24px 0; }
.footer-bot-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bot p { font-size: .78rem; color: var(--blue-400); }
.footer-bot a { color: var(--blue-300); transition: color .2s; }
.footer-bot a:hover { color: var(--white); }

/* ── FAB ─────────────────────────────────────────────── */
.fab-cvo {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 900;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.fab-opts-cvo {
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
  pointer-events: none; opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s, transform .25s;
}
.fab-opts-cvo.open { pointer-events: all; opacity: 1; transform: translateY(0); }
.foc-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-800);
  font-size: .85rem; font-weight: 500;
  padding: 10px 18px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
  transition: background .2s, box-shadow .2s, transform .2s;
}
.foc-item svg { color: #25D366; }
.foc-item:hover { background: var(--blue-50); transform: scale(1.03); box-shadow: 0 6px 24px rgba(0,0,0,.15); }
.fab-btn-cvo {
  width: 58px; height: 58px;
  background: #25D366;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s, background .2s;
  position: relative;
}
.fab-btn-cvo:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.fbc-wpp, .fbc-close {
  position: absolute;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .25s, transform .25s;
}
.fbc-close { opacity: 0; transform: rotate(-90deg); }
.fab-btn-cvo.open { background: var(--gray-800); }
.fab-btn-cvo.open .fbc-wpp { opacity: 0; transform: rotate(90deg); }
.fab-btn-cvo.open .fbc-close { opacity: 1; transform: rotate(0); }

/* ── ANIMATIONS / REVEAL ─────────────────────────────── */
[data-reveal], [data-reveal-right], [data-stagger] > *, [data-stagger-item] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal-right] { transform: translateX(28px); }
[data-stagger] > * { transform: translateY(20px); }

[data-reveal].visible,
[data-reveal-right].visible,
[data-stagger] > *.visible,
[data-stagger-item].visible {
  opacity: 1; transform: none;
}


/* ── HERO SLOGAN ─────────────────────────────────────── */
.hero-slogan {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 18px;
  opacity: .85;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-900);
  transition: color .2s;
}
.faq-q:hover { color: var(--blue-500); }
.faq-q span { flex: 1; }
.faq-arr {
  flex-shrink: 0;
  color: var(--blue-400);
  transition: transform .35s cubic-bezier(.25,.46,.45,.94);
}
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.25,.46,.45,.94), padding .3s;
  padding: 0;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-a p {
  font-size: .93rem;
  color: var(--gray-600);
  line-height: 1.8;
  padding-right: 32px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  /* Mostra a foto no mobile — reordenar para foto aparecer acima do texto */
  .hero-visual {
    display: flex;
    order: -1; /* foto vem antes do texto */
    justify-content: center;
  }
  .hero-photo-frame {
    max-width: 340px;
    width: 100%;
  }
  /* Ajusta o badge flutuante que ficava para fora */
  .hero-photo-stat {
    right: -10px;
    top: 14px;
  }
  .hero-badge, .hero-desc, .hero-stats { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { max-width: 100%; }
  .sobre-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .hero-photo-frame { max-width: 280px; }
  .hero-photo-badge { font-size: .62rem; padding: 8px 14px; bottom: -12px; left: 16px; }
  .hero-photo-stat { right: -6px; top: 12px; padding: 10px 14px; }
  .hero-photo-stat strong { font-size: 1.1rem; }
  .hero-photo-stat span { font-size: .62rem; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 12px; padding: 16px; justify-content: center; }
  .hstat { padding: 0 12px; }
  .hstat-div { width: 1px; height: 32px; }
  .sv-grid { grid-template-columns: 1fr; }
  .sobre-cards { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .units-grid { grid-template-columns: 1fr; }
  .agend-outer { grid-template-columns: 1fr; }
  .agend-wpp-grid { grid-template-columns: 1fr; }
  .agend-wpp-body { padding: 24px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bot-inner { flex-direction: column; text-align: center; }
  .unit-badge { font-size: 2.5rem; }
  .sobre-foto-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    position: relative;
  }
  .sobre-foto-main { grid-column: 1; }
  .sobre-foto-secondary {
    display: block;
    grid-column: 1;
    position: absolute;
    bottom: 68px; /* acima do badge (badge ~48px + margem) */
    right: 10px;
    width: 120px;
    aspect-ratio: 1;
    border-radius: 12px;
    border: 2px solid var(--white);
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
    z-index: 2;
  }
  .sobre-foto-float-badge {
    grid-column: 1;
    justify-content: center;
  }
  .agend-wpp-num-tel { display: none; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .agend-form-card { padding: 24px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-photo-frame { max-width: 240px; }
  .hero-photo-stat { right: -4px; }
  .hero-stats { flex-direction: column; gap: 12px; }
  .hstat-div { width: 80%; height: 1px; margin: 0 auto; }
}

/* ── NAV LOGO IMG ───────────────────────────────────── */
.nav-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1.5px solid rgba(59,130,246,.3);
  box-shadow: 0 0 16px rgba(59,130,246,.2), inset 0 1px 0 rgba(255,255,255,.08);
  padding: 3px;
  background: rgba(10,22,40,.6);
  transition: box-shadow .3s, border-color .3s, transform .2s;
}
.nav-logo-img:hover {
  border-color: rgba(96,165,250,.6);
  box-shadow: 0 0 28px rgba(59,130,246,.4);
  transform: scale(1.04);
}
.loader-logo-img {
  height: 180px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto 36px;
  display: block;
  animation: logoPulse 1.5s ease-in-out infinite;
  border-radius: 16px;
  border: 1.5px solid rgba(59,130,246,.35);
  box-shadow: 0 0 40px rgba(59,130,246,.3);
  padding: 8px;
  background: rgba(10,22,40,.8);
}
.fb-logo-img {
  height: 60px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(59,130,246,.25);
  padding: 3px;
  background: rgba(10,22,40,.5);
}

/* ── UNIT INFO BLOCK (horários + endereço nos cards) ─── */
.unit-info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 12px;
}
.uib-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--gray-600);
  line-height: 1.55;
}
.uib-row svg {
  color: var(--blue-500);
  flex-shrink: 0;
  margin-top: 1px;
}
.uib-hours {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.uib-hours span { font-size: .82rem; color: var(--gray-600); }
.uib-hours strong { color: var(--blue-700); font-weight: 600; }
.uib-closed { opacity: .55; }
.uib-agendado-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #b45309;
  background: #fef3c7;
  border: 1px solid #fcd34d;
  padding: 5px 10px;
  border-radius: 8px;
  width: fit-content;
}

/* ── MINI MAPA ───────────────────────────────────────── */
.unit-mini-map {
  position: relative;
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--blue-100);
  box-shadow: 0 2px 12px rgba(59,130,246,.08);
}
.unit-mini-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(.9) contrast(1.05);
}
.unit-map-link {
  position: absolute;
  bottom: 8px; right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  color: var(--blue-600);
  font-size: .72rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  border: 1px solid var(--blue-100);
  transition: background .2s, color .2s, transform .2s;
  letter-spacing: .02em;
}
.unit-map-link:hover {
  background: var(--blue-500);
  color: var(--white);
  transform: scale(1.04);
}

/* ── FOOTER TAGLINE ─────────────────────────────────── */
.fb-tagline {
  font-size: .85rem;
  color: var(--blue-300);
  line-height: 1.7;
  margin-bottom: 22px;
}

/* ── LOADER LOGO WRAP CENTERED ──────────────────────── */
.loader-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}




/* ── FAB WhatsApp Interativo ────────────────────────── */
.fab-wpp {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 900;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  animation: fabPop .6s cubic-bezier(.34,1.56,.64,1) 2s both;
}
.fab-wpp-icon {
  width: 58px; height: 58px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 0 0 8px rgba(37,211,102,.15),
    0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  position: relative;
}
.fab-wpp-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border-radius: 50%;
  background: rgba(37,211,102,.18);
  animation: fabPulse 2.2s ease-out infinite;
}
.fab-wpp:hover .fab-wpp-icon {
  transform: scale(1.08);
  box-shadow:
    0 0 0 10px rgba(37,211,102,.18),
    0 6px 28px rgba(37,211,102,.55);
}
@keyframes fabPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
@keyframes fabPulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.55); opacity: 0;  }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* ── BTN WPP CTA ────────────────────────────────────── */
.btn-wpp-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366;
  color: var(--white);
  font-size: .92rem; font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-wpp-cta:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }

/* ── CTA ROWS (após sobre e serviços) ───────────────── */
.sobre-cta-row, .sv-cta-block {
  display: flex; align-items: center; gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}
.sv-cta-block {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 56px;
}
.sv-cta-block p {
  font-size: 1rem;
  color: var(--blue-200);
  margin-right: 8px;
  font-weight: 500;
}

/* ── CTA FINAL SECTION ──────────────────────────────── */
.section-cta {
  background: var(--blue-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.cta-final-inner {
  text-align: center;
  position: relative; z-index: 1;
}
.cta-final-inner .eyebrow-light { justify-content: center; }
.cta-final-inner .eyebrow-light::before { display: none; }
.cta-final-txt h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-final-txt h2 em { font-style: normal; color: var(--blue-300); }
.cta-final-txt p { color: var(--blue-200); font-size: .97rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-final-btns {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 32px;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; border-radius: 14px; }
.btn-wpp-lg {
  display: inline-flex; align-items: center; gap: 12px;
  background: #25D366;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  padding: 18px 36px;
  border-radius: 14px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn-wpp-lg:hover { background: #22c55e; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.cta-final-info {
  display: flex; gap: 28px; justify-content: center;
  flex-wrap: wrap;
  color: var(--blue-300);
  font-size: .8rem;
}
.cta-final-info span { display: flex; align-items: center; gap: 6px; }
