﻿/* ============================================================
   TOKENS
============================================================ */
:root {
  --green-cta:    #1E7A45;
  --green-brand:  #2A9B5C;
  --green-hover:  #175F37;
  --navy:         #0F1B2D;
  --navy-mid:     #1E3A5F;
  --orange:       #E07020;
  --white:        #FFFFFF;
  --gray-bg:      #F8FAFC;
  --gray-border:  #E2E8F0;
  --text-muted:   #475569;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm:    0 1px 3px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);

  --transition: all 0.22s ease;
  --section-py: 96px;
  --container: 1200px;
  --px: 24px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

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

img { max-width: 100%; height: auto; display: block; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section       { padding: var(--section-py) 0; }
.section-white { background-color: var(--white); }
.section-gray  { background-color: var(--gray-bg); }

/* Navy dark section */
.section-navy {
  background-color: var(--navy);
  color: var(--white);
}
.section-navy .section-title    { color: var(--white); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.68); }
.section-navy .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section-navy .card:hover { background: rgba(255,255,255,0.07); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.section-navy .card h3 { color: var(--white); }
.section-navy .card p  { color: rgba(255,255,255,0.65); }
.section-navy .card-icon--red { background: rgba(220,53,69,0.18); color: #FC8181; }

/* Steps — subtle radial pattern */
.section-pattern-steps {
  background-image:
    radial-gradient(circle at 15% 50%, rgba(30,122,69,0.05) 0%, transparent 45%),
    radial-gradient(circle at 85% 50%, rgba(30,58,95,0.05) 0%, transparent 45%);
}

/* Sobre — dot pattern on gray */
.section-pattern-dots {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='%231E3A5F' fill-opacity='0.035'/%3E%3C/svg%3E");
}

.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-title.text-left { text-align: left; }

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.btn-primary {
  background: var(--green-cta);
  color: var(--white);
  border-color: var(--green-cta);
}
.btn-primary:hover {
  background: var(--green-hover);
  border-color: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(30,122,69,0.35);
}
.btn-primary:focus-visible { outline: 3px solid var(--green-brand); outline-offset: 3px; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--green-cta);
  border-color: var(--white);
}
.btn-white:hover { background: var(--gray-bg); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.14); }

.btn-lg  { font-size: 16px; padding: 14px 28px; }
.btn-xl  { font-size: 18px; padding: 18px 36px; border-radius: var(--radius-md); }
.btn-full { width: 100%; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
  border-color: var(--gray-border);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.logo-img { height: 40px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.22s ease;
}
/* Sublinhado animado — desliza da esquerda */
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--green-cta);
  width: 0;
  border-radius: 2px;
  transition: width 0.28s ease;
}
.main-nav a:hover { color: var(--green-cta); }
.main-nav a:hover::after { width: calc(100% - 24px); }

.header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

/* Social icons — square style */
.social-icons { display: flex; gap: 6px; }

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #F1F5F9;
  color: var(--text-muted);
  transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.social-icon svg { width: 18px; height: 18px; }

/* Instagram — gradient oficial ao hover */
.social-icon--instagram:hover {
  background: linear-gradient(45deg, #FCAE45, #E1306C, #4F5BD5);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(225,48,108,0.4);
}
/* LinkedIn — azul oficial ao hover */
.social-icon--linkedin:hover {
  background: #0A66C2;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(10,102,194,0.4);
}

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: var(--navy);
  transition: var(--transition);
  margin-left: auto;
}
.hamburger:hover { background: var(--gray-bg); }
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px var(--px) 24px;
  border-top: 1px solid var(--gray-border);
}
.mobile-menu.open { display: flex; }
.mobile-menu nav ul { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  display: block;
  padding: 10px 12px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-menu nav a:hover { background: var(--gray-bg); color: var(--green-cta); }
.mobile-social { display: flex; gap: 8px; }

/* ============================================================
   HERO
============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('public/capa-site-somar-saude-seguros-hero.webp');
  background-size: cover;
  background-position: center right;
  z-index: 0;
  will-change: transform; /* suporte ao parallax */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,27,45,0.85) 0%,
    rgba(15,27,45,0.55) 35%,
    rgba(15,27,45,0.30) 65%,
    rgba(15,27,45,0.15) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: left;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 720px;
  margin-left: 0;
  margin-right: auto;
  padding-left: var(--px);
  will-change: transform; /* suporte ao parallax */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.07);
}
.hero-badge svg { width: 15px; height: 15px; color: var(--green-brand); flex-shrink: 0; }

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-social-proof {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}

