/* ============================================================
   REOBOTE CONSÓRCIOS — LP CONTRATAÇÃO
   Identidade: navy escuro no hero/footer, branco nas seções de conteúdo
   Mobile-first. Testado a partir de 360px.
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Brand Reobote */
  --blue:        #00AEEF;
  --blue-light:  #5DCFFA;
  --blue-dark:   #0089C4;
  --navy:        #060D1A;
  --navy-mid:    #0A1628;

  /* Sections dark */
  --text:        #dde3f4;
  --text-muted:  #7a8fae;
  --glass-bg:    rgba(0, 174, 239, 0.05);
  --glass-bd:    rgba(0, 174, 239, 0.15);

  /* Sections light */
  --bg-light:    #F0F6FB;
  --text-dark:   #0A1628;
  --text-mid:    #3A5068;
  --text-soft:   #6B84A0;

  /* Shared */
  --white:       #ffffff;
  --error:       #E03A52;
  --success:     #00AEEF;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-card: 0 4px 24px rgba(0, 174, 239, 0.10);
  --shadow-hover: 0 8px 40px rgba(0, 174, 239, 0.20);

  /* Compatibility aliases */
  --gold-1:      #00AEEF;
  --gold-2:      #5DCFFA;
  --gold-dim:    #0089C4;
  --green:       #00AEEF;
  --bg:          #060D1A;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #ffffff;
  color: var(--text-dark);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, iframe, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.2; }

.gold { color: var(--blue); }
.req  { color: var(--error); font-size: 0.85em; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section eyebrow ────────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 8px;
  display: block;
}
.section-eyebrow.left { text-align: left; }

/* ── Section title ──────────────────────────────────────────── */
.section-title {
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 20px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  border-radius: 2px;
}
.section-title.left { text-align: left; }
.section-title.left::after { left: 0; transform: none; }
.section-title.on-dark { color: var(--white); }
.section-title.on-light { color: var(--text-dark); }

/* ============================================================
   SITE HEADER / LOGO
   ============================================================ */
.site-header {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 3px solid var(--blue);
  text-align: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.site-logo {
  height: 52px;
  width: auto;
  display: inline-block;
}

/* ============================================================
   URGENCY BANNER
   ============================================================ */
.urgency-banner {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #0072B8, #00AEEF, #5DCFFA, #00AEEF, #0072B8);
  background-size: 200% auto;
  animation: banner-shine 4s linear infinite;
  text-align: center;
  padding: 10px 16px;
}
.urgency-banner p {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.6rem, 2.6vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #ffffff;
  line-height: 1.4;
  text-transform: uppercase;
}
@keyframes banner-shine {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   HERO — dark navy
   ============================================================ */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 60, 120, 0.9) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(0, 174, 239, 0.08) 0%, transparent 60%);
  padding: 48px 0 64px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 174, 239, 0.10);
  border: 1px solid rgba(0, 174, 239, 0.30);
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ADE80;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.6);
}

