/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; background: #0f274e; }
body { font-family: var(--font); color: var(--dark-text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --navy:        #1B2A41;
  --navy-mid:    #243450;
  --orange:      #F5A623;
  --orange-dark: #e8931a;
  --white:       #FFFFFF;
  --gray-light:  #F5F7FA;
  --gray-border: #E5E7EB;
  --gray-text:   #6B7280;
  --dark-text:   #111827;
  --navy-text:   #aab8cc;
  --font:        'Inter', sans-serif;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.12);
  --container:   1160px;
  --section-pad: 80px 20px;
}

/* ===== UTILITÁRIOS ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 8px; }
.section-title { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
.section-title--white { color: var(--white); }
.section-subtitle { font-size: 16px; color: var(--gray-text); max-width: 560px; }
.section-subtitle--white { color: var(--navy-text); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: transform .15s, box-shadow .15s; }
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary {
  background: linear-gradient(135deg, #ffb83a 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(245,166,35,.32);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ffc34d 0%, var(--orange) 100%);
  box-shadow: 0 4px 22px rgba(245,166,35,.52);
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: box-shadow .3s;
}
#header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }

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

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon-bg {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.logo-rocket {
  height: 38px;
  width: 38px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.logo-text {
  font-size: 18px; font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.logo-accent { color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-cta {
  padding: 9px 22px;
  font-size: 14px;
  border-radius: 20px;
  letter-spacing: .3px;
  font-weight: 700;
}
.btn-outline {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background .18s, border-color .18s, color .18s, box-shadow .18s;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
  transform: none;
}

/* ===== HERO ===== */
#hero {
  background: linear-gradient(to right, #1b2a41 0%, #0f2850 45%, #0f274e 100%);
  height: 100vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
  padding-top: 64px;
}
.hero-content {
  display: flex;
  align-items: stretch;
  height: 100%;
  width: 100%;
  gap: 0;
}
.hero-text {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4% 10% 6%;
}
.hero-rocket {
  flex: 1;
  position: relative;
  margin-right: -30px;
}
/* funde a borda esquerda do foguete com o gradiente do hero */
.hero-rocket::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(to right, #0f2850 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.rocket-img {
  position: absolute;
  top: 0; left: -2%; bottom: 0; right: 0;
  width: 102%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-title {
  font-size: clamp(28px, 3.4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5em;
  letter-spacing: -1px;
}
.hero-highlight { color: #4fc3f7; }
.hero-subtitle {
  font-size: clamp(14px, 1.2vw, 17px);
  color: rgba(255,255,255,0.65);
  margin-bottom: 2em;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  padding: clamp(13px,1.2vw,17px) clamp(28px,2.4vw,44px);
  background: linear-gradient(135deg, #ffb83a 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-weight: 700;
  font-size: clamp(13px, 1.1vw, 15px);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(245,166,35,0.45);
  transition: box-shadow .2s, transform .15s;
  text-decoration: none;
  line-height: 1;
  letter-spacing: .3px;
}
.btn-hero-cta:hover {
  box-shadow: 0 6px 32px rgba(245,166,35,0.65);
  transform: translateY(-2px);
}
.hero-link-teste {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hero-link-teste:hover {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .hero-content { flex-direction: column; padding: 8% 5% 0; gap: 0; }
  .hero-text { flex: none; }
  .hero-rocket { flex: 1; width: 100%; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(22px, 7vw, 32px); }
}
@media (max-width: 600px) {
  .header-actions { gap: 6px; }
  .header-cta { padding: 7px 12px; font-size: 12px; letter-spacing: .2px; }
}

/* ===== STATS ===== */
#stats { background: var(--white); padding: 48px 20px; border-bottom: 1px solid var(--gray-border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.stat-icon { color: var(--orange); margin-bottom: 4px; }
.stat-item strong { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-item span { font-size: 13px; color: var(--gray-text); }
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ===== PAIN POINTS ===== */
#pain-points { background: var(--gray-light); padding: var(--section-pad); }
.section-header { margin-bottom: 48px; }
.text-center { text-align: center; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pain-icon {
  width: 48px; height: 48px;
  background: #fff3e0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin: 0 auto 16px;
}
.pain-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.pain-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }
@media (max-width: 768px) {
  .pain-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ===== NOSSA SOLUÇÃO ===== */
#solucao { background: var(--navy); padding: var(--section-pad); }
.solucao-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.solucao-item { display: flex; gap: 16px; align-items: flex-start; }
.solucao-check {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(245,166,35,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  margin-top: 2px;
}
.solucao-item strong { display: block; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.solucao-item p { font-size: 14px; color: var(--navy-text); line-height: 1.6; }
@media (max-width: 768px) { .solucao-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; } }

/* ===== DIFERENCIAIS ===== */
#diferenciais { background: var(--white); padding: var(--section-pad); }
.diferenciais-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.diferenciais-ilustracao svg { width: 100%; max-width: 380px; margin: 0 auto; }
.diferenciais-lista { display: flex; flex-direction: column; gap: 4px; }
.diferencial-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-border);
}
.diferencial-item:last-child { border-bottom: none; }
.diferencial-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: #fff3e0;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
}
.diferencial-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.diferencial-item p { font-size: 13px; color: var(--gray-text); line-height: 1.5; }
@media (max-width: 900px) {
  .diferenciais-inner { grid-template-columns: 1fr; gap: 40px; }
  .diferenciais-ilustracao { display: none; }
}

/* ===== CERTIFICADOS ===== */
#certificados { background: var(--gray-light); padding: var(--section-pad); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.cert-card {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.cert-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 24px rgba(245,166,35,0.15);
  transform: translateY(-4px);
}
.cert-card--destaque { border-color: var(--orange); }
.cert-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #5a3500;
  font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.cert-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.cert-icon--cpf { background: #dbeafe; color: #1d4ed8; }
.cert-icon--cnpj { background: #dcfce7; color: #16a34a; }
.cert-tipo {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-text); margin-bottom: 4px;
}
.cert-nome { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
.cert-validade { font-size: 12px; color: #9ca3af; margin-bottom: 10px; }
.cert-desc { font-size: 13px; color: var(--gray-text); line-height: 1.5; margin-bottom: 0; flex: 1; }
.cert-preco { font-size: 16px; color: var(--gray-text); margin-bottom: 16px; margin-top: auto; padding-top: 16px; }
.cert-preco strong { font-size: 32px; font-weight: 900; color: var(--navy); }
.cert-btn { width: 100%; justify-content: center; padding: 12px; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cert-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }
.btn-mais-cert {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn-mais-cert:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== COMO FUNCIONA ===== */
#como-funciona { background: var(--navy); padding: var(--section-pad); }
.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.passo {
  text-align: center;
  padding: 0 32px;
  position: relative;
}
.passo-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px; font-weight: 900;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
}
.passo-conector {
  position: absolute;
  top: 26px;
  left: calc(50% + 26px);
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,0.15));
  z-index: 0;
}
.passo-icon {
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}
.passo h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.passo p { font-size: 14px; color: var(--navy-text); line-height: 1.6; }
.btn-verificar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1.5px dashed var(--navy);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.btn-verificar:hover {
  color: var(--orange-dark);
  border-color: var(--orange-dark);
}
.btn-verificar svg { flex-shrink: 0; }
.btn-comecar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffb83a 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 0 0 4px rgba(245,166,35,0.2), 0 6px 28px rgba(245,166,35,0.4);
  transition: box-shadow .2s, transform .15s, gap .2s;
  letter-spacing: .3px;
}
.btn-comecar:hover {
  box-shadow: 0 0 0 6px rgba(245,166,35,0.25), 0 8px 36px rgba(245,166,35,0.55);
  transform: translateY(-2px);
  gap: 16px;
}
.aviso-presencial {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #FFF8EC;
  border: 1px solid rgba(245,166,35,.35);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  max-width: 520px;
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.55;
  text-align: left;
}
.aviso-presencial svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.aviso-presencial strong { color: var(--dark-text); }
.aviso-link {
  color: var(--navy);
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
  white-space: nowrap;
}
.aviso-link:hover { color: var(--orange-dark); }
@media (max-width: 768px) {
  .passos-grid { grid-template-columns: 1fr; gap: 40px; max-width: 400px; margin: 56px auto 0; }
  .passo-conector { display: none; }
}

/* ===== DEPOIMENTOS ===== */
#depoimentos { background: var(--gray-light); padding: var(--section-pad); }
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 48px;
}
.carousel-track-container { overflow: hidden; flex: 1; }
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94);
}
.depoimento-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.depoimento-stars { color: var(--orange); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.depoimento-texto {
  font-size: 14px; color: var(--gray-text);
  line-height: 1.7; font-style: italic;
  margin-bottom: 20px;
}
.depoimento-autor { display: flex; align-items: center; gap: 12px; }
.depoimento-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.depoimento-autor strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.depoimento-autor span { font-size: 12px; color: var(--gray-text); }
.carousel-btn {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background .2s, border-color .2s;
}
.carousel-btn:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.carousel-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gray-border); cursor: pointer; border: none;
  transition: background .2s, transform .2s;
}
.carousel-dot.active { background: var(--orange); transform: scale(1.3); }
@media (max-width: 768px) {
  .depoimento-card { flex: 0 0 100%; }
  .carousel-btn { display: none; }
  .carousel-dot {
    width: 10px;
    height: 10px;
  }
}

