/* ═══════════════════════════════════════════════════════════════
   Click Antecipa — Design System institucional
   Paleta oficial: Azul #004BD8 · Laranja #FF6A3D · Naval #03081A
   Fonte: Plus Jakarta Sans
   Este arquivo é compartilhado por todas as páginas do site.
   ═══════════════════════════════════════════════════════════════ */

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #16203D;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
::selection { background: rgba(255,106,61,0.25); color: #03081A; }

/* ─── Tokens ───────────────────────────────────────────────── */
:root {
  /* Azul oficial — confiança e solidez */
  --blue: #004BD8;
  --blue-dark: #0039B0;
  --navy: #002A73;
  --blue-soft: #6B8AFF;
  /* Laranja oficial — energia e liquidez */
  --orange: #FF6A3D;
  --orange-bright: #FF8A5C;
  --orange-deep: #E8531F;
  /* Fundos escuros */
  --dark: #03081A;
  --dark-2: #081534;
  --gray: #F4F7FF;
  --text: #2A3354;
  --text-light: #69739A;
  --border: #E6E9F5;
  /* Gradientes */
  --gradient: linear-gradient(135deg, #004BD8 0%, #0039B0 100%);
  --gradient-brand: linear-gradient(135deg, #004BD8 0%, #FF6A3D 100%);
  --gradient-accent: linear-gradient(135deg, #6B8AFF 0%, #FF8A5C 100%);
  --gradient-dark: linear-gradient(160deg, #03081A 0%, #081534 55%, #05122E 100%);
  --border-light: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.15) 40%, rgba(0,75,216,0.08));
  /* Raio */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius: 20px;
  --radius-lg: 24px;
  /* Sombras */
  --shadow: 0 2px 6px rgba(8,21,52,0.04), 0 12px 32px rgba(8,21,52,0.08);
  --shadow-lg: 0 8px 24px rgba(0,75,216,0.12), 0 28px 64px rgba(0,75,216,0.18);
  --shadow-orange: 0 8px 28px rgba(255,106,61,0.32);
}

/* ─── Keyframes ────────────────────────────────────────────── */
@keyframes aurora1 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  33% { transform: translate(80px,-60px) scale(1.15); opacity: 0.8; }
  66% { transform: translate(-60px,40px) scale(0.9); opacity: 0.5; }
}
@keyframes aurora2 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.5; }
  40% { transform: translate(-100px,80px) scale(1.2); opacity: 0.7; }
  70% { transform: translate(60px,-40px) scale(0.85); opacity: 0.4; }
}
@keyframes aurora3 {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.4; }
  50% { transform: translate(50px,60px) scale(1.1); opacity: 0.65; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes floatDelay {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,106,61,0.55); }
  70% { transform: scale(1); box-shadow: 0 0 0 16px rgba(255,106,61,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255,106,61,0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes slide-in-card {
  from { opacity: 0; transform: translateX(60px) scale(0.95); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* ─── Scroll reveal ────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal { transform: translateY(28px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ─── Utilitários ──────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--bright {
  background: var(--gradient-accent);
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--blue);
  background: linear-gradient(135deg, rgba(0,75,216,0.10), rgba(255,106,61,0.08));
  border: 1px solid rgba(0,75,216,0.16);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.tag--onDark {
  color: var(--orange-bright);
  background: linear-gradient(135deg, rgba(255,106,61,0.14), rgba(0,75,216,0.12));
  border-color: rgba(255,106,61,0.30);
}

/* ─── Ícones SVG (stroke) ──────────────────────────────────── */
.ic {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  vertical-align: -0.125em;
}
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0,75,216,0.12), rgba(255,106,61,0.08));
  border: 1px solid rgba(0,75,216,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.icon-box .ic { width: 28px; height: 28px; }
.icon-box--onDark {
  background: linear-gradient(160deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border-color: rgba(255,255,255,0.16);
  color: var(--orange-bright);
}

/* ─── Botões ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border: none;
  font-family: inherit;
  will-change: transform;
}
.btn:focus-visible { outline: 3px solid rgba(255,106,61,0.55); outline-offset: 2px; }
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,75,216,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 38px rgba(0,75,216,0.5), 0 0 0 1px rgba(255,138,92,0.4);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,106,61,0.10);
  border-color: var(--orange);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 24px rgba(255,106,61,0.2);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover {
  background: rgba(0,75,216,0.06);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 24px rgba(0,75,216,0.18);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(3,8,26,0.3);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 34px rgba(3,8,26,0.45), 0 0 0 1px rgba(255,106,61,0.25);
}
.btn-white {
  background: #fff;
  color: var(--blue-dark);
  font-weight: 700;
}
.btn-white:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 14px 44px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,138,92,0.4);
}

/* ─── Header ───────────────────────────────────────────────── */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,75,216,0.07);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
header.site-header.scrolled {
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; max-width: none; }
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s;
}
.site-nav a:hover, .site-nav a.active { color: var(--blue); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.site-nav a:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; border-radius: 4px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { padding: 10px 18px; font-size: 13px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.3s; }
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 99;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 16px; font-weight: 600; color: var(--text); }

/* ─── Hero interno (páginas que não são a home) ────────────── */
.page-hero {
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(0,75,216,0.20), transparent 60%),
    radial-gradient(700px 400px at 10% 110%, rgba(255,106,61,0.08), transparent 60%),
    var(--gradient-dark);
  color: #fff;
  padding: 172px 0 96px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .aurora-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.page-hero .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease both;
}
.page-hero .hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.62);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.live-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-ring 2s ease infinite;
  flex-shrink: 0;
}

/* Aurora blobs (usados em heros e seções escuras) */
.aurora-wrap { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  will-change: transform, opacity;
}
.aurora-blob:nth-child(1) {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(0,75,216,0.50) 0%, transparent 65%);
  top: -200px; right: -150px;
  animation: aurora1 14s ease-in-out infinite;
}
.aurora-blob:nth-child(2) {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(0,42,115,0.55) 0%, transparent 65%);
  bottom: -150px; left: -150px;
  animation: aurora2 17s ease-in-out infinite;
}
.aurora-blob:nth-child(3) {
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(255,106,61,0.16) 0%, transparent 65%);
  top: 38%; left: 32%;
  animation: aurora3 11s ease-in-out infinite;
}
.aurora-blob:nth-child(4) {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,138,92,0.12) 0%, transparent 65%);
  top: 8%; left: 18%;
  animation: aurora1 20s ease-in-out infinite reverse;
}
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* ─── Seções ───────────────────────────────────────────────── */
.section { padding: 110px 0; }
.section--gray { background: var(--gray); }
.section--dark { background: var(--gradient-dark); position: relative; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
  color: var(--dark);
}
.section--dark .section-header h2, .section--dark h2 { color: #fff; }
.section-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}
.section--dark .section-header p { color: rgba(255,255,255,0.5); }