.hero-guarantee {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 52px;
}
.hero-guarantee span { display: flex; align-items: center; gap: 5px; }

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
.scroll-arrow svg { width: 22px; height: 22px; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.7s ease forwards;
}
.hero-badge    { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.25s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-ctas     { animation-delay: 0.55s; }
.hero-social-proof { animation-delay: 0.65s; }
.hero-guarantee    { animation-delay: 0.72s; }
.hero-scroll   { animation-delay: 0.82s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CREDIBILITY STRIP
============================================================ */
/* ===== Credibility Strip Marquee ===== */
.credibility-strip {
  background: var(--white);
  padding: 18px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.credibility-strip::before,
.credibility-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.credibility-strip::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
.credibility-strip::after  { right: 0; background: linear-gradient(-90deg, var(--white), transparent); }

.credibility-track {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
  will-change: transform;
}
.credibility-strip:hover .credibility-track { animation-play-state: paused; }

.credibility-item {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap !important;
}
.credibility-item .cred-icon { font-size: 18px; line-height: 1; }

@keyframes marqueeScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (max-width: 768px) {
  .credibility-track { gap: 36px; animation-duration: 30s; }
  .credibility-item  { font-size: 13px; }
  .credibility-strip::before,
  .credibility-strip::after { width: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .credibility-track { animation: none; transform: translateX(0); }
  .credibility-strip::before,
  .credibility-strip::after { display: none; }
}

/* ============================================================
   CARDS (base)
============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.card-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon--green { background: rgba(42,155,92,0.1); color: var(--green-cta); }
.card-icon--red   { background: rgba(220,53,69,0.09); color: #C53030; }

.card-problem { text-align: center; }
.card-problem .card-icon { margin-left: auto; margin-right: auto; }
.card-problem h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.card-problem p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   VANTAGENS — 2 COLUNAS
============================================================ */
.vantagens-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vantagens-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vantagens-list {
  display: flex;
  flex-direction: column;
  margin: 28px 0 32px;
}

.vantagem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-border);
}
.vantagem-item:first-child { padding-top: 0; }
.vantagem-item:last-child { border-bottom: none; padding-bottom: 0; }

.vantagem-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(30,122,69,0.1);
  color: var(--green-cta);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.vantagem-icon svg { width: 20px; height: 20px; }

.vantagem-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.vantagem-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ============================================================
   STEPS
============================================================ */
.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-brand) 0%, var(--gray-border) 100%);
  z-index: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.step-number {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--green-cta);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(30,122,69,0.3);
  margin-bottom: 20px;
}

.step-content { text-align: center; }
.step-content h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step-content p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.steps-cta { text-align: center; }

