/* ===========================
   VARIÁVEIS & RESET
   =========================== */
:root {
  --blue-900: #0a1f44;
  --blue-800: #0d2b5e;
  --blue-700: #1040a0;
  --blue-600: #1a56c8;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --green-wa: #25d366;
  --green-wa-dark: #128c7e;
  --accent: #f59e0b;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 31, 68, 0.10);
  --shadow-lg: 0 8px 40px rgba(10, 31, 68, 0.18);
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===========================
   UTILITÁRIOS
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.bg-light { background: var(--gray-50); }

.highlight {
  color: var(--blue-500);
  position: relative;
}

/* ===========================
   BOTÕES
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

/* Botões de ação WhatsApp — azul no contraste do site.
   Verde fica APENAS na bolinha flutuante (.whatsapp-float) */
.btn-whatsapp {
  background: var(--blue-500);
  color: var(--white);
}
.btn-whatsapp:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--blue-500);
  color: var(--blue-500);
}
.btn-outline:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-light:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--blue-50);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--blue-500);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
}
.btn-nav:hover { background: var(--blue-700); }

/* Remove qualquer override verde anterior de btn-nav + btn-whatsapp */
.btn-nav.btn-whatsapp,
.btn.btn-whatsapp {
  background: var(--white);
  color: var(--blue-500);
}
.btn-nav.btn-whatsapp:hover,
.btn.btn-whatsapp:hover {
  background: var(--white);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 14px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 20px 0;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 12px 0;
}
.navbar.scrolled .nav-links a:not(.btn-nav) { color: var(--gray-700); }
.navbar.scrolled .nav-links a:not(.btn-nav):hover { color: var(--blue-500); }

/* ===========================
   LOGO — estilo integrado na navbar (referência MinutoSeguros)
   Logo limpa, sem moldura, tamanho generoso, sem alterar
   a altura da barra. Fundo branco arredondado mínimo apenas
   para legibilidade, igual aos grandes portais de seguros.
   =========================== */

.navbar { overflow: visible; }

.logo { display: flex; align-items: center; }

.logo-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  padding: 6px 10px;
  /* Sem borda, sem círculo — limpo e profissional */
  box-shadow: 0 4px 20px rgba(10, 31, 68, 0.22);
  transition: box-shadow var(--transition), transform var(--transition);
}

.logo-img-wrap:hover {
  box-shadow: 0 6px 28px rgba(10, 31, 68, 0.32);
  transform: translateY(-1px);
}

.logo-img-wrap img {
  height: 58px;       /* Grande o suficiente para ter presença */
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navbar rolada: sem sombra extra — o fundo branco já une */
.navbar.scrolled .logo-img-wrap {
  box-shadow: none;
  border-radius: 12px;
}

/* Logo no footer — um pouco menor */
.footer-logo-img-wrap {
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}
.footer-logo-img-wrap img {
  height: 44px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a:not(.btn-nav) {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav-links a:not(.btn-nav):hover { color: var(--blue-300); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--gray-700); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 50%, var(--blue-600) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--white);
  will-change: transform;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation: float 8s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; animation: float 10s ease-in-out infinite reverse; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 15%; animation: float 6s ease-in-out infinite 2s; opacity: 0.05; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50%       { transform: translateY(-20px) translateZ(0); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* Nome da marca no H1 para SEO — aparece como label discreta acima do título */
.hero-brand {
  display: block;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .highlight { color: var(--blue-300); }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.7s ease 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-num { font-family: 'Sora', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--white); }
.trust-item span:last-child { font-size: 0.78rem; color: rgba(255,255,255,0.65); }
.trust-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.2); margin: 0 32px; }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===========================
   PARTNER BAR
   =========================== */
.partner-bar {
  background: var(--blue-800);
  padding: 16px 0;
  overflow: hidden;
}
.partner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}
.partner-inner > span {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Carrossel infinito (marquee) das soluções — evita quebra de linha
   em telas pequenas e fica sempre responsivo */
.partner-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.partner-track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}
.partner-marquee:hover .partner-track { animation-play-state: paused; }

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.15);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===========================
   SECTION HEADERS
   =========================== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
}

/* ===========================
   PRODUCTS CAROUSEL — 7 produtos
   =========================== */
.products-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 4px 20px;
  /* esconde a barra de rolagem nativa, sem custo de JS */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.products-grid::-webkit-scrollbar { display: none; }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}
.product-card:hover {
  border-color: var(--blue-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

/* Setas de navegação do carrossel */
.carousel-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--blue-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.carousel-arrow:hover {
  background: var(--blue-500);
  border-color: var(--blue-500);
  color: var(--white);
}
.carousel-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-200);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), width var(--transition);
}
.carousel-dot.active {
  background: var(--blue-500);
  width: 22px;
  border-radius: 4px;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon svg { color: var(--white); }
.bg-blue-light { background: linear-gradient(135deg, var(--blue-400), var(--blue-500)); }
.bg-blue-mid { background: linear-gradient(135deg, var(--blue-600), var(--blue-700)); }
.bg-blue-dark { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); }

.product-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-900);
}
.product-card p { color: var(--gray-500); font-size: 0.92rem; flex: 1; }

