/* =========================================
   STW BRASIL — Landing Page Styles
   Paleta: Preto #0a0a0a | Laranja #F15A22
   ========================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #F15A22;
  --orange-dark:   #C94910;
  --orange-light:  #FF7A45;
  --orange-glow:   rgba(241, 90, 34, 0.18);
  --orange-glow2:  rgba(241, 90, 34, 0.07);
  --orange-border: rgba(241, 90, 34, 0.28);

  --black:   #0a0a0a;
  --black-2: #111111;
  --black-3: #181818;
  --black-4: #222222;
  --black-5: #0e0e0e;

  --white:    #ffffff;
  --white-80: rgba(255,255,255,0.80);
  --white-60: rgba(255,255,255,0.60);
  --white-40: rgba(255,255,255,0.40);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-06: rgba(255,255,255,0.06);
  --white-04: rgba(255,255,255,0.04);

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

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BOTÕES
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 16px 36px;
  font-size: 0.95rem;
  box-shadow: 0 8px 32px rgba(241, 90, 34, 0.35);
}
.btn--primary:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 12px 48px rgba(241, 90, 34, 0.55);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 20px 44px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange-border);
  padding: 14px 32px;
  font-size: 0.95rem;
}
.btn--outline:hover {
  background: var(--orange-glow);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.btn--full { width: 100%; }

/* Pulsação no CTA principal */
@keyframes btnPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(241,90,34,0.35); }
  50%       { box-shadow: 0 12px 60px rgba(241,90,34,0.65); }
}
.pulse-btn { animation: btnPulse 2.5s ease infinite; }
.pulse-btn:hover { animation: none; }

/* =========================================
   EYEBROW / SECTION HEADER (compartilhado)
   ========================================= */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-title {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.section-header .section-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================
   ANIMAÇÕES AOS (scroll fade-in)
   ========================================= */
@keyframes fadeUp   { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform: translateY(-28px); } to { opacity:1; transform: translateY(0); } }
@keyframes pulse    { 0%,100%{opacity:1; transform:scale(1);} 50%{opacity:.6; transform:scale(1.4);} }

/* =========================================
   BLOCO 1 — HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding: 80px 0 120px;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(130px);
}
.hero__glow--left {
  background: radial-gradient(circle, rgba(241,90,34,0.22) 0%, transparent 70%);
  top: -100px; left: -200px;
}
.hero__glow--right {
  background: radial-gradient(circle, rgba(241,90,34,0.14) 0%, transparent 70%);
  bottom: -100px; right: -200px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Logo */
.hero__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeDown 0.7s ease forwards;
}
/* Ícone SVG direto — sem box/borda (fiel ao logo real) */
.logo-icon {
  flex-shrink: 0;
  display: block;
}
.logo-icon--sm {
  opacity: 0.9;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.logo-stw {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1;
}
.logo-brasil {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--white-60);
  text-transform: uppercase;
  padding-left: 2px;
}

/* Eyebrow */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}
.eyebrow-dot {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}

/* Headline */
.hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 860px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.25s forwards;
}

/* Sub */
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--white-60);
  max-width: 640px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}
.hero__sub strong { color: var(--white-80); }
.hero__sub-badge {
  display: block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.03em;
}

/* CTA */
.hero__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}
.hero__cta-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white-40);
  font-weight: 500;
}
.hero__cta-note svg { color: var(--orange); flex-shrink: 0; }

/* Divider */
.hero__divider {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 700px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.55s forwards;
}
.divider-rule {
  flex: 1;
  height: 1px;
  background: var(--white-10);
}
.divider-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  white-space: nowrap;
}

/* Trust grid */
.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 900px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  transition: var(--transition);
}
.trust-card:hover {
  background: var(--white-06);
  border-color: var(--orange-border);
}
.trust-card__icon {
  width: 44px; height: 44px;
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.trust-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.trust-card__text strong {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}
.trust-card__text span {
  font-size: 0.75rem;
  color: var(--white-60);
  line-height: 1.3;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.7s ease 1.2s forwards;
}
.scroll-indicator__mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--white-20);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator__wheel {
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0);   opacity: 1; }
  80%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);   opacity: 0; }
}

/* =========================================
   RESPONSIVO — HERO
   ========================================= */
@media (max-width: 900px) {
  .hero__trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .hero {
    padding: 60px 0 100px;
  }
  .hero__headline {
    font-size: 2.1rem;
  }
  .hero__trust {
    grid-template-columns: 1fr;
  }
  .hero__divider {
    gap: 14px;
  }
  .divider-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }
  .btn--lg {
    padding: 18px 28px;
    font-size: 0.95rem;
  }
}

/* =========================================
   BLOCO 2 — SERVIÇOS
   ========================================= */
