/* ============================================================
   BENETTY 360 — Landing Page Principal (Internet / Tráfego Pago)
   style.css
   ============================================================ */

/* ===== VARIÁVEIS ===== */
:root {
  --bg:           #070e1e;
  --bg2:          #0b1527;
  --bg3:          #0f1d33;
  --card-bg:      #0d1a2e;
  --card-bg2:     #101f35;
  --border:       #162640;
  --border-glow:  #1c3458;
  --cyan:         #00c8ff;
  --blue:         #2563eb;
  --blue-mid:     #1e40af;
  --blue-light:   #3b82f6;
  --white:        #eef4ff;
  --gray-1:       #8fa5bf;
  --gray-2:       #5a7799;
  --gray-3:       #374f6a;
  --error:        #f05454;
  --inp-bg:       #091422;
  --inp-border:   #172d4a;
  --radius-lg:    20px;
  --radius-md:    12px;
  --radius-sm:    8px;
  --transition:   0.22s ease;
  --nav-h:        72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ===== UTILITÁRIOS ===== */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.22;
  max-width: 560px;
}

.section-header.center .section-title {
  max-width: 600px;
  margin: 0 auto;
}

/* ===================================================
   NAVEGAÇÃO
   =================================================== */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(7, 14, 30, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(7, 14, 30, 0.97);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo nav */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Botão CTA nav */
.nav-cta-btn {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--cyan);
  border: 1px solid rgba(0, 200, 255, 0.35);
  border-radius: 100px;
  padding: 9px 22px;
  letter-spacing: 0.4px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: rgba(0, 200, 255, 0.1);
  border-color: var(--cyan);
}

/* ===================================================
   HERO
   =================================================== */

/*
  IMAGEM DE FUNDO DO HERO
  Salve sua imagem como "hero.jpg" nesta mesma pasta.
  Recomendado: foto de carro escura, dramática, horizontal.
  Se o arquivo não existir, o fundo com gradiente é exibido automaticamente.
*/
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

/* Imagem de fundo — ativa se hero.jpg existir */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay gradiente — garante legibilidade sempre */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg,
      rgba(7, 14, 30, 0.97) 0%,
      rgba(7, 14, 30, 0.92) 30%,
      rgba(7, 14, 30, 0.75) 58%,
      rgba(7, 14, 30, 0.45) 100%),
    radial-gradient(ellipse 72% 72% at 6% 52%, rgba(30, 64, 175, 0.30) 0%, transparent 58%),
    radial-gradient(ellipse 45% 55% at 95% 8%, rgba(0, 200, 255, 0.09) 0%, transparent 52%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero — texto */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(238, 244, 255, 0.78);
  line-height: 1.72;
  margin-bottom: 34px;
  max-width: 490px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--blue) 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 32px rgba(0, 130, 220, 0.35);
  text-decoration: none;
}

.btn-hero svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-hero:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0, 130, 220, 0.45); }
.btn-hero:active { transform: translateY(0); }

/* Tags de benefício rápido abaixo do CTA */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(238, 244, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 5px 13px;
  backdrop-filter: blur(4px);
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 6px var(--cyan);
}

/* Hero — visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.hv-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.hv-glow-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.28) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hv-glow-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 200, 255, 0.15) 0%, transparent 70%);
  top: 30%;
  left: 55%;
  transform: translate(-50%, -50%);
  animation: pulseGlow 4s ease-in-out 2s infinite;
}

.hv-shield-wrap {
  position: relative;
  width: 300px;
  height: 350px;
}

.hv-shield-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 200, 255, 0.18));
}

/* Floating badges no hero */
.hv-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(13, 26, 46, 0.9);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  padding: 8px 16px 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-1);
  backdrop-filter: blur(6px);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.hv-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-badge-icon svg { width: 14px; height: 14px; }

.hv-badge-1 {
  top: -8px;
  left: -90px;
  animation: floatBadge 3.5s ease-in-out infinite;
}

.hv-badge-2 {
  top: 38%;
  right: -96px;
  animation: floatBadge 3.5s ease-in-out 1.2s infinite;
}

.hv-badge-3 {
  bottom: 20px;
  left: -60px;
  animation: floatBadge 3.5s ease-in-out 2.2s infinite;
}

/* ===================================================
   BENEFÍCIOS
   =================================================== */
.benefits-section {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.12), transparent);
}

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

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  border-color: rgba(0, 200, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 200, 255, 0.06);
}