/* ============================================================
   PLANOS POR PROFISSÃO
============================================================ */
.card-profissao {
  border-top: 4px solid var(--gray-border);
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
}
.card-profissao--oab  { border-top-color: #1B3A7A; }
.card-profissao--crea { border-top-color: #0B7FC4; }
.card-profissao--crm  { border-top-color: var(--green-cta); }

.profissao-photo {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
.profissao-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card-profissao:hover .profissao-photo img { transform: scale(1.04); }

.profissao-photo .profissao-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
}

.profissao-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.profissao-body h3 { font-size: 20px; font-weight: 700; }

.profissao-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--white);
  text-transform: uppercase;
}
.profissao-badge--oab  { background: #1B3A7A; }
.profissao-badge--crea { background: #0B7FC4; }
.profissao-badge--crm  { background: var(--green-cta); }

.profissao-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.profissao-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}
.profissao-benefits li svg { width: 15px; height: 15px; color: var(--green-brand); flex-shrink: 0; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.card-testimonial { display: flex; flex-direction: column; gap: 14px; }
.stars { display: flex; gap: 2px; color: #F59E0B; }
.stars svg { width: 15px; height: 15px; fill: currentColor; }
.card-testimonial blockquote p {
  font-size: 14px; line-height: 1.75;
  color: var(--text-muted); font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-author span   { display: block; font-size: 12px; color: var(--text-muted); }

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--white); flex-shrink: 0;
}
.avatar--green  { background: var(--green-cta); }
.avatar--navy   { background: var(--navy-mid); }
.avatar--blue   { background: #0B7FC4; }
.avatar--orange { background: var(--orange); }

.card-testimonial-cta {
  background: var(--gray-bg);
  border: 2px dashed var(--gray-border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; text-align: center;
  box-shadow: none;
}
.card-testimonial-cta:hover { transform: none; box-shadow: none; }
.card-testimonial-cta p { font-size: 16px; color: var(--text-muted); }
.card-testimonial-cta strong { color: var(--navy); }

/* ============================================================
   STATS
============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
}
.stats-grid { display: flex; align-items: center; justify-content: center; }
.stat-item { flex: 1; text-align: center; padding: 0 32px; }
.stat-number {
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 700; color: var(--white);
  line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.65); }
.stat-divider { width: 1px; height: 64px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

/* ============================================================
   OPERADORAS — logos reais
============================================================ */
.operadoras-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.operadora-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px;
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  background: var(--white);
  filter: grayscale(100%);
  /* Estado inicial: invisível, ligeiramente abaixo (stagger fade-in vai animar) */
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.7s ease,
    box-shadow 0.3s ease;
  cursor: default;
}
/* Quando a grade entra no viewport (controlado por JS via stagger) */
.operadora-item.in-view {
  opacity: 0.55;
  transform: translateY(0);
}
/* Hover ou wave sequencial: ganha cor */
.operadora-item:hover,
.operadora-item.logo-active {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: var(--shadow-md);
}
.operadora-item:hover {
  transform: translateY(-4px);
}
.operadora-item.logo-active {
  /* leve "lift" durante a wave, mais sutil que o hover */
  transform: translateY(-2px);
}
.operadora-item img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   SOBRE / IVAN FOTO REAL
============================================================ */
.sobre-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-avatar-col { display: flex; justify-content: center; }

.ivan-photo-container {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.ivan-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre-cargo { font-size: 16px; font-weight: 500; color: var(--green-brand); margin-bottom: 18px; }
.sobre-bio   { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 24px; }

.credenciais { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.credenciais li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.credenciais li svg { width: 17px; height: 17px; color: var(--green-cta); flex-shrink: 0; }

.sobre-social { display: flex; gap: 8px; }

/* ============================================================
   MAPA DO BRASIL — cobertura nacional
============================================================ */
.brazil-map-section {
  background-color: var(--gray-bg);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

.brazil-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Wrapper do mapa — imagem AI */
.brazil-map-wrap { display: flex; justify-content: center; }

.brasil-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: block;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 24px rgba(15,27,45,0.06);
}

.brasil-map-img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  /* mix-blend-mode REMOVIDO — imagem agora tem fundo branco sólido */
}

/* Pin sobre Recife */
.brasil-pin-recife {
  position: absolute;
  top: 41%;
  left: 78%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

.brasil-pin-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 14px;
  height: 14px;
  background: #2A9B5C;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(42,155,92,0.85), 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
}

.brasil-pin-pulse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  background: #2A9B5C;
  border-radius: 50%;
  opacity: 0.6;
  animation: brasilPulse 2.2s ease-out infinite;
  z-index: 1;
}

@keyframes brasilPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(3.5); opacity: 0;   }
  100% { transform: scale(3.5); opacity: 0;   }
}

/* Tooltip de Recife */
.brasil-pin-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #0F1B2D;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.brasil-pin-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #0F1B2D;
}

.brasil-pin-recife:hover .brasil-pin-tooltip,
.brasil-pin-recife:focus .brasil-pin-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Coluna texto */
.brazil-map-text { display: flex; flex-direction: column; gap: 24px; }