.services-section {
  position: relative;
  background: var(--black-2);
  padding: 120px 0;
  overflow: hidden;
}

/* Grade decorativa de fundo */
.services-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Grid de cards 3 colunas */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

/* Card de serviço */
.service-card {
  position: relative;
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px var(--orange-border);
}
.service-card:hover::before {
  opacity: 1;
}

/* Ícone */
.service-card__icon {
  width: 54px; height: 54px;
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--orange-glow);
  box-shadow: 0 0 24px rgba(241,90,34,0.25);
}

/* Badge "mais solicitado" */
.service-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Título */
.service-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

/* Descrição */
.service-card__desc {
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.7;
  flex: 1;
}

/* Lista */
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--white-06);
}
.service-card__list li {
  font-size: 0.85rem;
  color: var(--white-60);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* CTA do bloco */
.services-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
}
.services-cta__text {
  font-size: 1.1rem;
  color: var(--white-60);
  max-width: 540px;
  line-height: 1.7;
}
.services-cta__text strong {
  color: var(--white);
}

/* ---- Responsivo ---- */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 80px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .services-cta {
    padding: 36px 24px;
  }
}

/* =========================================
   BLOCO 3 — DADOS ALARMANTES
   ========================================= */
.stats-section {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}

.stats-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(241,90,34,0.07) 0%, transparent 70%);
  pointer-events: none;
}

/* Números grandes */
.stats-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.stat-num-card {
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  padding: 32px 24px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.stat-num-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.5;
}
.stat-num-card--alert {
  border-color: var(--orange-border);
  background: linear-gradient(160deg, var(--black-3) 60%, rgba(241,90,34,0.06) 100%);
}
.stat-num-card__value {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.stat-num-card__label {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.5;
  margin-bottom: 12px;
}
.stat-num-card__source {
  font-size: 0.72rem;
  color: var(--white-40);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Divisor central */
.stats-divider {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.stats-divider__line {
  flex: 1;
  height: 1px;
  background: var(--white-10);
}
.stats-divider__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-40);
  white-space: nowrap;
}

/* Duas colunas PF / PJ */
.stats-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.stats-col {
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}

.stats-col__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--white-06);
}
.stats-col__icon {
  width: 48px; height: 48px;
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.stats-col__header h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}

.stats-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stats-col__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.scl-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.scl-icon--red {
  background: rgba(239, 68, 68, 0.12);
  color: #ef4444;
  border: 1px solid rgba(239,68,68,0.2);
}

.scl-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.scl-text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.scl-text span {
  font-size: 0.83rem;
  color: var(--white-60);
  line-height: 1.55;
}

/* Alerta final */
.stats-alert {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(241,90,34,0.1) 0%, rgba(241,90,34,0.04) 100%);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  flex-wrap: wrap;
}
.stats-alert__icon {
  width: 48px; height: 48px;
  background: rgba(241,90,34,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.stats-alert p {
  flex: 1;
  font-size: 0.95rem;
  color: var(--white-60);
  line-height: 1.65;
  min-width: 240px;
}
.stats-alert p strong {
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

/* ---- Responsivo ---- */
@media (max-width: 960px) {
  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .stats-section { padding: 80px 0; }
  .stats-numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-columns { grid-template-columns: 1fr; }
  .stats-alert { flex-direction: column; text-align: center; }
  .stats-alert__icon { margin: 0 auto; }
}

@media (max-width: 420px) {
  .stats-numbers { grid-template-columns: 1fr; }
  .stats-col { padding: 28px 20px; }
}

/* =========================================
   BLOCO 4 — FORMULÁRIO / DIAGNÓSTICO
   ========================================= */
.diag-section {
  position: relative;
  background: var(--black-2);
  padding: 120px 0;
  overflow: hidden;
}

.diag-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(120px);
}
.diag-glow--left {
  background: radial-gradient(circle, rgba(241,90,34,0.12) 0%, transparent 70%);
  top: -100px; left: -150px;
}
.diag-glow--right {
  background: radial-gradient(circle, rgba(241,90,34,0.08) 0%, transparent 70%);
  bottom: -100px; right: -150px;
}

/* Layout 2 colunas */
.diag-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* --- Lado esquerdo: info --- */
.diag-info { display: flex; flex-direction: column; gap: 0; }

.diag-info .section-eyebrow { margin-bottom: 20px; align-self: flex-start; }

.diag-info__title {
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
}

.diag-info__sub {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.7;
  margin-bottom: 40px;
}
.diag-info__sub strong { color: var(--orange); }

/* Steps */
.diag-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  position: relative;
}
.diag-steps::before {
  content: '';
  position: absolute;
  left: 19px; top: 40px; bottom: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), rgba(241,90,34,0.1));
}