.benefit-card:hover::before { opacity: 1; }

.bc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(0, 200, 255, 0.15));
  border: 1px solid rgba(0, 200, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--cyan);
}

.bc-icon svg { width: 22px; height: 22px; }

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.65;
}

/* ===================================================
   COMO FUNCIONA
   =================================================== */
.how-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.how-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 0 28px;
  border-right: 1px solid var(--border);
}

.step:first-child { padding-left: 0; }
.step:last-child { border-right: none; padding-right: 0; }

.step-top {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.step-num {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-mid), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 24px rgba(0, 200, 255, 0.25);
}

.step-connector {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 200, 255, 0.3), transparent);
  margin-left: 18px;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step p {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.65;
}

/* ===================================================
   CONFIANÇA / CREDIBILIDADE
   =================================================== */
.trust-section {
  padding: 60px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border-glow);
  border-bottom: 1px solid var(--border-glow);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.trust-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
}

.trust-divider {
  width: 1px;
  height: 48px;
  background: var(--border-glow);
}

.ti-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}

.ti-icon svg { width: 18px; height: 18px; }

.ti-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ti-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.ti-text span {
  font-size: 0.76rem;
  color: var(--gray-2);
  line-height: 1.3;
}

/* ===================================================
   SEÇÃO FORMULÁRIO
   =================================================== */
.form-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 80% at 90% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 30%, rgba(0, 200, 255, 0.06) 0%, transparent 50%),
    var(--bg);
  position: relative;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.1), transparent);
}

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

/* Texto esquerdo */
.form-left { padding-top: 8px; }

.form-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.form-section-sub {
  font-size: 1rem;
  color: var(--gray-1);
  line-height: 1.7;
  margin-bottom: 36px;
}

.form-trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-trust-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-1);
}

.ftl-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan);
}

.ftl-check svg { width: 12px; height: 12px; }

/* Card do formulário */
.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow:
    0 0 0 1px rgba(0, 200, 255, 0.04),
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 8px 24px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.5), transparent);
}

.form-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ===== CAMPOS ===== */
.field-group { margin-bottom: 18px; }

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

.field-row .field-group { margin-bottom: 0; }

.field-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 7px;
}

.req { color: var(--cyan); font-weight: 800; }

.opt {
  color: var(--gray-3);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.7rem;
}

.field-group input,
.field-group textarea {
  width: 100%;
  background: var(--inp-bg);
  border: 1px solid var(--inp-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--white);
  font-size: 0.93rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--gray-3); }

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, 0.1);
}

.field-group input.has-error,
.field-group textarea.has-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(240, 84, 84, 0.1);
}

.field-group textarea { resize: vertical; min-height: 84px; line-height: 1.55; }

.field-error {
  display: block;
  font-size: 0.73rem;
  color: var(--error);
  margin-top: 5px;
  min-height: 14px;
  line-height: 1.4;
}

/* ===== LGPD ===== */
.lgpd-box {
  background: rgba(30, 64, 175, 0.08);
  border: 1px solid rgba(30, 64, 175, 0.22);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 22px;
}

.lgpd-text {
  font-size: 0.77rem;
  color: var(--gray-2);
  line-height: 1.6;
  margin-bottom: 14px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--cyan);
}

.checkbox-row label {
  font-size: 0.82rem;
  color: var(--gray-1);
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-link {
  color: var(--cyan);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 200, 255, 0.3);
  transition: color var(--transition), border-color var(--transition);
}

.privacy-link:hover { color: var(--white); border-color: var(--white); }

/* ===== BOTÃO ENVIAR ===== */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, var(--blue-mid) 0%, #0ea5e9 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 24px rgba(0, 130, 220, 0.3);
  font-family: inherit;
  margin-top: 4px;
}

