/* ==========================================================================
   CÁ ESTAMOS — Landing Page
   Stylesheet principal
   Autor: Marcos | Design: profissional confiável
   ========================================================================== */

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

:root {
  /* Cores principais */
  --primary-blue: #1E40AF;
  --primary-blue-dark: #1E3A8A;
  --primary-blue-light: #DBEAFE;
  --primary-blue-bg: #EFF6FF;

  --accent-orange: #F59E0B;
  --accent-orange-dark: #D97706;
  --accent-orange-light: #FEF3C7;

  --neutral-900: #0F172A;
  --neutral-700: #334155;
  --neutral-600: #475569;
  --neutral-500: #64748B;
  --neutral-400: #94A3B8;
  --neutral-300: #CBD5E1;
  --neutral-200: #E2E8F0;
  --neutral-100: #F1F5F9;
  --neutral-50: #F8FAFC;
  --white: #FFFFFF;

  --success: #10B981;
  --whatsapp: #25D366;

  /* Tipografia */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --container-max: 1200px;
  --section-padding: clamp(60px, 8vw, 120px);
  --card-padding: clamp(24px, 3vw, 32px);

  /* Sombras */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 8px 24px rgba(30, 64, 175, 0.10);
  --shadow-xl: 0 16px 40px rgba(30, 64, 175, 0.12);
  --shadow-cta: 0 8px 20px rgba(245, 158, 11, 0.35);

  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transições */
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* compensa altura do header fixo ao saltar para âncoras */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
  background: none;
}

/* ============ TIPOGRAFIA ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

h4 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--neutral-600);
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}

section {
  padding: var(--section-padding) 0;
}

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

.section-header .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--neutral-600);
  font-size: 1.125rem;
}

/* ============ BOTÕES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.45);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1FA855;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.0625rem;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white) !important;
  border-bottom: 1px solid var(--neutral-200);
  transition: box-shadow var(--transition);
  isolation: isolate;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

/* Garantir que o body não tem nenhuma faixa decorativa no topo */
body::before,
body::after {
  display: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--neutral-900);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 1.125rem;
  box-shadow: var(--shadow-md);
}

/* Logo como imagem (PNG transparente) */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: transform var(--transition);
}

.logo:hover .logo-img {
  transform: scale(1.03);
}

@media (max-width: 480px) {
  .logo-img {
    height: 36px;
  }
}

/* Logo no footer (fundo escuro — o logo já tem cores que funcionam) */
.footer-logo .logo-img {
  height: 48px;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-desktop a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutral-700);
  position: relative;
}

.nav-desktop a:hover {
  color: var(--primary-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Toggle de idioma */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--neutral-100);
  border-radius: var(--radius-full);
  padding: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.lang-toggle button {
  padding: 6px 12px;
  border-radius: var(--radius-full);
  color: var(--neutral-500);
  transition: all var(--transition);
}

.lang-toggle button.active {
  background: var(--white);
  color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.btn-call-header {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  transition: all var(--transition);
}

.btn-call-header svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-call-header:hover {
  background: var(--primary-blue-dark);
  transform: translateY(-1px);
}

/* Menu mobile */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--neutral-900);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-200);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-110%);
  transition: transform var(--transition);
  box-shadow: var(--shadow-md);
}

.nav-mobile.active {
  transform: translateY(0);
}

.nav-mobile a {
  padding: 14px 16px;
  font-weight: 500;
  color: var(--neutral-700);
  border-radius: var(--radius-md);
  transition: background var(--transition);
}

.nav-mobile a:hover {
  background: var(--neutral-100);
  color: var(--primary-blue);
}

.nav-mobile .btn {
  margin-top: 12px;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .btn-call-header {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: 160px; /* espaço para header fixo + margem confortável */
  padding-bottom: 80px;
  background:
    radial-gradient(ellipse at top right, var(--primary-blue-light) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--primary-blue-bg) 100%);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: 180px;
    padding-bottom: 120px;
  }
  .hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
  }
}

.hero-content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--primary-blue-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-content .badge .dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content .lead {
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-size: 0.875rem;
  color: var(--neutral-600);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--success);
}

.hero-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  background: var(--neutral-100);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(30, 64, 175, 0.15));
  pointer-events: none;
}

.hero-stat-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-stat-card.top {
  top: 24px;
  left: -16px;
}

.hero-stat-card.bottom {
  bottom: 24px;
  right: -16px;
}

.hero-stat-card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-stat-card.top .icon {
  background: var(--accent-orange-light);
  color: var(--accent-orange-dark);
}

.hero-stat-card.bottom .icon {
  background: var(--primary-blue-light);
  color: var(--primary-blue);
}

.hero-stat-card .text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--neutral-900);
}

.hero-stat-card .text span {
  font-size: 0.8125rem;
  color: var(--neutral-600);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}

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

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item .icon {
  width: 48px;
  height: 48px;
  background: var(--primary-blue-light);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item .icon svg {
  width: 24px;
  height: 24px;
}

.trust-item .text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 2px;
}