.hero-title {
  font-size: clamp(1.6rem, 6.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  padding: 0 4px;
}
.hero-title .gold {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── Phone Mockup ───────────────────────────────────────────── */
.phone-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 36px;
  padding: 0 12px;
}
.phone-frame {
  position: relative;
  width: min(270px, 75vw);
  background: linear-gradient(160deg, #1a2240, #0d1526);
  border-radius: 38px;
  padding: 14px 10px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255,255,255,0.10),
    0 0 0 8px #080e1c,
    0 0 0 10px rgba(0,174,239,0.06),
    0 24px 64px rgba(0,0,0,0.7),
    0 0 60px rgba(0,174,239,0.12);
  transform-origin: center center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-notch {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.notch-cam {
  width: 10px;
  height: 10px;
  background: #050810;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.08);
}
.phone-screen {
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9/16;
  position: relative;
}
.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  inset: 0;
}
.phone-screen::before {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
  z-index: 0;
}
/* ── Zoom do phone ao tocar vídeo ───────────────────────────── */
.phone-wrap {
  transition: transform 10s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center top;
  position: relative;
  z-index: 1;
}
.phone-wrap.phone-zoomed {
  transform: scale(1.62);
  z-index: 10;
}
.phone-wrap.phone-unzooming {
  transition: transform 3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.phone-home {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  margin: 10px auto 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  padding: 16px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, opacity 0.15s;
  text-align: center;
  min-height: 52px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }

.btn-cta {
  background: linear-gradient(135deg, #00AEEF, #0089C4);
  color: #ffffff;
  box-shadow: 0 4px 28px rgba(0, 174, 239, 0.45);
}
.btn-cta:hover {
  box-shadow: 0 6px 40px rgba(0, 174, 239, 0.65);
  transform: translateY(-2px);
}
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: shimmer 2.5s infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

.btn-next {
  background: linear-gradient(135deg, #00AEEF, #0089C4);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.3);
  font-size: 0.9rem;
}
.btn-next:hover { box-shadow: 0 6px 30px rgba(0, 174, 239, 0.5); transform: translateY(-2px); }

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.875rem;
  padding: 10px 0;
  margin-top: 4px;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--text-dark); }

.btn-submit-nocarro {
  background: rgba(0,174,239,0.06);
  border: 1.5px solid var(--blue);
  color: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,174,239,0.10);
}
.btn-submit-nocarro:hover {
  background: rgba(0,174,239,0.12);
  box-shadow: 0 6px 28px rgba(0,174,239,0.22);
}

.btn-submit-carro {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  font-size: 0.9rem;
}
.btn-submit-carro:hover {
  box-shadow: 0 6px 36px rgba(37,211,102,0.5);
  transform: translateY(-2px);
}

.btn.loading { opacity: 0.7; pointer-events: none; }
.btn.loading::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   QUOTE — dark navy
   ============================================================ */
.quote-section {
  background: var(--navy-mid);
  padding: 76px 0;
  border-top: 1px solid rgba(0, 174, 239, 0.12);
  border-bottom: 1px solid rgba(0, 174, 239, 0.12);
}
.main-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.15rem, 4.5vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.4;
}
.main-quote::before {
  content: '\201C';
  display: block;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 4.5rem;
  line-height: 0.7;
  color: rgba(0, 174, 239, 0.22);
  margin-bottom: 14px;
  pointer-events: none;
}
.main-quote .gold {
  color: var(--blue-light);
}

/* ============================================================
   BENEFITS — white
   ============================================================ */
.benefits-section {
  background: #ffffff;
  padding: 72px 0;
}
.benefits-section .section-title { color: var(--text-dark); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.benefit-card {
  background: #ffffff;
  border: 1.5px solid #E4EEF7;
  border-left: 3px solid #E4EEF7;
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 174, 239, 0.25);
  border-left-color: var(--blue);
}
.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.20);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.benefit-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}
.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ============================================================
   ABOUT — light blue-gray
   ============================================================ */
.about-section {
  background: var(--bg-light);
  padding: 72px 0;
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-text .section-title {
  text-align: left;
  color: var(--text-dark);
}
.about-text p {
  color: var(--text-mid);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  margin-top: 8px;
  background: #ffffff;
  border: 1.5px solid #E4EEF7;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.address-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.address-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}
.address-card strong { display: block; color: var(--text-dark); font-size: 0.9rem; margin-bottom: 4px; }
.address-card address { color: var(--text-soft); font-size: 0.875rem; line-height: 1.6; }

.stats-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 40px rgba(6, 13, 26, 0.25);
}
.stat { padding: 20px 0; width: 100%; }
.stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stat-divider {
  width: 40px;
  height: 1px;
  background: rgba(0, 174, 239, 0.15);
  margin: 0 auto;
}

/* ============================================================
   PROFILE — dark navy
   ============================================================ */
.profile-section {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 60, 120, 0.7) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 20% 100%, rgba(0, 174, 239, 0.06) 0%, transparent 60%);
  padding: 80px 0 88px;
  text-align: center;
}

.profile-intro {
  font-size: clamp(0.95rem, 2.5vw, 1.05rem);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.profile-intro strong { color: var(--white); font-weight: 600; }

/* ── Cards grid ─────────────────────────────────────────── */
.profile-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: left;
}
@media (min-width: 640px) {
  .profile-cards { gap: 20px; }
}
@media (min-width: 880px) {
  .profile-cards { grid-template-columns: repeat(4, 1fr); }
}

.profile-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 174, 239, 0.14);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
@media (min-width: 480px) {
  .profile-card { padding: 24px 20px; gap: 12px; }
}
.profile-card:hover {
  background: rgba(0, 174, 239, 0.06);
  border-color: rgba(0, 174, 239, 0.35);
  transform: translateY(-3px);
}