.diag-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 0 32px;
  position: relative;
}
.diag-step:last-child { padding-bottom: 0; }

.diag-step__num {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(241,90,34,0.15);
}

.diag-step__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 8px;
}
.diag-step__body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.diag-step__body span {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.6;
}

/* Mini trust */
.diag-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.diag-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.87rem;
  color: var(--white-60);
}
.diag-trust__item svg { color: var(--orange); flex-shrink: 0; }

/* --- Lado direito: form card --- */
.diag-form-wrap { position: sticky; top: 32px; }

.form-card {
  background: var(--black-3);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}

.form-card__header {
  background: linear-gradient(135deg, rgba(241,90,34,0.12) 0%, rgba(241,90,34,0.04) 100%);
  border-bottom: 1px solid var(--white-06);
  padding: 28px 32px 24px;
  text-align: center;
}
.form-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.form-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.form-card__sub {
  font-size: 0.88rem;
  color: var(--white-60);
}

/* Form */
.lead-form {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  position: relative;
}
.form-group label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--white-80);
}
.req { color: var(--orange); }

.form-group input {
  background: var(--black-4);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  padding: 13px 16px;
  width: 100%;
  outline: none;
  transition: var(--transition);
}
.form-group input::placeholder { color: var(--white-40); }
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(241,90,34,0.15);
  background: var(--black-3);
}

/* Erro inline */
.form-error {
  font-size: 0.78rem;
  color: #ef4444;
  display: none;
}
.form-group.has-error input,
.form-check.has-error .check-label {
  border-color: #ef4444 !important;
}
.form-group.has-error .form-error,
.form-check.has-error .form-error { display: block; }

/* Row 2 colunas */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Checkbox de autorização */
.form-check {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.check-label input[type="checkbox"] { display: none; }

.check-box {
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--black-4);
  border: 2px solid var(--white-20);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: var(--transition);
}
.check-box svg { opacity: 0; transition: var(--transition); }

.check-label input:checked + .check-box {
  background: var(--orange);
  border-color: var(--orange);
}
.check-label input:checked + .check-box svg { opacity: 1; }

.check-text {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.6;
}
.check-text strong { color: var(--white-80); font-weight: 600; }
.check-link { color: var(--orange); text-decoration: underline; }
.check-optional { color: var(--white-40); font-size: 0.78rem; }

/* Botão submit */
.btn--submit {
  font-size: 1rem;
  padding: 18px;
  margin-top: 4px;
  border-radius: var(--radius-md);
}

/* Privacidade */
.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-40);
  text-align: center;
}
.form-privacy svg { color: var(--orange); flex-shrink: 0; }

/* ---- Responsivo ---- */
@media (max-width: 960px) {
  .diag-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .diag-form-wrap { position: static; }
}

@media (max-width: 540px) {
  .diag-section { padding: 80px 0; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form { padding: 24px 20px 28px; }
  .form-card__header { padding: 24px 20px 20px; }
  .diag-steps::before { display: none; }
}

/* =========================================
   BLOCO 5 — QUEM SOMOS
   ========================================= */
.about-section {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
}

.about-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Layout 2 colunas */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 80px;
}

/* Texto */
.about-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-text p {
  font-size: 1rem;
  color: var(--white-60);
  line-height: 1.8;
}
.about-text p strong { color: var(--white); font-weight: 700; }

/* Stats grid 2x3 */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.about-stat:hover {
  border-color: var(--orange-border);
  background: linear-gradient(135deg, var(--black-3), rgba(241,90,34,0.05));
}
.about-stat__value {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.about-stat p {
  font-size: 0.82rem;
  color: var(--white-60);
  line-height: 1.45;
}

/* Card especial "maior laboratório" */
.about-stat--badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(241,90,34,0.1) 0%, rgba(241,90,34,0.04) 100%);
  border-color: var(--orange-border);
}
.about-stat__badge-icon {
  width: 52px; height: 52px;
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}
.about-stat--badge p { color: var(--white-80); }
.about-stat--badge p strong { color: var(--orange); display: block; font-size: 0.95rem; }

/* Clientes */
.about-clients {
  text-align: center;
}
.about-clients__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  margin-bottom: 28px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.client-logo {
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}
.client-logo:hover {
  color: var(--white-80);
  border-color: var(--white-20);
  background: var(--white-06);
}

/* ---- Responsivo ---- */
@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 540px) {
  .about-section { padding: 80px 0; }
  .about-stats { grid-template-columns: 1fr; }
  .clients-grid { gap: 8px; }
  .client-logo { font-size: 0.75rem; padding: 8px 14px; }
}

/* =========================================
   BLOCO 6 — RISCOS
   ========================================= */