.btn-submit svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-submit:hover { opacity: 0.88; transform: translateY(-1px); box-shadow: 0 10px 32px rgba(0, 130, 220, 0.4); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== FEEDBACK DE ENVIO ===== */
.form-feedback {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 14px;
}

.form-feedback--success {
  display: block;
  background: rgba(0, 180, 90, 0.1);
  border: 1px solid rgba(0, 180, 90, 0.3);
  color: #4ade80;
}

.form-feedback--error {
  display: block;
  background: rgba(240, 84, 84, 0.1);
  border: 1px solid rgba(240, 84, 84, 0.3);
  color: var(--error);
}

/* ===================================================
   RODAPÉ
   =================================================== */
.footer {
  background: #040b18;
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

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

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-tagline p {
  font-size: 0.82rem;
  color: var(--gray-2);
  line-height: 1.7;
}

.footer-contacts {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.footer-contacts a {
  font-size: 0.78rem;
  color: var(--gray-2);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.footer-contacts a:hover { color: var(--cyan); }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 22px;
}

.footer-legal {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
}

.footer-legal p {
  font-size: 0.73rem;
  color: var(--gray-3);
  line-height: 1.8;
}

.footer-legal strong {
  color: var(--gray-2);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: var(--gray-3);
}

.footer-privacy-link {
  font-size: 0.73rem;
  color: var(--gray-2);
  border-bottom: 1px solid var(--gray-3);
  transition: color var(--transition);
}

.footer-privacy-link:hover { color: var(--cyan); border-color: var(--cyan); }

/* ===================================================
   MODAL
   =================================================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 22, 0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal-overlay.active { display: flex; }

.modal-box {
  background: var(--card-bg);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray-2);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color var(--transition);
  font-family: inherit;
}

.modal-close-btn:hover { color: var(--white); }

.modal-box h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal-body h3 {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 22px 0 8px;
}

.modal-body h3:first-child { margin-top: 0; }

.modal-body p {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.7;
}

.btn-modal-close {
  margin-top: 28px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 11px 28px;
  font-size: 0.87rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--transition);
  font-family: inherit;
}

.btn-modal-close:hover { opacity: 0.85; }

/* ===================================================
   ANIMAÇÕES
   =================================================== */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-9px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.08); }
}

/* ===================================================
   RESPONSIVO
   =================================================== */

/* --- Tablet/Médio (max 1024px) --- */
@media (max-width: 1024px) {
  .trust-band {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }

  .trust-divider { display: none; }

  .trust-item { padding: 8px 12px; }

  .hero-inner { gap: 40px; }

  .hero-title { font-size: 2.4rem; }

  .hv-shield-wrap { width: 260px; height: 300px; }

  .hv-badge-1 { left: -50px; }
  .hv-badge-2 { right: -60px; }
}

/* --- Tablet (max 900px) --- */
@media (max-width: 900px) {
  .section-inner { padding: 0 32px; }

  .nav-inner { padding: 0 32px; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 32px 80px;
    text-align: center;
    gap: 52px;
  }

  .hero-content { align-items: center; }

  .hero-visual { height: 360px; }

  .hv-badge-1 { left: 0; top: -10px; }
  .hv-badge-2 { right: -10px; }
  .hv-badge-3 { left: 10px; }

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

  .steps-row { grid-template-columns: 1fr; gap: 32px; }

  .step {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 32px;
  }

  .step:last-child { border-bottom: none; padding-bottom: 0; }

  .step-connector { display: none; }

  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-left { padding-top: 0; }
}

/* --- Mobile (max 600px) --- */
@media (max-width: 600px) {
  :root { --nav-h: 62px; }

  .section-inner { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }

  .nav-cta-btn {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .logo-img { height: 56px; }

  .hero-inner { padding: 44px 20px 60px; }

  .hero-title { font-size: 1.85rem; }

  .hero-sub { font-size: 0.93rem; }

  .btn-hero { font-size: 0.93rem; padding: 14px 26px; }

  .hero-tags { gap: 6px; }
  .hero-tag { font-size: 0.72rem; padding: 4px 10px; }

  .hero-visual { height: 300px; }

  .hv-shield-wrap { width: 200px; height: 230px; }

  .hv-badge { font-size: 0.72rem; padding: 6px 12px 6px 8px; }

  .hv-badge-1 { left: -10px; top: -5px; }
  .hv-badge-2 { right: -10px; top: 40%; }
  .hv-badge-3 { left: 5px; bottom: 10px; }

  .benefits-section,
  .how-section,
  .form-section { padding: 64px 0; }

  .trust-section { padding: 40px 0; }

  .section-title { font-size: 1.65rem; }

  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }

  .benefit-card { padding: 24px 22px; }

  .trust-band { grid-template-columns: 1fr; gap: 20px; }

  .trust-item { padding: 0; }

  .form-section-title { font-size: 1.7rem; }

  .form-card { padding: 28px 20px 24px; }

  .field-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 12px; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .modal-box { padding: 30px 20px 24px; }
}
