/* ═══════════════════════════════════════════════════════
   PEDÁGIO DIGITAL — GLOBAL STYLES
   Color palette:
     Primary accent:   #c8e000  (yellow-green)
     Dark bg:          #0f0f0f / #111
     Card bg:          #ffffff
     Text dark:        #1a1a1a
     Text muted:       #6b7280
═══════════════════════════════════════════════════════ */

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

:root {
  --accent:       #c8e000;
  --accent-dark:  #a8bc00;
  --bg-dark:      #0f0f0f;
  --bg-card:      #ffffff;
  --text-dark:    #1a1a1a;
  --text-muted:   #6b7280;
  --text-white:   #ffffff;
  --nav-bg:       rgba(10, 10, 10, 0.95);
  --border:       #e5e7eb;
  --shadow:       0 8px 40px rgba(0,0,0,0.18);
  --radius:       14px;
  --radius-sm:    8px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-white);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.hidden { display: none !important; }

/* ─────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.logo-subtitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.nav-menu-btn {
  background: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  width: 38px; height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}

.nav-menu-btn:hover { border-color: var(--accent); }

.nav-menu-btn span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-white);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-menu-btn:hover span { background: var(--accent); }

.nav-mobile {
  background: rgba(10,10,10,0.98);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 64px;

  /* Car highway background via gradient + pattern simulation */
  background:
    linear-gradient(
      135deg,
      rgba(8,8,8,0.88) 0%,
      rgba(12,15,10,0.78) 40%,
      rgba(15,20,10,0.65) 100%
    ),
    url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?w=1600&q=80&fit=crop&auto=format') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(200,224,0,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.hero-text {
  flex: 1;
  padding-top: 20px;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-text h1 .highlight {
  color: var(--accent);
}

.hero-sub {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 380px;
  line-height: 1.6;
}

/* Card */
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  position: relative;
  animation: cardIn 0.4s ease forwards;
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-card h2 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-card h2 strong {
  font-weight: 900;
}

/* ─────────────────────────────────────────────────────
   CARD BADGE
───────────────────────────────────────────────────── */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  padding: 5px 12px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-badge.success {
  background: #dcfce7;
  color: #166534;
}

.card-badge.primary {
  background: #f0f9c8;
  color: #5a6600;
}

/* ─────────────────────────────────────────────────────
   INPUTS
───────────────────────────────────────────────────── */
.input-group { margin-bottom: 16px; }

.input-placa {
  width: 100%;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: #f9f9f9;
  outline: none;
}

.input-placa:focus { border-color: var(--accent-dark); background: #fff; }
.input-placa::placeholder { color: #9ca3af; font-weight: 400; letter-spacing: 0.05em; }

/* ─────────────────────────────────────────────────────
   CHECKBOX
───────────────────────────────────────────────────── */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  cursor: pointer;
}

.checkbox-row input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 18px; height: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.checkbox-row input:checked ~ .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-row input:checked ~ .checkmark::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #111;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  position: absolute;
  top: 1px;
  left: 4px;
}

.checkbox-text {
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

.checkbox-text a {
  color: #5a6600;
  font-weight: 600;
  text-decoration: underline;
}

/* ─────────────────────────────────────────────────────
   CUSTOM CAPTCHA
───────────────────────────────────────────────────── */
.custom-captcha {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f9fafb;
  border: 1.5px solid #d1d5db;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  user-select: none;
}

.custom-captcha:hover {
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(200,224,0,0.12);
}

.custom-captcha.verified {
  border-color: #c8e000;
  background: #f8fde8;
  cursor: default;
  box-shadow: 0 0 0 3px rgba(200,224,0,0.15);
}

.captcha-check-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
}

.captcha-box {
  width: 26px; height: 26px;
  border: 2px solid #9ca3af;
  border-radius: 4px;
  background: #fff;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.custom-captcha.loading .captcha-box {
  border-color: transparent;
  background: transparent;
}

.custom-captcha.verified .captcha-box {
  border-color: #c8e000;
  background: #c8e000;
}

.captcha-spinner {
  display: none;
  width: 26px; height: 26px;
  position: absolute;
  top: -2px; left: -2px;
  animation: captchaSpin 0.9s linear infinite;
}

.custom-captcha.loading .captcha-box { border: none; }
.custom-captcha.loading .captcha-spinner { display: block; }

@keyframes captchaSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.captcha-check {
  width: 16px; height: 16px;
}

.captcha-label {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}

.custom-captcha.verified .captcha-label {
  color: #374151;
  font-weight: 600;
}

.captcha-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
}

.captcha-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.captcha-brand-text span:first-child {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.01em;
}

.captcha-brand-text span:last-child {
  font-size: 9px;
  color: #9ca3af;
}

/* ─────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────── */
.btn-primary {
  width: 100%;
  height: 52px;
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(200,224,0,0.35);
  margin-bottom: 8px;
}

.btn-primary:hover:not(:disabled) {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,224,0,0.5);
}

.btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.btn-primary:disabled {
  background: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost {
  width: 100%;
  height: 40px;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
  margin-top: 8px;
}

.btn-ghost:hover { color: var(--text-dark); }

.link-comecar {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #374151;
  margin-top: 8px;
  text-decoration: underline;
  cursor: pointer;
}

/* ─────────────────────────────────────────────────────
   FORM GRID
───────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input {
  width: 100%;
  height: 46px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.2s;
  background: #f9f9f9;
  outline: none;
}

.form-field input:focus {
  border-color: var(--accent-dark);
  background: #fff;
}

/* ─────────────────────────────────────────────────────
   VALOR DESTAQUE
───────────────────────────────────────────────────── */
.valor-destaque {
  background: #f0f9c8;
  border: 1.5px solid #c8e000;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.valor-label {
  font-size: 13px;
  color: #5a6600;
  font-weight: 600;
}

.valor-num {
  font-size: 22px;
  font-weight: 900;
  color: #3a4400;
}

/* ─────────────────────────────────────────────────────
   PIX SECTION
───────────────────────────────────────────────────── */
.pix-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.pix-qr-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  border: 2px dashed #c8e000;
  border-radius: var(--radius-sm);
  background: #f9f9f9;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pix-qr {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.pix-code-group { display: flex; flex-direction: column; gap: 10px; }

.pix-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pix-code-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-code-box textarea {
  width: 100%;
  border: 1.5px solid #c8e000;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--text-dark);
  background: #f8f9fa;
  resize: none;
  outline: none;
  line-height: 1.5;
}

.btn-copy {
  width: 100%;
  height: 42px;
  background: var(--accent);
  color: var(--text-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s, transform 0.15s;
}

.btn-copy:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.pix-info {
  background: #f9f9f9;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.info-row span { color: var(--text-muted); }
.info-row strong { color: var(--text-dark); font-weight: 700; }

.timer-display { color: #dc2626; }

/* PIX steps */
.pix-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.pix-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #374151;
  background: #f9f9f9;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-weight: 500;
}

.step-num {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
}

/* ─────────────────────────────────────────────────────
   TRUST BAR
───────────────────────────────────────────────────── */
.trust-bar {
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────────────── */
.faq-section {
  background: #f3f4f6;
  padding: 80px 24px;
}

.faq-container {
  max-width: 760px;
  margin: 0 auto;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(0,0,0,0.08);
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child { border-bottom: none; }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: background 0.15s;
}

.faq-btn:hover { background: #f9f9f9; }

.faq-icon {
  color: #c8e000;
  font-size: 22px;
  font-weight: 900;
  min-width: 24px;
  text-align: center;
  line-height: 1;
  transition: transform 0.25s;
}

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

.faq-answer {
  display: none;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.75;
}

.faq-item.open .faq-answer { display: block; }

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer { background: #111; }

.atendimento-bar {
  background: #1a1a1a;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 760px;
  margin: 0 auto;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}

.atendimento-arrow {
  font-size: 18px;
  transition: transform 0.25s;
}

.atendimento-bar.open .atendimento-arrow { transform: rotate(180deg); }

.atendimento-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 20px;
  background: #1a1a1a;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.atendimento-links.open {
  max-height: 100px;
  padding: 12px 24px 20px;
}

.atendimento-links a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
}

.footer-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 320px;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-bottom {
  background: #0a0a0a;
  padding: 16px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────────────────
   MODAL
───────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-box {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: #f3f4f6;
  border: none; border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: #e5e7eb; }

.modal-content h1, .modal-content h2 { color: var(--text-dark); margin-bottom: 12px; margin-top: 20px; font-size: 16px; }
.modal-content p { color: #4b5563; font-size: 13px; line-height: 1.7; margin-bottom: 12px; }

/* ─────────────────────────────────────────────────────
   LOADING OVERLAY
───────────────────────────────────────────────────── */
.loading-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loading-content p {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

/* ─────────────────────────────────────────────────────
   SPINNER
───────────────────────────────────────────────────── */
.spinner {
  width: 32px; height: 32px;
  border: 3px solid rgba(200,224,0,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.spinner-large { width: 48px; height: 48px; border-width: 4px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ─────────────────────────────────────────────────────
   TOAST
───────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  animation: toastIn 0.3s ease;
  white-space: nowrap;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(-50%) translateY(16px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 40px 16px 60px;
  }

  .hero-text { text-align: center; padding-top: 0; }
  .hero-sub { margin: 12px auto 0; }
  .hero-card { max-width: 100%; }

  .trust-bar { gap: 20px; padding: 16px; }
  .trust-item { font-size: 12px; }

  .faq-section { padding: 48px 16px; }
  .faq-btn { font-size: 14px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px 16px; }

  .pix-steps { grid-template-columns: 1fr; }

  .footer-body { padding: 32px 16px; }

  .recaptcha-wrapper .g-recaptcha {
    transform: scale(0.85);
    transform-origin: 0 0;
  }

  .recaptcha-wrapper {
    justify-content: flex-start;
  }

  .atendimento-bar {
    max-width: 100%;
  }
}

@media (max-width: 400px) {
  .hero-text h1 { font-size: 1.7rem; }
}