.product-benefits { display: flex; flex-direction: column; gap: 6px; }
.product-benefits li { font-size: 0.85rem; color: var(--gray-700); }

.product-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.product-actions .btn {
  flex: 1 1 calc(50% - 4px);
  justify-content: center;
  text-align: center;
  white-space: normal;
}
.product-actions .btn-whatsapp {
  border-color: var(--blue-500);
}

/* ===========================
   QUOTE SECTION
   =========================== */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.tools-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.tools-list { display: flex; flex-direction: column; gap: 12px; }

.tool-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.tool-link:hover {
  border-color: var(--blue-400);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.12);
  transform: translateX(4px);
}

.tool-icon { font-size: 1.6rem; flex-shrink: 0; }
.tool-info { flex: 1; }
.tool-info strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--gray-900); }
.tool-info span { font-size: 0.8rem; color: var(--gray-500); }
.tool-arrow { color: var(--blue-400); flex-shrink: 0; }

.tools-note {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 20px;
  padding: 14px;
  background: var(--blue-50);
  border-radius: var(--radius);
  font-size: 0.83rem;
  color: var(--blue-700);
}
.tools-note svg { flex-shrink: 0; margin-top: 2px; }

/* FORM CARD */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
}
.form-header {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  padding: 28px 32px;
  color: var(--white);
}
.form-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.form-header p { font-size: 0.9rem; opacity: 0.85; }

form { padding: 28px 32px; display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}
.field-error { font-size: 0.78rem; color: #ef4444; min-height: 16px; }

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* ===========================
   CONSÓRCIO
   =========================== */
.consorcio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 64px;
}

.consorcio-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.consorcio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.consorcio-card-featured {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  border-color: transparent;
  color: var(--white);
}
.consorcio-card-featured h3 { color: var(--white); }
.consorcio-card-featured p { color: rgba(255,255,255,0.82); }

.consorcio-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.consorcio-icon { font-size: 2.5rem; }
.consorcio-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.consorcio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  background: var(--blue-100);
  color: var(--blue-700);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.tag-white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}

.consorcio-why { }
.consorcio-why h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.why-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow); }
.why-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.why-item strong { display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.why-item p { font-size: 0.82rem; color: var(--gray-500); }

/* ===========================
   SOBRE
   =========================== */
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.sobre-text { display: flex; flex-direction: column; gap: 20px; }
.sobre-text p { color: var(--gray-500); font-size: 0.97rem; }
.sobre-nums {
  display: flex;
  gap: 32px;
  padding-top: 16px;
  border-top: 1.5px solid var(--gray-200);
}
.num-item { display: flex; flex-direction: column; }
.num-item strong { font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--blue-600); }
.num-item span { font-size: 0.8rem; color: var(--gray-500); }

.sobre-badges { display: flex; flex-direction: column; gap: 20px; }
.badge-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.badge-card:hover { border-color: var(--blue-300); box-shadow: var(--shadow); }
.badge-icon { font-size: 1.8rem; flex-shrink: 0; }
.badge-card h4 { font-family: 'Sora', sans-serif; font-size: 0.97rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.badge-card p { font-size: 0.83rem; color: var(--gray-500); }

/* ===========================
   FAQ
   =========================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: var(--blue-300); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--gray-900);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue-600); }

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--blue-500);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { padding: 0 24px; font-size: 0.9rem; color: var(--gray-500); }

/* ===========================
   CTA FINAL
   =========================== */
.cta-final {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  background: var(--white);
}
.cta-shape-1 { width: 500px; height: 500px; top: -200px; right: -100px; }
.cta-shape-2 { width: 300px; height: 300px; bottom: -100px; left: 5%; }

.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
.footer { background: var(--gray-900); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand { max-width: 340px; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 14px; line-height: 1.7; }
.footer-small { font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important; margin-top: 12px !important; }

.footer-links { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-300); }

.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ===========================
   WHATSAPP FLUTUANTE
   =========================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 200;
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { color: var(--white); }
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid var(--green-wa);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===========================
   RESPONSIVIDADE
   =========================== */
@media (max-width: 1024px) {
  .product-card { flex: 0 0 calc((100% - 24px) / 2); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Navbar mobile */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 101;
  }
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn-nav) { font-size: 1.2rem; color: var(--white) !important; }

  /* Hamburger vira "X" quando o menu está aberto, e fica sempre branco
     sobre o fundo escuro do menu mobile, garantindo que o usuário
     consiga fechar o menu clicando nele */
  .hamburger.open span { background: var(--white) !important; }
  .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); }

  .hero { min-height: auto; padding: 100px 0 64px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .trust-sep { margin: 0 20px; }

  .product-card { flex: 0 0 85%; }
  .carousel-arrow { display: none; }
  .products-carousel { gap: 0; }

  .quote-grid { grid-template-columns: 1fr; }
  .quote-tools { order: 2; }
  .quote-form-wrap { order: 1; }

  .consorcio-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-nums { gap: 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 340px; }

  form { padding: 24px 20px; }
  .form-header { padding: 24px 20px; }

  .partner-inner { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .hero-trust { gap: 0; }
  .trust-sep { margin: 0 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .sobre-nums { flex-direction: column; gap: 16px; }
}