.risks-section {
  position: relative;
  background: var(--black-2);
  padding: 120px 0;
  overflow: hidden;
}

.risks-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(239,68,68,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Grid 3x2 */
.risks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* Card de risco */
.risk-card {
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.risk-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239,68,68,0.6), transparent);
  opacity: 0;
  transition: var(--transition);
}
.risk-card:hover {
  border-color: rgba(239,68,68,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.risk-card:hover::after { opacity: 1; }

.risk-card__icon {
  width: 52px; height: 52px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
}

.risk-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.risk-card__desc {
  font-size: 0.88rem;
  color: var(--white-60);
  line-height: 1.7;
  flex: 1;
}
.risk-card__desc strong { color: var(--white-80); }

.risk-card__tag {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-40);
  background: var(--white-04);
  border: 1px solid var(--white-06);
  padding: 3px 10px;
  border-radius: 100px;
}
.risk-card__tag--red {
  color: #ef4444;
  background: rgba(239,68,68,0.08);
  border-color: rgba(239,68,68,0.2);
}

/* Banner de urgência */
.risks-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--black-3) 0%, rgba(241,90,34,0.06) 100%);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  flex-wrap: wrap;
}
.risks-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  min-width: 280px;
}
.risks-banner__icon {
  width: 56px; height: 56px;
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.risks-banner__content h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.risks-banner__content p {
  font-size: 0.9rem;
  color: var(--white-60);
  line-height: 1.7;
}

/* ---- Responsivo ---- */
@media (max-width: 960px) {
  .risks-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .risks-section { padding: 80px 0; }
  .risks-grid { grid-template-columns: 1fr; gap: 14px; }
  .risks-banner { flex-direction: column; padding: 28px 24px; }
  .risks-banner__content { flex-direction: column; }
}

/* =========================================
   BLOCO 7 — URGÊNCIA
   ========================================= */
.urgency-section {
  position: relative;
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.urgency-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(241,90,34,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.urgency-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow2);
  border: 1px solid var(--orange-border);
  padding: 8px 22px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.urgency-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 28px;
}

.urgency-sub {
  font-size: 1.05rem;
  color: var(--white-60);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 40px;
}

.urgency-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 40px;
}
.urgency-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--white-60);
}
.urgency-point svg { color: var(--orange); flex-shrink: 0; }
.urgency-point strong { color: var(--white); }

.urgency-note {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--white-40);
}
.urgency-note strong { color: var(--white-60); }

@media (max-width: 540px) {
  .urgency-section { padding: 80px 0; }
  .urgency-title { font-size: 2rem; }
  .urgency-points { flex-direction: column; align-items: center; }
}

/* =========================================
   BLOCO 8 — FAQ
   ========================================= */
.faq-section {
  background: var(--black-2);
  padding: 120px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--black-3);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--orange-border);
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: var(--transition);
}
.faq-btn:hover { color: var(--orange); }
.faq-item.open .faq-btn { color: var(--orange); }

.faq-icon {
  width: 32px; height: 32px;
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--orange-glow2);
  border-color: var(--orange-border);
  color: var(--orange);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 24px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--white-60);
  line-height: 1.8;
  border-top: 1px solid var(--white-06);
  padding-top: 18px;
}

/* CTA pós-FAQ */
.faq-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.faq-cta p {
  font-size: 1rem;
  color: var(--white-60);
}

@media (max-width: 540px) {
  .faq-section { padding: 80px 0; }
  .faq-btn { font-size: 0.9rem; padding: 18px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 20px; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--black);
  border-top: 1px solid var(--white-06);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--white-06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--white-40);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--white-40);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--white-40);
}

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* =========================================
   MELHORIAS: Skip-link + Sticky CTA + AOS no CSS
   ========================================= */

/* Skip-to-content (acessibilidade) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: top 0.2s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 16px;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 24px;
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-wrap: wrap;
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__text {
  font-size: 0.88rem;
  color: var(--white-60);
  white-space: nowrap;
}
.sticky-cta__text strong { color: var(--white); }
.sticky-cta__btn {
  padding: 10px 22px;
  font-size: 0.82rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
}

/* AOS — movido do JS para o CSS (elimina CLS) */
[data-aos] {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
}
[data-aos="fade-up"]    { transform: translateY(32px); }
[data-aos="fade-down"]  { transform: translateY(-32px); }
[data-aos="fade-left"]  { transform: translateX(32px); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-in"]    { transform: none; }
.aos--visible { opacity: 1 !important; transform: translate(0,0) !important; }

@media (max-width: 480px) {
  .sticky-cta__text { display: none; }
  .sticky-cta { justify-content: center; padding: 8px 16px; }
  .sticky-cta__btn { width: 100%; max-width: 320px; }
}