/* ─── Cards ────────────────────────────────────────────────── */
.card {
  background: linear-gradient(#fff, #fff) padding-box, var(--border-light) border-box;
  border-radius: var(--radius);
  padding: 44px 36px;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px rgba(8,21,52,0.03), 0 10px 30px rgba(8,21,52,0.05);
  transition: transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,75,216,0.10), 0 28px 64px rgba(0,75,216,0.16);
}
.card-top-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.65,0,0.35,1);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}
.card:hover .card-top-bar { transform: scaleX(1); }
.card .icon-box { margin-bottom: 26px; transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.card:hover .icon-box {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 28px rgba(0,75,216,0.35), 0 0 0 1px rgba(255,106,61,0.3);
  transform: translateY(-3px) scale(1.06);
}
.card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-bottom: 12px;
  color: var(--dark);
}
.card p { font-size: 15px; color: var(--text-light); line-height: 1.75; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.25s ease, color 0.25s ease;
}
.card-link:hover { gap: 12px; color: var(--orange-deep); }

/* Card em seção escura */
.card--onDark {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 40px 28px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s cubic-bezier(0.34,1.4,0.64,1), box-shadow 0.35s ease;
  will-change: transform;
}
.card--onDark:hover {
  background: linear-gradient(160deg, rgba(255,106,61,0.10), rgba(0,75,216,0.08));
  border-color: rgba(255,106,61,0.32);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,106,61,0.15);
}