.trust-item .text span {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* ============ COMO FUNCIONA ============ */
.steps {
  background: var(--neutral-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step-card {
  position: relative;
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue-light);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.step-card p {
  color: var(--neutral-600);
  font-size: 0.9375rem;
}

/* ============ SERVIÇOS ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary-blue-bg);
  color: var(--primary-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.05);
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 1.0625rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--neutral-600);
  line-height: 1.55;
}

/* ============ POR QUE NÓS ============ */
.why-us {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.15), transparent 60%);
}

.why-us .section-header h2 {
  color: var(--white);
}

.why-us .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.why-us .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-orange-light);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.why-card .icon {
  width: 52px;
  height: 52px;
  background: var(--accent-orange);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.why-card .icon svg {
  width: 26px;
  height: 26px;
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.125rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
}

/* ============ SOBRE NÓS ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
  background: var(--neutral-100);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-blue);
  background: var(--primary-blue-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 16px;
  font-size: 1.0625rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--neutral-200);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 4px;
}

.about-stat span {
  font-size: 0.875rem;
  color: var(--neutral-600);
}

/* ============ DEPOIMENTOS ============ */
.testimonials {
  background: var(--neutral-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--white);
  padding: var(--card-padding);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--accent-orange);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-200);
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--neutral-900);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

/* ============ FAQ ============ */
.faq-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-blue-light);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--neutral-900);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--primary-blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary-blue);
  color: var(--white);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 0.9375rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.faq-answer-inner strong {
  color: var(--neutral-900);
}

/* ============ COBERTURA ============ */
.coverage {
  background: linear-gradient(135deg, var(--primary-blue-bg) 0%, var(--white) 100%);
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.coverage-content h2 {
  margin-bottom: 16px;
}

.coverage-content p {
  font-size: 1.0625rem;
  color: var(--neutral-600);
  margin-bottom: 24px;
  line-height: 1.65;
}

.coverage-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.coverage-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--neutral-700);
  font-weight: 500;
}

.coverage-list li svg {
  width: 18px;
  height: 18px;
  color: var(--success);
  flex-shrink: 0;
}

.coverage-map {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.coverage-map svg {
  width: 100%;
  height: 100%;
  max-width: 400px;
}

/* ============ CTA FORM ============ */
.cta-form-section {
  background: var(--neutral-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.cta-form-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cta-form-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
  }
}

.cta-form-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.cta-form-content p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 32px;
}

.cta-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-info-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
}

.cta-info-list .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-orange);
  flex-shrink: 0;
}

.cta-info-list svg {
  width: 20px;
  height: 20px;
}

.cta-form {
  background: var(--white);
  padding: clamp(32px, 4vw, 40px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.cta-form h3 {
  color: var(--neutral-900);
  margin-bottom: 8px;
  font-size: 1.375rem;
}

.cta-form-subtitle {
  font-size: 0.9375rem;
  color: var(--neutral-600);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 6px;
}

.form-group label .required {
  color: var(--accent-orange-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: var(--font-body);
  color: var(--neutral-900);
  background: var(--white);
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px var(--primary-blue-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-submit {
  width: 100%;
  padding: 14px 24px;
  background: var(--accent-orange);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  margin-top: 8px;
  box-shadow: var(--shadow-cta);
}

.form-submit:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-1px);
}

.form-submit:active {
  transform: translateY(0);
}

.form-disclaimer {
  font-size: 0.8125rem;
  color: var(--neutral-500);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.form-success {
  display: none;
  padding: 16px;
  background: #ECFDF5;
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  color: #065F46;
  font-size: 0.9375rem;
  text-align: center;
  margin-top: 16px;
}

.form-success.active {
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--neutral-900);
  color: var(--neutral-400);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-400);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--neutral-400);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--neutral-500);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ============ WHATSAPP FLUTUANTE ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  background: #1FA855;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@keyframes whatsapp-pulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0);
  }
}

/* ============ ANIMAÇÕES ============ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============ RESPONSIVO HERO STAT CARDS ============ */
@media (max-width: 767px) {
  .hero-stat-card {
    padding: 12px 14px;
  }
  .hero-stat-card.top {
    left: 8px;
  }
  .hero-stat-card.bottom {
    right: 8px;
  }
  .hero-stat-card .icon {
    width: 36px;
    height: 36px;
  }
  .hero-stat-card .text strong {
    font-size: 0.9375rem;
  }
  .hero-stat-card .text span {
    font-size: 0.75rem;
  }
}

/* ============================================================
   OVERRIDE FINAL — eliminar qualquer faixa laranja no topo
   ============================================================ */
html, body {
  background: var(--white) !important;
}

/* Remover todos os pseudo-elementos no topo do body */
body > *::before {
  display: none !important;
}
.hero::before,
.hero::after {
  display: none !important;
  content: none !important;
}

/* Remover qualquer background laranja em elementos full-width no topo */
.header,
.header *,
.hero,
.hero > .container,
.hero-content,
.hero-image {
  background-image: none;
}

.header {
  background-color: #FFFFFF !important;
  background-image: none !important;
}

/* Garantir que o body não tem padding/margin extras */
body {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 0 !important;
}

html {
  margin: 0 !important;
  padding: 0 !important;
}

/* Reaplica o gradient do hero apenas porque sobrescrevemos acima */
.hero {
  background-image:
    radial-gradient(ellipse at top right, var(--primary-blue-light) 0%, transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--primary-blue-bg) 100%) !important;
}