.map-benefits { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.map-benefit-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-muted); line-height: 1.55;
}
.map-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(30,122,69,0.1); color: var(--green-cta);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.map-check svg { width: 12px; height: 12px; }

/* ============================================================
   FAQ
============================================================ */
.faq-container { max-width: 800px; }
.faq-list { margin-bottom: 40px; }
.faq-item { border-bottom: 1px solid var(--gray-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--green-cta); }
.faq-question span { flex: 1; }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.28s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--green-cta); }
.faq-question[aria-expanded="true"] { color: var(--green-cta); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease, padding-bottom 0.32s ease;
  padding-bottom: 0;
}
.faq-answer.open { max-height: 500px; padding-bottom: 20px; }
.faq-answer p { font-size: 15px; line-height: 1.75; color: var(--text-muted); }

.faq-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
  text-align: center; padding: 32px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
}
.faq-cta p { font-size: 16px; color: var(--text-muted); }

/* ============================================================
   CTA FINAL
============================================================ */
.cta-final-section {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--green-cta) 0%, var(--navy-mid) 55%, var(--navy) 100%);
  text-align: center;
}
.cta-final-content { max-width: 680px; }
.cta-final-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 14px;
}
.cta-final-subtitle { font-size: 17px; color: rgba(255,255,255,0.78); margin-bottom: 36px; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }

.footer-grid {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 56px;
}

.footer-logo {
  height: 60px; width: auto;
  /* sem filter — logo original já funciona sobre fundo navy */
  margin-bottom: 14px;
}

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; margin-bottom: 14px; }

.footer-address {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 10px;
}

.footer-email-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  transition: color 0.2s; margin-bottom: 14px;
}
.footer-email-link:hover { color: var(--white); }
.footer-email-link svg { width: 14px; height: 14px; flex-shrink: 0; }

.footer-brand-social { display: flex; gap: 8px; }
.footer-brand-social .social-icon {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
}
.footer-brand-social .social-icon:hover { background: var(--green-cta); color: var(--white); }

.footer-col-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--white); }
.footer-contact-list svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Footer CTA strip */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--green-cta) 0%, var(--green-hover) 100%);
  padding: 40px 0;
}
.footer-cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-strip-inner p {
  font-size: 20px; font-weight: 700;
  color: var(--white); flex: 1;
  max-width: 540px;
}

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); text-align: center; }

/* ============================================================
   EXIT INTENT POPUP
============================================================ */
.exit-popup {
  position: fixed; inset: 0;
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.exit-popup[hidden] { display: none; }

.exit-popup-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62);
  cursor: pointer;
}

.exit-popup-card {
  position: relative; z-index: 1;
  background: linear-gradient(145deg, var(--green-cta) 0%, var(--green-hover) 100%);
  border-radius: 16px;
  padding: 40px 36px 32px;
  max-width: 480px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
  animation: popupIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.exit-popup-close {
  position: absolute; top: 14px; right: 18px;
  font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  cursor: pointer; line-height: 1;
  transition: color 0.2s; padding: 4px;
}
.exit-popup-close:hover { color: var(--white); }

.exit-popup-emoji { font-size: 46px; margin-bottom: 6px; line-height: 1; }

.exit-popup-title {
  font-size: 28px; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.exit-popup-subtitle { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 20px; }

.exit-popup-inner-card {
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
  text-align: left;
}
.exit-popup-guide-title {
  font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 4px;
}
.exit-popup-free {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.exit-popup-bullets { display: flex; flex-direction: column; gap: 9px; }
.exit-popup-bullets li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.9);
}
.exit-bullet-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
}

.exit-popup-btn-primary {
  display: flex; width: 100%;
  background: var(--white); color: var(--green-cta);
  font-size: 16px; font-weight: 700;
  padding: 15px; border-radius: var(--radius-sm);
  margin-bottom: 10px; border: none;
  justify-content: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.exit-popup-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.exit-popup-btn-secondary {
  display: flex; width: 100%;
  background: var(--green-hover); color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 13px; border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  justify-content: center; gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
}
.exit-popup-btn-secondary:hover { background: rgba(0,0,0,0.12); }

.exit-popup-disclaimer { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.wa-float {
  position: fixed;
  bottom: 32px; right: 28px;
  z-index: 900;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
}
.wa-float.visible {
  opacity: 1;
  pointer-events: auto;
  animation: waPulse 2.8s ease-out 1.2s infinite;
}
.wa-float:hover {
  animation: none;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.6);
}
.wa-float svg { width: 28px; height: 28px; }

@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.45); }
  70%  { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}