.pcard-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 174, 239, 0.10);
  border: 1px solid rgba(0, 174, 239, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.pcard-icon svg {
  width: 20px;
  height: 20px;
}

.profile-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin: 0;
}
.profile-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Warning box ─────────────────────────────────────────── */
.profile-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  margin: 0 auto 36px;
  max-width: 540px;
  text-align: left;
  background: rgba(255, 140, 0, 0.06);
  border: 1px solid rgba(255, 140, 0, 0.22);
  border-radius: var(--radius);
}
.warn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #F59E0B;
}
.warn-icon svg { width: 20px; height: 20px; }
.profile-warning p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.profile-warning strong { color: #F59E0B; font-weight: 600; }

/* ── CTA area ────────────────────────────────────────────── */
.profile-section .btn { margin: 0 auto; }
.profile-cta-pre {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}

/* ============================================================
   FORM SECTION — light
   ============================================================ */
.form-section {
  background: var(--bg-light);
  padding: 72px 0 88px;
}
.form-section .section-title { color: var(--text-dark); }
.form-sub {
  text-align: center;
  color: var(--text-soft);
  margin-bottom: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: 36px 28px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1.5px solid #E4EEF7;
  box-shadow: 0 8px 40px rgba(0, 174, 239, 0.10);
}

/* ── Progress bar ───────────────────────────────────────────── */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 18px;
}
.prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.prog-step span {
  font-size: 0.7rem;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
.step-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F0F4F8;
  border: 1.5px solid #D0DDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: all 0.3s;
}
.prog-step.active .step-circle {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0,174,239,0.30);
}
.prog-step.active span { color: var(--blue-dark); }
.prog-step.done .step-circle {
  background: rgba(0,174,239,0.12);
  border-color: var(--blue);
  color: var(--blue-dark);
}
.prog-line {
  flex: 1;
  height: 2px;
  background: #D0DDE8;
  margin: 0 8px;
  margin-bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
  min-width: 40px;
}
.prog-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
  transition: width 0.5s ease;
}

/* ── Form steps ─────────────────────────────────────────────── */
.form-step { display: none; flex-direction: column; gap: 14px; }
.form-step.active { display: flex; animation: fadeUp 0.35s ease; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Form group / inputs ────────────────────────────────────── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
input, textarea {
  width: 100%;
  background: #F8FBFD;
  border: 1.5px solid #D0DDE8;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input::placeholder, textarea::placeholder { color: #A0B0C0; }
input:focus, textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,174,239,0.10);
}
input.error, textarea.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(224,58,82,0.08);
}
textarea { resize: vertical; min-height: 88px; line-height: 1.6; }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; }

.field-err {
  font-size: 0.78rem;
  color: var(--error);
  min-height: 1.1em;
  display: block;
}

/* ── Input wrap with icon ───────────────────────────────────── */
.input-wrap {
  position: relative;
}
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-soft);
  pointer-events: none;
  z-index: 1;
  flex-shrink: 0;
}
.input-wrap input {
  padding-left: 40px;
}

/* ── Form row — empilhado no mobile, lado a lado no desktop ─── */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 480px) {
  .form-row { flex-direction: row; gap: 12px; }
  .form-row .form-group { flex: 1; }
}

/* ── Vehicle options ────────────────────────────────────────── */
.vehicle-opts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ── Vehicle buttons ────────────────────────────────────────── */
.vbtn {
  width: 100%;
  padding: 20px 14px;
  border-radius: 12px;
  border: 1.5px solid #D0DDE8;
  background: #F8FBFD;
  color: var(--text-mid);
  font-family: 'Inter', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  min-height: 90px;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.vbtn:hover {
  border-color: var(--blue);
  background: rgba(0,174,239,0.04);
  color: var(--text-dark);
}
.vbtn-icon {
  width: 26px;
  height: 26px;
  color: var(--text-soft);
  transition: color 0.2s;
  flex-shrink: 0;
}
.vbtn-label {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}
.vbtn-radio { display: none; }
.vbtn.selected {
  border-color: var(--blue);
  background: rgba(0,174,239,0.06);
  color: var(--blue-dark);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
.vbtn.selected .vbtn-icon { color: var(--blue); }

/* Corner check on vehicle buttons when selected */
.vehicle-opts .vbtn::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s, transform 0.2s;
}
.vehicle-opts .vbtn.selected::after {
  opacity: 1;
  transform: scale(1);
}

/* ── Experience options — single column horizontal ──────────── */
.exp-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.exp-opts .vbtn.exp-row {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  padding: 12px 14px;
  gap: 12px;
  text-align: left;
}
.exp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 174, 239, 0.06);
  border: 1px solid rgba(0, 174, 239, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.exp-icon svg { width: 16px; height: 16px; }
.exp-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.exp-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.exp-sub {
  font-size: 0.72rem;
  color: var(--text-soft);
  font-weight: 400;
}
.exp-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #D0DDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: all 0.2s;
}
.exp-check svg { width: 10px; height: 10px; }

/* Selected state for exp rows */
.exp-opts .vbtn.exp-row.selected {
  border-color: var(--blue);
  background: rgba(0,174,239,0.05);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.10);
}
.exp-opts .vbtn.exp-row.selected .exp-icon {
  background: rgba(0,174,239,0.12);
  border-color: var(--blue);
  color: var(--blue);
}
.exp-opts .vbtn.exp-row.selected .exp-label { color: var(--blue-dark); }
.exp-opts .vbtn.exp-row.selected .exp-check {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* ── Submit area ────────────────────────────────────────────── */
.submit-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.35s ease;
}
.submit-area .btn { max-width: 100%; }

.form-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 4px;
}
.form-trust svg { flex-shrink: 0; }