/* Stat (número grande em fundo escuro) */
.stat-num {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.5px;
  background: var(--gradient-accent);
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.stat-label { font-size: 14px; color: rgba(255,255,255,0.62); font-weight: 500; margin-top: 6px; }

/* ─── Formulários ──────────────────────────────────────────── */
.form-card {
  background: #fff;
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-card h2 { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 8px; text-align: center; letter-spacing: -0.5px; }
.form-card .form-sub { text-align: center; color: var(--text-light); font-size: 14px; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit;
  font-size: 15px;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #FAFBFF;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,75,216,0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-actions { margin-top: 24px; text-align: center; }
.form-actions .btn { padding: 15px 40px; font-size: 15px; }
.form-status { display: none; margin-top: 16px; text-align: center; font-size: 14px; font-weight: 600; line-height: 1.6; }
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }
.form-status a { color: var(--blue); font-weight: 700; text-decoration: underline; }

/* ─── Faixa de credibilidade regulatória ───────────────────── */
.cred-strip {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
}
.cred-item .ic { width: 18px; height: 18px; color: var(--blue); }

/* ─── CTA banner ───────────────────────────────────────────── */
.cta-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, #004BD8 0%, #0039B0 45%, #03081A 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,61,0.20) 0%, transparent 65%);
  top: -200px; right: -100px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cta-text h2 { font-size: clamp(30px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1px; color: #fff; margin-bottom: 10px; line-height: 1.12; }
.cta-text p { font-size: 18px; color: rgba(255,255,255,0.78); }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ─── Footer ───────────────────────────────────────────────── */
footer.site-footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  position: relative;
}
footer.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,61,0.35), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; color: rgba(255,255,255,0.42); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.72);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.footer-social a .ic { width: 18px; height: 18px; }
.footer-social a:hover {
  background: rgba(255,106,61,0.16);
  border-color: rgba(255,106,61,0.45);
  color: #fff;
  transform: translateY(-2px);
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); }
.footer-cnpj { color: rgba(255,255,255,0.25); font-size: 12px; }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: #fff; }

/* ─── WhatsApp flutuante ───────────────────────────────────── */
.float-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 99;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-btn .ic { width: 20px; height: 20px; fill: currentColor; stroke: none; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(37,211,102,0.55); }

/* ─── Páginas legais (termos, políticas) ───────────────────── */
.legal-body { padding: 72px 0 96px; }
.legal-card {
  background: #fff;
  max-width: 860px;
  margin: 0 auto;
  padding: 56px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.legal-card h2 { font-size: 21px; font-weight: 800; color: var(--dark); margin: 36px 0 14px; letter-spacing: -0.3px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.legal-card p, .legal-card li { font-size: 15px; color: var(--text); line-height: 1.85; margin-bottom: 12px; }
.legal-card ul, .legal-card ol { padding-left: 24px; margin-bottom: 16px; }
.legal-updated { font-size: 13px; color: var(--text-light); margin-bottom: 28px; }

/* ─── Responsivo ───────────────────────────────────────────── */
@media (max-width: 1200px) {
  .header-phone { display: none; }
}
@media (max-width: 1080px) {
  .site-nav { gap: 20px; }
  .header-actions .btn { padding: 9px 14px; font-size: 12.5px; }
  .header-actions .btn-outline-blue { display: none; }
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
  .legal-card { padding: 36px 24px; }
  .page-hero { padding: 140px 0 72px; }
}
@media (max-width: 900px) {
  .site-nav { display: none; }
  .header-actions { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; align-items: center; }
  .footer-legal { justify-content: center; }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
}
@media (min-width: 1600px) {
  .container { max-width: 1320px; }
}

/* ─── Acessibilidade: reduzir movimento ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1 !important; transform: none !important; }
}