.wa-tooltip {
  position: absolute;
  right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  padding: 7px 12px; border-radius: 6px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy);
  border-right: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ============================================================
   MOBILE STICKY CTA
============================================================ */
.mobile-sticky-cta {
  display: none;
}

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view { opacity: 1; transform: translateY(0); }

.grid > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.grid > .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.grid > .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.grid > .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.grid > .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.grid > .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

.steps-timeline > .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.steps-timeline > .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.steps-timeline > .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.steps-timeline > .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .fade-up { opacity: 1; transform: none; animation: none; }
  .scroll-arrow { animation: none; }
  .wa-float.visible { animation: none; }
  .brasil-pin-pulse { animation: none; opacity: 0.4; }
}

/* ============================================================
   INNER PAGES (oab / crea / crm)
============================================================ */
.inner-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  color: var(--white);
}
.inner-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.inner-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(140deg,
    rgba(15,27,45,0.92) 0%,
    rgba(30,58,95,0.82) 60%,
    rgba(30,122,69,0.52) 100%
  );
}
.inner-hero-content {
  position: relative; z-index: 1;
  max-width: 720px;
}
.inner-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.08);
  margin-bottom: 22px;
}
.inner-hero h1 {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 16px;
}
.inner-hero p {
  font-size: 18px; color: rgba(255,255,255,0.82);
  margin-bottom: 36px; max-width: 600px; line-height: 1.65;
}
.inner-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600;
  color: var(--green-cta);
  margin-bottom: 48px;
  transition: gap 0.2s;
}
.back-link:hover { gap: 10px; }
.back-link svg { width: 16px; height: 16px; }

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.benefit-item {
  display: flex; gap: 16px;
  padding: 22px;
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-border);
}
.benefit-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: rgba(30,122,69,0.1);
  color: var(--green-cta);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit-icon svg { width: 20px; height: 20px; }
.benefit-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.benefit-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Includes list */
.includes-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 64px;
}
.includes-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500; color: var(--navy);
  padding: 13px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-border);
}
.includes-check { color: var(--green-brand); flex-shrink: 0; }
.includes-check svg { width: 16px; height: 16px; }

/* Comparison table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.comparison-table th {
  padding: 16px 20px;
  font-size: 14px; font-weight: 700;
  text-align: left;
}
.comparison-table th:first-child { background: var(--gray-bg); color: var(--text-muted); width: 30%; }
.comparison-table th.col-without { background: #FEF2F2; color: #991B1B; }
.comparison-table th.col-with    { background: var(--green-cta); color: var(--white); }
.comparison-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-top: 1px solid var(--gray-border);
  vertical-align: top;
  line-height: 1.6;
}
.comparison-table td:first-child { font-weight: 600; color: var(--navy); background: var(--gray-bg); }
.comparison-table td.without { color: #7F1D1D; }
.comparison-table td.with    { color: #14532D; font-weight: 600; }

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-page { max-width: 820px; margin: 0 auto; }

.legal-meta {
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 36px; padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-border);
}

.legal-toc {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 48px;
  border: 1px solid var(--gray-border);
}
.legal-toc h2 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 12px;
}
.legal-toc ol { padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.legal-toc li { font-size: 14px; }
.legal-toc a { color: var(--green-cta); text-decoration: underline; }
.legal-toc a:hover { color: var(--green-hover); }

.legal-section {
  margin-bottom: 44px;
  scroll-margin-top: 100px;
}
.legal-section h2 {
  font-size: 22px; font-weight: 700;
  color: var(--navy); margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gray-border);
}

/* ============================================================
   COOKIE CONSENT BANNER (LGPD)
============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 9999;
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
  animation: cookieSlideUp 0.4s ease-out;
}

.cookie-banner[hidden] { display: none; }

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.cookie-text h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.cookie-text p  { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.cookie-text a  { color: var(--green-cta); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

@media (max-width: 600px) {
  .cookie-banner { bottom: 0; left: 0; right: 0; border-radius: 12px 12px 0 0; border-bottom: none; }
  .cookie-content { grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { width: 100%; text-align: center; }
}
.legal-section h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 20px 0 10px; }
.legal-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.legal-section ul, .legal-section ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.legal-section li { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

.legal-contact-box {
  background: var(--gray-bg);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--gray-border);
  margin-top: 52px;
}
.legal-contact-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.legal-contact-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
.legal-contact-box a { color: var(--green-cta); text-decoration: underline; }

/* ============================================================
   A.9 — EFEITOS PREMIUM
============================================================ */