/* ── Success ────────────────────────────────────────────────── */
.success-msg {
  text-align: center;
  padding: 24px 8px;
  animation: fadeUp 0.4s ease;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 174, 239, 0.08);
  border: 1.5px solid rgba(0, 174, 239, 0.30);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}
.success-msg h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.success-msg p { color: var(--text-soft); font-size: 0.9rem; line-height: 1.6; }
.success-next {
  margin-top: 20px;
  text-align: left;
  background: #F8FBFD;
  border: 1.5px solid #E4EEF7;
  border-radius: 12px;
  padding: 16px 18px;
}
.success-next-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.success-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: step;
}
.success-steps li {
  counter-increment: step;
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.success-steps li::before {
  content: counter(step);
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,174,239,0.10);
  border: 1px solid rgba(0,174,239,0.20);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-family: 'Outfit', sans-serif;
}

/* ── Utility ────────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ============================================================
   SOCIAL LINKS
   ============================================================ */
.location-card {
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1.5px solid #D8E8F4;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 174, 239, 0.07);
}
.location-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1.5px solid #EEF4FA;
}
.location-pin {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.location-pin svg { width: 16px; height: 16px; }
.location-header strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.location-header address {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.location-map {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: saturate(0.9);
}
.location-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-top: 1.5px solid #EEF4FA;
  background: #F8FBFD;
  color: var(--blue-dark);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.location-cta:hover {
  background: rgba(0, 174, 239, 0.06);
  color: var(--blue);
}
.location-cta svg { flex-shrink: 0; }

.social-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 28px;
  margin-bottom: 10px;
}

/* ── Mobile: coluna única, item horizontal (ícone + texto) ──── */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1.5px solid #D8E8F4;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 10px;
}
.social-grid-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  padding: 14px 16px;
  text-decoration: none;
  border-bottom: 1.5px solid #D8E8F4;
  transition: background 0.18s;
}
.social-grid-item:last-child { border-bottom: none; }
.social-grid-item:hover { background: rgba(0, 174, 239, 0.04); }
.social-grid-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 174, 239, 0.08);
  border: 1px solid rgba(0, 174, 239, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: background 0.18s, border-color 0.18s;
  grid-row: 1 / 3;
  grid-column: 1;
}
.social-grid-icon svg { width: 17px; height: 17px; }
.social-grid-item:hover .social-grid-icon {
  background: rgba(0, 174, 239, 0.14);
  border-color: rgba(0, 174, 239, 0.3);
}
.social-grid-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}
.social-grid-handle {
  font-size: 0.72rem;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

/* ============================================================
   FOOTER — dark navy
   ============================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(0, 174, 239, 0.12);
  padding: 48px 0;
  text-align: center;
}
.footer p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.footer p strong { color: var(--white); }
.footer-links { margin: 16px 0 8px; }
.footer-link {
  color: var(--blue-light);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(0, 174, 239, 0.30);
  transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); margin-top: 12px !important; }
.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  margin: 0 auto 24px;
  opacity: 0.80;
}

/* ============================================================
   MODAL FORM
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 13, 26, 0.80);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 20px 18px;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(0, 174, 239, 0.10);
  border-top: 3px solid var(--blue);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 174, 239, 0.2) transparent;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F0F4F8;
  border: 1px solid #D0DDE8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: #E4EEF7; color: var(--text-dark); }
.modal-title {
  font-size: clamp(1.3rem, 5vw, 1.7rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
  padding-right: 40px;
}
.modal-title .gold { color: var(--blue); }
.modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet 540px+
   ============================================================ */
@media (min-width: 540px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-card {
    flex-direction: row;
    gap: 0;
  }
  .stat { flex: 1; }
  .stat-divider {
    width: 1px;
    height: 60px;
    margin: 0;
  }

  /* Social grid: 3 colunas, ícone em cima */
  .social-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .social-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 10px;
    border-right: 1.5px solid #D8E8F4;
    border-bottom: none;
    text-align: center;
  }
  .social-grid-item:last-child {
    border-right: none;
    border-bottom: none;
  }
  .social-grid-icon {
    grid-row: auto;
    grid-column: auto;
  }
  .social-grid-name,
  .social-grid-handle {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — Desktop 768px+
   ============================================================ */
@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
  }
  .about-text { flex: 1; }
  .about-text .section-title { text-align: left; }
  .stats-card {
    flex-direction: column;
    gap: 0;
    min-width: 220px;
    flex-shrink: 0;
  }
  .stat-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }
  .phone-frame {
    width: 300px;
  }
  .form-wrap {
    padding: 48px 48px;
  }
}

/* ============================================================
   RESPONSIVE — Large 1024px+
   ============================================================ */
@media (min-width: 1024px) {
  .hero { padding: 80px 0 88px; }
  .hero-sub { font-size: 1.15rem; }
}