/* ===== COMPARATIVO ===== */
#comparativo { background: var(--white); padding: var(--section-pad); }
.comp-table-title { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 16px; text-align: center; }
.comp-table-title span { color: var(--orange); }
.comp-tables { display: flex; gap: 32px; margin-top: 48px; align-items: stretch; }
.comp-table { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.comp-table table { width: 100%; border-collapse: collapse; font-size: 13px; table-layout: fixed; flex: 1; }
.comp-table tbody { height: 100%; }
.comp-table tbody tr { height: 1px; }
.comp-table tbody td { height: inherit; }
.comp-table th, .comp-table td { padding: 14px; border: 1px solid var(--gray-border); text-align: left; word-break: break-word; vertical-align: middle; }
.comp-table thead th { font-weight: 700; font-size: 13px; }
.comp-table th:first-child, .comp-table td:first-child { color: var(--gray-text); background: var(--gray-light); font-weight: 600; }
.th-cpf, .th-a1 { background: #dbeafe; color: #1d4ed8; }
.th-cnpj, .th-a3 { background: #dcfce7; color: #16a34a; }
.comp-table tbody tr:hover td { background: #fafafa; }
@media (max-width: 768px) { .comp-tables { flex-direction: column; } }

/* ===== FAQ ===== */
#faq { background: var(--gray-light); padding: var(--section-pad); }
.faq-list { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-border); }
.faq-item:first-child { border-top: 1px solid var(--gray-border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 4px; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--navy);
  text-align: left; gap: 16px;
}
.faq-btn:hover { color: var(--orange); }
.faq-arrow { flex-shrink: 0; transition: transform .3s; color: var(--orange); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 4px 20px; font-size: 14px; color: var(--gray-text); line-height: 1.7; }

/* ===== MENU MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy);
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
#nav-mobile.open { display: flex; }
#nav-mobile a {
  padding: 14px 4px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color .2s;
}
#nav-mobile a:last-child { border-bottom: none; }
#nav-mobile a:hover { color: var(--white); }
.nav-mobile-cta {
  margin-top: 12px;
  background: linear-gradient(135deg, #ffb83a 0%, var(--orange-dark) 100%);
  color: var(--white) !important;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(245,166,35,.32);
  display: flex;
  justify-content: center;
  border-bottom: none !important;
}
@media (max-width: 540px) {
  .hamburger { display: flex; }
  .header-actions { display: none; }
}

/* ===== FOOTER ===== */
#footer { background: var(--navy); padding: 72px 20px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  align-items: start;
}
.footer-logo { margin-bottom: 18px; }
.footer-desc {
  font-size: 13px; color: var(--navy-text); line-height: 1.8;
  margin-bottom: 28px; max-width: 270px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-text); transition: background .2s, color .2s, border-color .2s;
}
.social-link:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.footer-col:first-child .footer-logo {
  display: flex;
  align-items: center;
  height: 36px;
}
.footer-heading {
  font-size: 10px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 22px;
  height: 36px; display: flex; align-items: center;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px; color: var(--navy-text); transition: color .2s, padding-left .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--orange);
  transition: width .2s;
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { width: 12px; }
.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact li {
  display: flex; gap: 12px;
  font-size: 13px; color: var(--navy-text);
  align-items: flex-start; line-height: 1.6;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact a { color: var(--navy-text); transition: color .2s; }
.footer-contact a:hover { color: var(--orange); }

/* selos de confiança */
.footer-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}
.footer-trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.footer-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55);
  padding: 0 32px;
}
.footer-trust-item svg { color: var(--orange); flex-shrink: 0; }
.footer-trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.12); }

/* bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom-inner span { font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-trust-item { padding: 8px 16px; }
  .footer-trust-divider { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-trust-inner { flex-direction: column; align-items: flex-start; padding: 0 20px; gap: 14px; }
}

/* ===== WHATSAPP FLUTUANTE ===== */
#whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: transform .2s, box-shadow .2s;
}
#whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }
#whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: whatsapp-pulse 2s ease-out infinite;
}
@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}
#whatsapp-btn svg { position: relative; z-index: 1; }

/* ===== FOOTER POLICY LINK ===== */
.footer-policy-link {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(245,166,35,.3);
}
.footer-policy-link:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

/* ===== POLISH FINAL ===== */
::selection { background: var(--orange); color: var(--white); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
html { scroll-padding-top: 72px; }
section[id] { scroll-margin-top: 72px; }


/* ===== FOOTER MAP ===== */
.footer-map {
  width: 100%;
  height: 320px;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
}