/* 1. Barra de progresso de scroll */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--green-brand), var(--green-cta));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* 2. Orbes de gradiente em sections escuras */
.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.28;
  pointer-events: none;
  animation: orbFloat var(--orb-duration, 14s) ease-in-out infinite;
}
.bg-orb--green  { background: var(--green-brand); }
.bg-orb--navy   { background: var(--navy-mid); }
.bg-orb--orange { background: var(--orange); opacity: 0.15; }

@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-20px, 20px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

/* sections com orbes precisam de position relative + overflow hidden */
.stats-section,
.cta-final-section,
.section-navy {
  position: relative;
  overflow: hidden;
}

/* 3. Parallax — handled via JS, precisa de overflow hidden no hero */
.hero-section { overflow: hidden; }

/* 4. Tilt 3D nos cards de profissão — handled via JS */
.card-profissao {
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  transform-style: preserve-3d;
}

/* 5. Divisórias em onda entre seções */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* 6. Sublinhado já aplicado no .main-nav a::after acima */

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .vantagens-2col { grid-template-columns: 1fr; gap: 48px; }
  .vantagens-img { height: 420px; }

  .sobre-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .section-title.text-left { text-align: center; }
  .sobre-cargo { text-align: center; }
  .credenciais { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
  .sobre-social { justify-content: center; }
  .ivan-photo-container { max-width: 280px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 48px; padding-bottom: 40px; }

  .steps-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .steps-timeline::before { display: none; }

  .operadoras-grid { grid-template-columns: repeat(3, 1fr); }

  .benefits-grid { grid-template-columns: 1fr; }
  .includes-list { grid-template-columns: 1fr; }

  .footer-cta-strip-inner { flex-direction: column; text-align: center; }

  .brazil-map-grid { grid-template-columns: 1fr; gap: 48px; }
  .brazil-map-wrap { order: -1; }
  .brasil-map-wrapper { max-width: 380px; padding: 10px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
============================================================ */
@media (max-width: 768px) {
  :root { --section-py: 60px; }

  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }
  .hero-guarantee { gap: 12px; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .steps-timeline { grid-template-columns: 1fr; gap: 24px; }
  .steps-timeline::before { display: none; }
  .step { flex-direction: row; align-items: flex-start; padding: 0; gap: 18px; }
  .step-content { text-align: left; }
  .step-number { margin-bottom: 0; flex-shrink: 0; }

  .stats-grid { flex-direction: column; gap: 28px; }
  .stat-divider { width: 56px; height: 1px; }
  .stat-item { padding: 0; }

  .operadoras-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 40px; padding-bottom: 32px; }

  .section-header { margin-bottom: 40px; }
  .section-subtitle { font-size: 15px; }

  .faq-question { font-size: 15px; }

  .inner-hero { padding: 140px 0 72px; }
  .inner-hero-ctas { flex-direction: column; }
  .inner-hero-ctas .btn { width: 100%; }

  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }

  /* Mobile sticky CTA */
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 800;
    background: var(--white);
    border-top: 1px solid var(--gray-border);
    padding: 12px 16px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .mobile-sticky-cta.visible { transform: translateY(0); }

  .wa-float { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 24px; height: 24px; }
  .wa-tooltip { display: none; }
}
