/* =============================================
   MB CONEXÃO C6 — Design System · Light Theme
   Identidade visual C6 Empresas: clean, minimalista, institucional
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Urbanist:wght@300;400;600;700;800&display=swap');

/* ---- Variáveis Light Theme ---- */
:root {
  /* Paleta principal */
  --c-dark:          #1A1A1A;   /* Texto primário */
  --c-dark-2:        #2D2D2D;   /* Texto secundário */
  --c-dark-3:        #3D3D3D;   /* Cinza grafite */
  --c-light:         #F5F5F7;   /* Seções alternadas */
  --c-white:         #FFFFFF;   /* Fundo principal */
  --c-gold:          #fbd717;   /* Accent CTA */
  --c-gold-light:    #fce545;   /* Hover accent */
  --c-gold-dark:     #c9a400;   /* Dark variant — legível sobre fundo claro */
  --c-text:          #1A1A1A;   /* Corpo de texto */
  --c-text-muted:    #6B6B6B;   /* Texto secundário */
  --c-text-soft:     #9B9B9B;   /* Texto terciário */
  --c-border:        #E8E8EC;   /* Borda sutil */
  --c-border-mid:    #D0D0D8;   /* Borda visível */
  --c-bg-card:       #FFFFFF;   /* Fundo dos cards */
  --c-bg-subtle:     #F5F5F7;   /* Fundo alternado */
  --c-bg-gold-tint:  #FFFBF2;   /* Tint dourado suave */

  /* Tipografia */
  --font-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Urbanist', 'Inter', sans-serif;

  /* Espaçamentos */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Bordas */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 999px;

  /* Sombras soft — naturais em fundo claro */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.07), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 32px rgba(0,0,0,.09), 0 4px 10px rgba(0,0,0,.05);
  --shadow-xl:   0 24px 56px rgba(0,0,0,.11), 0 8px 16px rgba(0,0,0,.05);
  --shadow-card: 0 2px 8px rgba(0,0,0,.06), 0 1px 3px rgba(0,0,0,.04);
  --shadow-gold: 0 8px 28px rgba(251,215,23,.28);

  /* Transições */
  --transition:      0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --nav-h: 72px;
}

/* ==========================================
   LGPD consent banner
   ========================================== */
.cookie-banner {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 1200;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(760px, calc(100vw - 32px));
  padding: 1rem;
  color: #151515;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(16, 16, 16, 0.14);
  border-radius: 16px;
  box-shadow: 0 20px 70px rgba(16, 16, 16, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner--closing {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.cookie-banner__title {
  margin: 0 0 0.3rem;
  font-weight: 800;
  font-size: 0.95rem;
}

.cookie-banner__text {
  margin: 0;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.45;
}

.cookie-banner__text a {
  color: #111;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.cookie-banner__btn {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cookie-banner__btn--ghost {
  color: #151515;
  border: 1px solid rgba(16, 16, 16, 0.18);
  background: #fff;
}

.cookie-banner__btn--primary {
  color: #151515;
  background: #ffd52e;
}

.cookie-banner__btn:focus-visible {
  outline: 3px solid rgba(255, 213, 46, 0.45);
  outline-offset: 2px;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 1fr;
    width: auto;
    padding: 0.9rem;
    border-radius: 14px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-banner__btn {
    width: 100%;
  }
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); border: none; background: none; }

/* =============================================
   UTILITÁRIOS
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

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

/* =============================================
   TIPOGRAFIA
   ============================================= */

/* Destaque grifado — linha amarela atrás da base do texto */
.text-highlight {
  background-image: linear-gradient(120deg, var(--c-gold) 0%, var(--c-gold) 100%);
  background-repeat: no-repeat;
  background-size: 100% 19%;
  background-position: 0 87%;
}

/* Linhas de contraste nos títulos */
.line--bold  { font-weight: 800; display: block; }
.line--light { font-weight: 300; display: block; }

.heading-display {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--c-dark);
}

.heading-display em {
  font-style: normal;
  font-weight: 800;
  color: var(--c-gold-dark);
}

.heading-xl {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--c-dark);
}

.heading-lg {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-dark);
}

.heading-md {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--c-dark);
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}

/* No tema light, eyebrow--light usa a mesma cor escura */
.eyebrow--light {
  color: var(--c-text-muted);
}

.eyebrow--gold {
  color: var(--c-gold-dark);
}

/* =============================================
   BOTÕES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--c-gold);
  color: var(--c-dark);
}

.btn--primary:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}

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

.btn--dark {
  background: var(--c-dark);
  color: var(--c-white);
  box-shadow: var(--shadow-sm);
}

.btn--dark:hover {
  background: var(--c-dark-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-mid);
}

.btn--outline:hover {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
}

/* Mantido por compatibilidade — agora usa tema claro */
.btn--outline-light {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-mid);
}

.btn--outline-light:hover {
  border-color: var(--c-dark);
  background: var(--c-dark);
  color: var(--c-white);
}

.btn--lg {
  padding: 1.05rem 2.1rem;
  font-size: 0.975rem;
}

.btn svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* =============================================
   HEADER / NAVBAR — Glassmorphism Light
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header .container {
  height: 100%;
}

.site-header--scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--c-border);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.nav__logo-img {
  height: 54px;
  width: auto;
  display: block;
}

.footer__logo .nav__logo-img {
  height: 40px;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav__link {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--c-dark);
  background: var(--c-bg-subtle);
}

.nav__link[aria-current="page"] {
  color: var(--c-dark);
  font-weight: 600;
}

/* CTAs */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
}

.nav__cta-secondary {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--c-text-muted);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--c-border-mid);
  transition: var(--transition);
}

.nav__cta-secondary:hover {
  color: var(--c-dark);
  border-color: var(--c-dark);
  background: var(--c-bg-subtle);
}

.nav__cta-primary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-white);
  background: var(--c-dark);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-full);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav__cta-primary:hover {
  color: var(--c-dark);
  background: var(--c-gold);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--c-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--c-white);
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-lg);
  flex-direction: column;
  gap: 0.2rem;
  z-index: 99;
}

.nav__mobile.open { display: flex; }

.nav__mobile-link {
  display: block;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav__mobile-link:hover {
  color: var(--c-dark);
  background: var(--c-bg-subtle);
}

.nav__mobile-cta {
  margin-top: var(--space-sm);
  padding: 1rem;
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 700;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.nav__mobile-cta:hover { background: var(--c-dark-2); }

/* =============================================
   HERO — Light, clean, C6-style
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--c-white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Gradiente de fundo suave */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 70% 30%, rgba(251,215,23,.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(251,215,23,.04) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-white) 0%, var(--c-bg-subtle) 100%);
}

/* Partículas suaves — visíveis no fundo claro */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particles::before,
.hero__particles::after {
  content: '';
  position: absolute;
  width: 1px; height: 1px;
  border-radius: 50%;
}

.hero__particles::before {
  box-shadow:
    10vw 15vh 0 1.5px rgba(251,215,23,.25),
    25vw  8vh 0 1px   rgba(251,215,23,.18),
    40vw 22vh 0 1.5px rgba(251,215,23,.22),
    60vw  5vh 0 1px   rgba(251,215,23,.16),
    75vw 18vh 0 1.5px rgba(251,215,23,.2),
    88vw 10vh 0 1px   rgba(251,215,23,.15),
    5vw  45vh 0 1px   rgba(0,0,0,.06),
    18vw 55vh 0 1.5px rgba(0,0,0,.05),
    33vw 38vh 0 1px   rgba(0,0,0,.04),
    50vw 42vh 0 1.5px rgba(0,0,0,.06),
    65vw 35vh 0 1px   rgba(0,0,0,.04),
    80vw 48vh 0 1.5px rgba(0,0,0,.05),
    92vw 30vh 0 1px   rgba(0,0,0,.04);
}

.hero__particles::after {
  box-shadow:
    7vw  30vh 0 1px  rgba(251,215,23,.2),
    22vw 42vh 0 1.5px rgba(251,215,23,.15),
    38vw 12vh 0 1px  rgba(251,215,23,.12),
    55vw 58vh 0 1.5px rgba(251,215,23,.18),
    70vw 25vh 0 1px  rgba(251,215,23,.12),
    85vw 55vh 0 1.5px rgba(251,215,23,.15),
    15vw 85vh 0 1px  rgba(251,215,23,.1);
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  padding: var(--space-2xl) 0;
  width: 100%;
}

/* Badge */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(251,215,23,.1);
  border: 1px solid rgba(251,215,23,.22);
  color: var(--c-gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  letter-spacing: 0.04em;
}

.hero__badge::before {
  content: '★';
  font-size: 0.65rem;
  color: var(--c-gold);
}

/* Headline */
.hero__eyebrow {
  margin-bottom: 0.85rem;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--c-dark);
  max-width: 680px;
  margin-bottom: var(--space-md);
}

.hero__headline .line--bold {
  font-weight: 800;
}

.hero__headline .line--light {
  font-weight: 300;
  color: var(--c-dark);
}

.hero__nowrap {
  white-space: nowrap;
}

/* Subtexto */
.hero__subtext {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.72;
  max-width: 640px;
  margin-bottom: var(--space-lg);
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--c-border);
}

.hero__trust-icon {
  width: 16px; height: 16px;
  color: var(--c-gold);
  flex-shrink: 0;
}

.hero__trust-text {
  font-size: 0.78rem;
  color: var(--c-text-soft);
}

/* Visual — imagem hero */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__cards-visual {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 1 / 1;
  min-height: 460px;
}

@media (min-width: 1025px) {
  .hero__visual {
    justify-content: flex-end;
    transform: translateX(34px);
  }

  .hero__cards-visual {
    width: min(108%, 610px);
  }
}

.hero__cards-visual::before {
  content: '';
  position: absolute;
  inset: 10% 4% 8% 8%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 58% 32%, rgba(251, 215, 23, 0.18), transparent 36%),
    radial-gradient(circle at 36% 74%, rgba(17, 17, 17, 0.12), transparent 42%);
  filter: blur(24px);
  opacity: 0.9;
}

.hero__visual-card {
  position: absolute;
  display: block;
  height: auto;
  user-select: none;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 22px;
  box-shadow: 0 22px 34px rgba(17, 17, 17, 0.16);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero__visual-card--account {
  top: 0;
  right: 4%;
  width: 82%;
  animation: heroCardAccountIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.hero__visual-card--pay {
  left: 0;
  bottom: 0;
  width: 54%;
  transform: rotate(-3deg);
  animation: heroCardPayIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards;
}

.hero__visual-card--account:hover {
  transform: translate3d(0, -10px, 0);
  border-color: rgba(251, 215, 23, 0.34);
  box-shadow:
    0 18px 30px rgba(17, 17, 17, 0.22),
    0 0 0 4px rgba(251, 215, 23, 0.12);
}

.hero__visual-card--pay:hover {
  transform: translate3d(0, -12px, 0) rotate(-3deg);
  border-color: rgba(251, 215, 23, 0.34);
  box-shadow:
    0 18px 30px rgba(17, 17, 17, 0.24),
    0 0 0 4px rgba(251, 215, 23, 0.12);
}

@keyframes heroCardAccountIn {
  from {
    opacity: 0;
    transform: translate3d(28px, 22px, 0) rotate(2deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes heroCardPayIn {
  from {
    opacity: 0;
    transform: translate3d(-28px, 28px, 0) rotate(-7deg) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(-3deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual-card {
    animation: none;
    opacity: 1;
    transition: none;
  }
}

/* Frame da imagem com degradês */
.hero__img-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.hero__bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Degradês laterais */
.hero__img-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  display: none;
  pointer-events: none;
  z-index: 2;
}

.hero__img-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--c-white) 0%, transparent 100%);
}

.hero__img-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--c-white) 0%, transparent 100%);
}

/* Pílulas animadas */
.hero__pills {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-52%);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 3;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(20, 20, 20, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.48rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-14px);
  animation: pillAppear 0.4s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
  animation-delay: var(--pill-delay, 0s);
}

.hero__pill svg {
  flex-shrink: 0;
  color: var(--c-gold);
}

.hero__pill--more {
  background: rgba(251,215,23,.15);
  border-color: rgba(251,215,23,.35);
  color: var(--c-gold);
}

.hero__pill--more svg {
  color: var(--c-gold);
}

@keyframes pillAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__card-img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.12));
}

.hero__mockup {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__card-main {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.hero__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.hero__card-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero__card-logo {
  width: 28px; height: 28px;
  background: var(--c-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: var(--c-gold);
  font-family: var(--font-sans);
}

.hero__card-brand-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-dark);
}

.hero__card-badge {
  background: rgba(251,215,23,.1);
  color: var(--c-gold-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(251,215,23,.18);
}

.hero__card-balance-label {
  font-size: 0.68rem;
  color: var(--c-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.hero__card-balance {
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-md);
}

.hero__card-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}

.hero__card-service {
  background: var(--c-bg-subtle);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.5rem;
  text-align: center;
  transition: var(--transition);
}

.hero__card-service:hover {
  background: var(--c-bg-gold-tint);
  border-color: rgba(251,215,23,.25);
  box-shadow: var(--shadow-sm);
}

.hero__card-service-icon {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.hero__card-service-label {
  font-size: 0.6rem;
  color: var(--c-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

.hero__card-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-bg-gold-tint);
  border: 1px solid rgba(251,215,23,.18);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.hero__card-stat-text {
  font-size: 0.8rem;
  color: var(--c-text);
  font-weight: 500;
}

.hero__card-stat-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-gold-dark);
}

/* Cartões flutuantes — light */
.hero__card-float {
  position: absolute;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.hero__card-float--award {
  bottom: -2rem;
  left: -3rem;
  animation-delay: -2s;
  animation-duration: 5s;
}

.hero__card-float--stat {
  top: -1.5rem;
  right: -2rem;
  animation-delay: -3.5s;
  animation-duration: 7s;
}

.float-award__icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.float-award__label { font-size: 0.63rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.float-award__value { font-size: 0.9rem; font-weight: 700; color: var(--c-dark); }

.float-stat__number {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-gold-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.float-stat__label {
  font-size: 0.63rem;
  color: var(--c-text-muted);
  max-width: 80px;
  line-height: 1.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* =============================================
   STATS BAR — Light
   ============================================= */
.hero__stats {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero__stats .stat-item__number {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.hero__stats .stat-item__label {
  font-size: 0.68rem;
  min-height: 2rem;
  color: var(--c-text-muted);
  font-weight: 600;
}

.hero__stats .stat-item__micro {
  margin-top: 0.28rem;
  color: var(--c-text-soft);
  font-size: 0.62rem;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  max-height: 0;
  overflow: hidden;
}

.hero__stats .stats-bar__grid {
  gap: var(--space-md);
}

.hero__stats .stat-item {
  text-align: center;
  opacity: 0.82;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.75rem;
  border-top: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero__stats .stat-item:hover {
  opacity: 1;
  transform: translateY(-3px);
  border-top-color: var(--c-gold);
}

.hero__stats .stat-item:hover .stat-item__micro {
  opacity: 1;
  transform: translateY(0);
  max-height: 3rem;
  color: var(--c-text-muted);
}

.stat-item__icon {
  width: 20px;
  height: 20px;
  color: var(--c-gold);
  margin: 0 auto 0.45rem;
  display: block;
}

.stats-bar {
  background: var(--c-white);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-lg) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--c-border);
  justify-self: center;
}

.stat-item { text-align: center; }

.stat-item__number {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.03em;
}

.stat-item__number span { color: var(--c-dark); }

.stat-item__label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  font-weight: 400;
  line-height: 1.4;
}

/* =============================================
   SEÇÕES BASE
   ============================================= */
.section {
  padding: var(--space-2xl) 0;
}

.section--light  { background: var(--c-bg-subtle); }
.section--white  { background: var(--c-white); }

/* Seções que eram dark — agora light */
.section--dark   { background: var(--c-bg-subtle); }

.section__header { margin-bottom: var(--space-xl); }
.section__header--center { text-align: center; }
.section__title  { margin-bottom: var(--space-sm); }

.section__subtitle {
  font-size: 1.02rem;
  color: var(--c-text-muted);
  max-width: 520px;
  line-height: 1.65;
}

.section__subtitle--center { margin: 0 auto; }

/* =============================================
   ENTENDA O PROGRAMA
   ============================================= */
.programa {
  background:
    linear-gradient(180deg, var(--c-white) 0%, var(--c-bg-subtle) 100%);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.programa__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: var(--space-xl);
  align-items: start;
  margin-bottom: var(--space-xl);
}

.programa__intro .section__header {
  margin-bottom: 0;
}

.programa__copy {
  padding-top: 0.45rem;
}

.programa__copy p {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.programa__copy p + p {
  margin-top: var(--space-sm);
}

.programa__copy strong {
  color: var(--c-dark);
}

.programa > .container > .eyebrow {
  margin-bottom: var(--space-md);
}

.programa__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  position: relative;
}

.programa-card {
  min-height: 250px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-xs);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.programa-card::after,
.programa-card::before {
  display: none;
}

.programa-card:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 215, 23, 0.36);
  box-shadow: var(--shadow-lg);
}

.programa-card__step {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--space-md);
}

.programa-card__title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.12;
  color: var(--c-dark);
  margin-bottom: var(--space-sm);
}

.programa-card__text {
  color: var(--c-text-muted);
  font-size: 0.86rem;
  line-height: 1.58;
  margin-top: auto;
}

.programa-card__badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  background: var(--c-gold);
  color: var(--c-dark);
  border-radius: var(--radius-full);
  padding: 0.22rem 0.52rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

.programa-card--featured {
  background: var(--c-dark);
  border-color: var(--c-dark);
  box-shadow: var(--shadow-xl);
}

.programa-card--featured .programa-card__step {
  padding-right: 5rem;
  color: rgba(255, 255, 255, 0.58);
}

.programa-card--featured .programa-card__title {
  color: var(--c-white);
}

.programa-card--featured .programa-card__text {
  color: rgba(255, 255, 255, 0.76);
}


.programa__cta {
  margin-top: var(--space-xl);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(251, 215, 23, 0.32);
  background:
    radial-gradient(circle at 88% 20%, rgba(251, 215, 23, 0.22), transparent 32%),
    var(--c-bg-gold-tint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.eyebrow--gold {
  color: var(--c-gold-dark);
}

.programa__cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.12;
  color: var(--c-dark);
  margin: 0.45rem 0 0.5rem;
}

.programa__cta-text {
  color: var(--c-text-muted);
  max-width: 560px;
  line-height: 1.65;
}

.programa__official-link {
  margin-top: var(--space-sm);
  color: var(--c-text-soft);
  font-size: 0.82rem;
  text-align: center;
}

.programa__official-link a {
  color: var(--c-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(251, 215, 23, 0.7);
  text-underline-offset: 3px;
  transition: var(--transition);
}

.programa__official-link a:hover {
  color: var(--c-gold-dark);
}

/* =============================================
   PRODUTOS — Cards
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  border-color: rgba(251,215,23,.3);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card--with-image {
  padding-top: var(--space-sm);
}

.product-card__media {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 var(--space-md);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--c-bg-subtle);
}

.product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-card--with-image .product-card__icon {
  display: none;
}

.product-card--popular {
  border-color: var(--c-gold);
  background: var(--c-bg-gold-tint);
  box-shadow: 0 4px 20px rgba(251,215,23,.1);
}

.product-card__popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: var(--c-gold);
  color: var(--c-dark);
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__category {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 0.75rem;
}

.product-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--c-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  transition: var(--transition);
}

.product-card:hover .product-card__icon {
  background: rgba(251,215,23,.1);
}

.product-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-card__tag {
  font-size: 0.73rem;
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.product-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--c-text);
}

.product-card__feature::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23fbd717' opacity='.12'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23fbd717' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
  margin-top: 0.1rem;
}

.product-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
}

.product-card__link:hover {
  color: var(--c-gold-dark);
  gap: 0.6rem;
}

/* =============================================
   TARIFAS — Light
   ============================================= */
.tarifas {
  background: var(--c-bg-subtle);
}

.tarifas .section__title  { color: var(--c-dark); }
.tarifas .section__title em { font-style: italic; color: var(--c-gold-dark); }
.tarifas .section__subtitle { color: var(--c-text-muted); }

/* Toggle */
.tarifas-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.tarifas-toggle {
  display: inline-flex;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-full);
  padding: 0.25rem;
  gap: 0.25rem;
}

.tarifas-toggle__btn {
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tarifas-toggle__btn--active {
  background: var(--c-dark);
  color: var(--c-white);
  font-weight: 600;
}

/* Modo Só C6 Empresas: esconde apenas a coluna Outros Bancos PJ */
.tarifas-mode--so-c6 .tarifas-table thead th:last-child,
.tarifas-mode--so-c6 .tarifas-table tbody td:last-child {
  display: none;
}

.tarifas-table-wrapper {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.tarifas-table {
  width: 100%;
  border-collapse: collapse;
}

.tarifas-table thead th {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  background: var(--c-bg-subtle);
  border-bottom: 1px solid var(--c-border);
}

.tarifas-table thead th:not(:first-child) { text-align: center; }

.tarifas-table thead th.th-highlight {
  color: var(--c-gold-dark);
  background: var(--c-bg-gold-tint);
}

.tarifas-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: var(--transition);
}

.tarifas-table tbody tr:hover { background: var(--c-bg-subtle); }
.tarifas-table tbody tr:last-child { border-bottom: none; }

.tarifas-table td {
  padding: var(--space-md) var(--space-lg);
  font-size: 0.9rem;
  color: var(--c-text-muted);
  vertical-align: middle;
}

.tarifas-table td:not(:first-child) { text-align: center; }
.tarifas-table td.td-service { color: var(--c-dark); font-weight: 600; }

.tarifas-table td.td-highlight {
  background: var(--c-bg-gold-tint);
  color: var(--c-gold-dark);
  font-weight: 700;
}

.tarifas-table td.td-other {
  color: var(--c-text-soft);
  text-decoration: line-through;
  font-size: 0.82rem;
}

.tarifas-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(251,215,23,.1);
  color: var(--c-gold-dark);
  border: 1px solid rgba(251,215,23,.2);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.tarifas-badge--free {
  background: rgba(34,197,94,.08);
  color: #16A34A;
  border-color: rgba(34,197,94,.2);
}

/* =============================================
   COMO ABRIR — Steps
   ============================================= */
.como-abrir {
  background: var(--c-white);
}

.como-abrir__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.como-abrir__intro {
  position: sticky;
  top: calc(var(--nav-h, 72px) + 2rem);
}

.como-abrir__title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--c-dark);
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.como-abrir__em {
  font-style: normal;
  font-weight: 300;
  color: var(--c-dark);
}

.como-abrir__subtitle {
  font-size: 1rem;
  color: var(--c-text-muted);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

/* Botão dourado */
.btn--gold {
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 700;
}
.btn--gold:hover {
  background: var(--c-gold-light);
}

/* Lista de passos */
.como-abrir__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.como-abrir__step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--c-border);
}

.como-abrir__steps li:last-child {
  border-bottom: 1px solid var(--c-border);
}

.como-abrir__step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
}

.como-abrir__step-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.como-abrir__step-desc {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .como-abrir__grid { grid-template-columns: 1fr; }
  .como-abrir__intro { position: static; }
}

/* =============================================
   PRÊMIOS — Light
   ============================================= */
.premios {
  background: var(--c-bg-subtle);
  position: relative;
  overflow: hidden;
}

/* Decoração sutil */
.premios::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(251,215,23,.05) 0%, transparent 70%);
  pointer-events: none;
}

.premios .section__title  { color: var(--c-dark); }
.premios .section__title em { font-style: italic; color: var(--c-gold-dark); }
.premios .section__subtitle { color: var(--c-text-muted); }

.premios__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: var(--space-xl);
}

.premios__intro .section__title {
  margin-top: var(--space-sm);
}

.premios__image-wrap {
  width: min(100%, 460px);
  justify-self: end;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.12);
  box-shadow: var(--shadow-xl);
  background: var(--c-dark);
}

.premios__image {
  width: 100%;
  height: auto;
  display: block;
}

.premios__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.award-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.award-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(251,215,23,.3);
}

.award-card--active {
  background: var(--c-gold);
  border-color: var(--c-gold);
  box-shadow: var(--shadow-lg);
}

.award-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.award-card__year {
  font-size: 0.68rem;
  color: var(--c-text-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.award-card--active .award-card__year { color: rgba(26,26,26,.62); }

.award-card__badge {
  background: var(--c-dark);
  color: var(--c-gold);
  border-radius: var(--radius-full);
  padding: 0.3rem 0.6rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.award-card__place {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  font-weight: 800;
  color: var(--c-dark);
  line-height: 1;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.award-card--active .award-card__place { color: var(--c-dark); }

.award-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-dark);
  margin-bottom: 0.45rem;
  letter-spacing: -0.01em;
}

.award-card__label {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.45;
}

.award-card--active .award-card__label { color: rgba(26,26,26,.72); }

.premios__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}

.premios__tag {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.premios__tag:hover {
  border-color: rgba(251,215,23,.3);
  color: var(--c-gold-dark);
  background: var(--c-bg-gold-tint);
}

/* =============================================
   DEPOIMENTOS — Cards
   ============================================= */
.depoimentos { background: var(--c-bg-subtle); }

.depoimentos__carousel-wrap {
  position: relative;
}

.depoimentos__carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - var(--space-md) * 2) / 3);
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.depoimentos__carousel::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(251,215,23,.3);
}

.depoimentos__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.depoimentos__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.depoimentos__btn:hover {
  background: var(--c-dark);
  color: var(--c-white);
  border-color: var(--c-dark);
}

.depoimentos__dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.depoimentos__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-border-mid);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.depoimentos__dot--active {
  background: var(--c-dark);
  width: 18px;
  border-radius: 3px;
}

@media (max-width: 860px) {
  .depoimentos__carousel {
    grid-auto-columns: calc(100% - 2rem);
  }
}

@media (max-width: 480px) {
  .depoimentos__carousel {
    grid-auto-columns: 100%;
  }
}

.testimonial-card__quote {
  font-size: 2.2rem;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--space-sm);
  font-family: var(--font-sans);
}

.testimonial-card__text {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--c-text-muted);
  margin-bottom: var(--space-md);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-dark);
}

.testimonial-card__role {
  font-size: 0.75rem;
  color: var(--c-text-muted);
}

/* =============================================
   FAQ — Acordeão
   ============================================= */
.faq { background: var(--c-bg-subtle); }

.faq__layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: start;
}

.faq__intro {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}

.faq__intro-text {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.72;
  margin-bottom: var(--space-md);
}

.faq__list {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.faq__item {
  border-bottom: 1px solid var(--c-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--c-border);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 1.45rem 0;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}

.faq__question:hover { color: var(--c-gold-dark); }

.faq__question[aria-expanded="true"] {
  background: transparent;
  color: var(--c-gold-dark);
}

.faq__icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--c-bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1rem;
  color: var(--c-text-muted);
  border: 1px solid var(--c-border);
}

.faq__question[aria-expanded="true"] .faq__icon {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  padding: 0;
}

.faq__answer.open {
  max-height: 300px;
  padding: 0 0 var(--space-md);
}

.faq__answer p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.78;
}

/* =============================================
   CONTATO — Light com form card
   ============================================= */
.contato {
  background: #07090d;
  position: relative;
  overflow: hidden;
}

/* Decoração sutil nos cantos */
.contato::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(251,215,23,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contato::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251,215,23,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contato__layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(460px, 1.05fr);
  gap: var(--space-xl);
  align-items: start;
  position: relative;
  z-index: 1;
}

.contato .eyebrow { color: rgba(255, 255, 255, 0.45); }
.contato .section__title {
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 5.2vw, 3.35rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
}
.contato .section__title .contato__nowrap {
  white-space: nowrap;
}
.contato .section__title .line--bold {
  color: var(--c-white);
  font-weight: 800;
}
.contato .section__title .line--light {
  color: var(--c-white);
  font-weight: 400;
  margin-top: 0.05em;
}

.contato__sub {
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
  line-height: 1.68;
}

.c6-products {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.5rem;
}

.c6-products__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.01em;
}

.c6-products__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(251, 215, 23, 0.08);
  color: var(--c-gold);
  flex-shrink: 0;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.contato__info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contato__info-icon {
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: var(--transition);
}

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

.contato__info-item:hover .contato__info-icon {
  background: rgba(251, 215, 23, 0.11);
  border-color: rgba(251, 215, 23, 0.28);
}

.contato__info-label {
  font-size: 0.67rem;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.contato__info-value {
  font-size: 0.9rem;
  color: var(--c-white);
  font-weight: 600;
  transition: var(--transition);
}

a.contato__info-value:hover { color: var(--c-gold); }

/* Formulário — card branco */
.contato__form {
  background: #11151b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.32);
  width: 100%;
  max-width: 620px;
  justify-self: end;
  transform: translateX(24px);
}

.form-group { margin-bottom: var(--space-md); }

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.45rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.055);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--c-white);
  transition: var(--transition);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.34); }

.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--c-white); color: var(--c-dark); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(251, 215, 23, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(251,215,23,.12);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit:hover {
  background: var(--c-gold-light);
  transform: translateY(-2px);
}

.form-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 0.75rem;
}

.lead-flow {
  color: var(--c-white);
}

.lead-flow__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.lead-flow__step {
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 700;
  padding-bottom: 0.55rem;
}

.lead-flow__step--active {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

.lead-flow__step--done {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
  opacity: 0.55;
}

.lead-flow__panel {
  display: none;
}

.lead-flow__panel--active {
  display: block;
}

.lead-flow__title {
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.lead-flow__title--regular {
  font-weight: 400;
}

.lead-flow__title--regular strong {
  font-weight: 700;
}

.lead-flow__title--pronto {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lead-flow__finish-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.account-choice {
  width: 100%;
  min-height: 96px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 1.35rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: left;
  transition: var(--transition);
}

.account-choice:hover,
.account-choice:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
  border-color: rgba(255, 255, 255, 0.34);
}

.account-choice__icon svg {
  width: 24px;
  height: 24px;
}

.account-choice__arrow {
  font-size: 2rem;
  line-height: 1;
}

.lead-flow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
  row-gap: 1.15rem;
}

.lead-flow__grid .form-group {
  margin-bottom: 0;
}

.lead-flow .form-label {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.15rem;
}

.lead-flow .form-input,
.lead-flow .form-select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 0;
  padding: 0.45rem 0 0.55rem;
  min-height: 42px;
  color-scheme: dark;
}

.lead-flow .form-input:focus,
.lead-flow .form-select:focus {
  background: transparent;
  border-color: var(--c-white);
  box-shadow: none;
}

.lead-flow .form-input:-webkit-autofill,
.lead-flow .form-input:-webkit-autofill:hover,
.lead-flow .form-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--c-white);
  caret-color: var(--c-white);
  box-shadow: 0 0 0 1000px #11151b inset;
  transition: background-color 9999s ease-out;
}

.lead-flow .form-select {
  color: var(--c-white);
}

.lead-flow .form-select option {
  background: #202020;
  color: var(--c-white);
}

.lead-flow__radio {
  border: 0;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 0;
}

.lead-flow__radio .form-label {
  width: 100%;
  flex-basis: 100%;
  margin-bottom: 0.4rem;
}

.lead-flow__radio label,
.lead-flow__terms {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.lead-flow__radio input,
.lead-flow__terms input {
  accent-color: var(--c-gold);
}

.lead-flow__terms {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.5rem 0 1.75rem;
  line-height: 1.45;
}

.lead-flow__terms input {
  width: 18px;
  height: 18px;
  margin-top: 0.12rem;
}

.lead-flow__terms a {
  color: #4aa3ff;
  text-decoration: none;
}

.lead-flow__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.lead-flow__actions .form-submit {
  max-width: 360px;
}

.lead-flow__back {
  min-height: 52px;
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.lead-flow__back:hover {
  color: var(--c-white);
}

.lead-flow__full {
  grid-column: 1 / -1;
}

.lead-flow__status {
  min-height: 1.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  margin-top: 1rem;
}

.lead-flow__company-message {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.form-group .lead-flow__company-message {
  margin-top: 0.45rem;
}

.lead-flow__title + .lead-flow__company-message {
  margin-top: calc(var(--space-md) * -0.65);
  margin-bottom: var(--space-md);
}

.lead-flow__company-message strong {
  color: var(--c-gold);
  font-weight: 700;
}

/* Resumo de confirmação — passo 2 */
.lead-flow__summary {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.lead-flow__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.lead-flow__summary-row:last-child {
  border-bottom: none;
}

.lead-flow__summary-row--highlight {
  background: rgba(251, 215, 23, 0.06);
}

.lead-flow__summary-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

.lead-flow__summary-value {
  font-size: 0.88rem;
  color: var(--c-white);
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.lead-flow__summary-row--highlight .lead-flow__summary-value {
  color: var(--c-gold);
  font-weight: 700;
}

.lead-flow__summary-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
  margin-bottom: 0.25rem;
}

.lead-flow__finish {
  padding-top: 0.5rem;
}

.lead-flow__qr {
  width: 150px;
  height: 150px;
  background: var(--c-white);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.lead-flow__store-link {
  min-height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius-md);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.25rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: var(--transition);
}

.lead-flow__store-link--single {
  max-width: 380px;
  margin: 0 0 var(--space-lg);
}

.lead-flow__store-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lead-flow__store-link--primary {
  background: var(--c-white);
  color: var(--c-dark);
  border-color: var(--c-white);
}

.lead-flow__store-link--primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.lead-flow__help {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-md);
}

.lead-flow__help h4 {
  color: var(--c-white);
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 0.85rem;
}

.lead-flow__help ol {
  color: rgba(255, 255, 255, 0.78);
  padding-left: 1.2rem;
  line-height: 1.7;
}

/* =============================================
   FOOTER — Light
   ============================================= */
.site-footer {
  background: var(--c-bg-subtle);
  border-top: 1px solid var(--c-border);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1.25fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid var(--c-border);
}

.footer__wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-img {
  width: auto;
  height: 46px;
  max-width: 220px;
  object-fit: contain;
}

.footer__wordmark span {
  margin-top: 0.4rem;
  color: var(--c-text-muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: 280px;
}

.footer__social { display: flex; gap: 0.65rem; }

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius-md);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--c-dark);
  border-color: var(--c-dark);
  color: var(--c-gold);
  transform: translateY(-2px);
}

.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--space-md);
}

.footer__col-links { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__col-link {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  transition: var(--transition);
}

.footer__col-link:hover {
  color: var(--c-dark);
  padding-left: 4px;
}

.footer__bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
  margin-top: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
}

.footer__legal-links a {
  color: var(--c-text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}

.footer__legal-links a:hover {
  color: var(--c-dark);
}

.footer__disclaimer {
  max-width: 900px;
  padding-top: var(--space-lg);
  color: var(--c-text-soft);
  font-size: 0.78rem;
  line-height: 1.65;
}

.footer__disclaimer a {
  color: var(--c-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-soft);
}

.footer__certified {
  color: var(--c-text-soft);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.footer__partner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--c-text-soft);
}

.footer__partner-badge {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--c-dark);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(14px);
}

.legal-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.legal-header__logo {
  display: inline-flex;
  align-items: center;
}

.legal-header__logo img {
  width: auto;
  height: 48px;
  max-width: 260px;
  object-fit: contain;
}

.legal-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.legal-header__nav a {
  color: var(--c-text-muted);
  font-size: 0.86rem;
  font-weight: 700;
  transition: var(--transition);
}

.legal-header__nav a:hover {
  color: var(--c-dark);
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, var(--c-bg-subtle) 0, var(--c-white) 280px);
  color: var(--c-dark);
}

.legal-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  background: var(--c-dark);
  border-bottom: 1px solid var(--c-border);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  min-height: 38px;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}

.legal-back:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.legal-hero h1 {
  margin: 0 0 var(--space-sm);
  max-width: 780px;
  color: var(--c-white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.legal-hero .section-eyebrow {
  color: var(--c-gold);
}

.legal-hero p:not(.section-eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.legal-content {
  padding: var(--space-lg) 0 var(--space-xl);
}

.legal-content__inner {
  max-width: 820px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  background: var(--c-white);
  box-shadow: var(--shadow-md);
}

.legal-toc {
  margin-bottom: var(--space-lg);
  padding: clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(251, 215, 23, 0.35);
  border-radius: var(--radius-md);
  background: var(--c-bg-gold-tint);
}

.legal-toc__title {
  margin-bottom: var(--space-xs);
  color: var(--c-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.legal-toc ol {
  padding-left: 1.15rem;
}

.legal-toc li {
  margin-bottom: 0.35rem;
  color: var(--c-text-muted);
  font-size: 0.92rem;
}

.legal-toc a {
  color: var(--c-dark-2);
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--c-gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  scroll-margin-top: 6rem;
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  margin-top: var(--space-lg);
  margin-bottom: 0.7rem;
  color: var(--c-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin-top: var(--space-md);
  margin-bottom: 0.45rem;
  color: var(--c-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.legal-content p {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.78;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 var(--space-sm);
  padding-left: 1.3rem;
}

.legal-content li {
  margin-bottom: 0.45rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.legal-content ul > li { list-style: disc; }
.legal-content ol > li { list-style: decimal; }

.legal-table-wrap {
  overflow-x: auto;
  margin: var(--space-sm) 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  background: var(--c-white);
}

.legal-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--c-border);
}

.legal-table-wrap th {
  background: var(--c-dark);
  color: var(--c-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-table-wrap td {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.legal-table-wrap tr:last-child td {
  border-bottom: 0;
}

.legal-highlight {
  margin: var(--space-sm) 0;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(251, 215, 23, 0.45);
  border-left: 4px solid var(--c-gold);
  border-radius: var(--radius-md);
  background: rgba(255, 216, 60, 0.12);
}

.legal-highlight--warn {
  border-left-color: #ff8a3d;
  background: rgba(255, 138, 61, 0.12);
}

.legal-highlight p {
  margin-bottom: 0.5rem;
}

.legal-highlight p:last-child {
  margin-bottom: 0;
}

.legal-updated {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-border);
  color: var(--c-text-soft);
  font-size: 0.875rem;
}

.legal-footer {
  background: var(--c-dark);
  color: rgba(255, 255, 255, 0.62);
  padding: var(--space-md) 0;
}

.legal-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.legal-footer p,
.legal-footer a {
  font-size: 0.78rem;
}

.legal-footer a {
  color: var(--c-gold);
  font-weight: 700;
}

/* =============================================
   DICA DE DESLIZE — CARROSSEIS MOBILE
   ============================================= */
.carousel-hint {
  display: none;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--c-text-soft);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.75rem;
  pointer-events: none;
  user-select: none;
}

/* =============================================
   BOTÃO FLUTUANTE MOBILE (FAB)
   ============================================= */
.mobile-fab {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 1rem;
  right: 1rem;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-fab--visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mobile-fab__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--c-gold);
  color: var(--c-dark);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.mobile-fab__btn:active {
  transform: scale(0.97);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .mobile-fab { display: block; }
}

/* =============================================
   ANIMAÇÕES DE ENTRADA
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in--delay-1 { transition-delay: 0.10s; }
.fade-in--delay-2 { transition-delay: 0.20s; }
.fade-in--delay-3 { transition-delay: 0.30s; }
.fade-in--delay-4 { transition-delay: 0.40s; }

/* =============================================
   RESPONSIVIDADE — Mobile-first
   ============================================= */

/* Tablet */
/* =============================================
   TABLET — até 1024px
   ============================================= */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__subtext    { margin-left: auto; margin-right: auto; }
  .hero__actions    { justify-content: center; }
  .hero__trust      { justify-content: center; }
  .hero__visual     { order: -1; }
  .hero__cards-visual {
    width: min(100%, 520px);
    min-height: 430px;
    margin: 0 auto;
  }
  .hero__stats      { text-align: left; }

  .stats-bar__grid  { grid-template-columns: repeat(3, 1fr); }
  .stats-bar__divider { display: none; }

  .programa__intro  { grid-template-columns: 1fr; gap: var(--space-md); }
  .programa__flow   { grid-template-columns: repeat(2, 1fr); }

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

  .premios__hero-grid { grid-template-columns: 1fr; }
  .premios__image-wrap {
    width: min(100%, 420px);
    justify-self: center;
  }

  .como-abrir__grid { grid-template-columns: 1fr; }
  .como-abrir__intro { position: static; }

  .faq__layout      { grid-template-columns: 1fr; }
  .faq__intro       { position: static; }
  .contato__layout  { grid-template-columns: 1fr; }
  .contato__form    { transform: none; justify-self: stretch; max-width: none; }

  .footer__top      { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
}

/* =============================================
   MOBILE — até 768px
   ============================================= */
@media (max-width: 768px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 3.5rem;
  }

  /* Navbar */
  .nav { display: flex; justify-content: space-between; }
  .nav__links,
  .nav__actions     { display: none; }
  .nav__hamburger   { display: flex; }
  .nav__logo-img    { height: 48px; }

  /* Hero */
  .hero { min-height: auto; }
  .hero__inner      { padding: var(--space-xl) 0 var(--space-2xl); gap: var(--space-lg); }
  .hero__headline   { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__subtext    { font-size: 0.95rem; }
  .hero__cards-visual {
    width: min(100%, 440px);
    min-height: 320px;
  }
  .hero__card-float { display: none; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats {
    text-align: center;
    margin-bottom: var(--space-xl);
  }
  .hero__stats .stats-bar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }
  .hero__stats .stat-item {
    padding: 0.55rem 0.35rem;
  }
  .hero__stats .stat-item__number {
    font-size: 1.2rem;
  }
  .hero__stats .stat-item__label {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  /* Programa — carrossel */
  .programa__flow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  .programa__flow::-webkit-scrollbar { display: none; }
  .programa__flow .programa-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }
  .programa__cta { flex-direction: column; align-items: flex-start; }

  /* Produtos — carrossel */
  .products-grid-wrap {
    position: relative;
  }
  .products-grid-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: var(--space-sm);
    width: 3.5rem;
    background: linear-gradient(to right, transparent, var(--c-white));
    pointer-events: none;
    z-index: 1;
  }
  .products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  .products-grid::-webkit-scrollbar { display: none; }
  .products-grid .product-card {
    flex: 0 0 72vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Prêmios — carrossel */
  .premios__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
  }
  .premios__cards::-webkit-scrollbar { display: none; }
  .premios__cards .award-card {
    flex: 0 0 78vw;
    max-width: 300px;
    scroll-snap-align: start;
  }

  /* Dica de scroll nos carrosseis mobile */
  .programa__flow::after,
  .products-grid::after,
  .premios__cards::after {
    content: '';
    flex: 0 0 0.5rem;
  }

  /* Hint textual de deslize — visível só no mobile */
  .carousel-hint { display: block; }

  /* Tarifas — só C6 Empresas no mobile */
  .tarifas-toggle-wrap { display: none; }
  .tarifas-table thead th:last-child,
  .tarifas-table tbody td:last-child { display: none; }
  .tarifas-table td,
  .tarifas-table th { padding: 0.75rem; font-size: 0.88rem; }

  /* Como funciona */
  .como-abrir__grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .como-abrir__intro { position: static; }
  .como-abrir__title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .como-abrir__step-num { font-size: 2rem; }

  /* Depoimentos */
  .depoimentos__carousel {
    grid-auto-columns: calc(100% - 1rem);
  }

  /* Contato */
  .contato__layout  { grid-template-columns: 1fr; gap: var(--space-lg); }
  .contato__info    { gap: var(--space-md); }
  .contato__form    { transform: none; justify-self: stretch; max-width: none; }
  .lead-flow__grid  { grid-template-columns: 1fr; }
  .lead-flow__actions { align-items: stretch; flex-direction: column-reverse; }
  .lead-flow__actions .form-submit,
  .lead-flow__back { width: 100%; max-width: none; }

  /* FAQ */
  .faq__layout      { grid-template-columns: 1fr; }
  .faq__intro       { position: static; margin-bottom: var(--space-md); }

  /* Footer */
  .footer__top      { grid-template-columns: 1fr; }
  .footer__bottom   { flex-direction: column; text-align: center; gap: var(--space-sm); }

  /* Legal */
  .legal-header__inner {
    min-height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .legal-header__nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .legal-header__nav a { font-size: 0.82rem; }
  .legal-content__inner {
    padding: 1.25rem;
    border-radius: var(--radius-md);
  }
  .legal-table-wrap table { min-width: 560px; }
}

/* =============================================
   MOBILE PEQUENO — até 480px
   ============================================= */
@media (max-width: 480px) {
  :root {
    --space-xl:  2rem;
    --space-2xl: 3rem;
  }

  /* Container */
  .container { padding: 0 1rem; }

  /* Tipografia */
  .heading-xl { font-size: clamp(1.8rem, 8vw, 2.6rem); }

  /* Hero */
  .hero__inner {
    text-align: left;
    gap: 1.35rem;
    padding-top: 1.65rem;
  }
  .hero__visual {
    order: 0;
    width: 100%;
  }
  .hero__actions {
    align-items: stretch;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero__cards-visual {
    min-height: 230px;
    max-width: 340px;
  }
  .hero__visual-card--account { width: 86%; right: 0; }
  .hero__visual-card--pay     { width: 58%; }
  .hero__stats {
    margin-top: var(--space-md);
    margin-bottom: var(--space-xl);
  }
  .hero__stats .stats-bar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
  }

  /* Prêmios */
  .premios__cards { grid-template-columns: 1fr; }
  .premios__tags  { flex-wrap: wrap; gap: 0.4rem; }

  /* Tarifas */
  .tarifas-toggle { width: 100%; justify-content: center; }
  .tarifas-toggle__btn { flex: 1; text-align: center; }

  /* Como funciona */
  .como-abrir__step { grid-template-columns: 52px 1fr; gap: 1rem; }
  .como-abrir__step-num { font-size: 1.6rem; }

  /* Depoimentos */
  .depoimentos__carousel { grid-auto-columns: 100%; }

  /* Contato form */
  .btn--lg { padding: 0.9rem 1.2rem; font-size: 0.9rem; }
  .contato__form { padding: 1.1rem; border-radius: var(--radius-lg); }
  .lead-flow__steps { gap: 0.4rem; margin-bottom: 2rem; }
  .lead-flow__step { font-size: 0.68rem; }
  .account-choice { min-height: 92px; font-size: 1rem; padding: 1rem; }
  .lead-flow__title { font-size: 1.55rem; }
  .lead-flow__store-link--single { max-width: none; }

  .lead-flow:has(.lead-flow__panel[data-step="2"].lead-flow__panel--active) .lead-flow__steps,
  .lead-flow__panel[data-step="2"] .lead-flow__title {
    margin-bottom: 0.8rem;
  }

  .lead-flow__panel[data-step="2"] .lead-flow__title {
    font-size: 1.35rem;
    line-height: 1.08;
  }

  .lead-flow__panel[data-step="2"] .lead-flow__company-message {
    font-size: 0.78rem;
    line-height: 1.3;
    margin-bottom: 0.85rem;
  }

  .lead-flow__grid--address {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    column-gap: 0.8rem;
    row-gap: 0.62rem;
  }

  .lead-flow__grid--address .form-group {
    min-width: 0;
  }

  .lead-flow__grid--address .lead-flow__full:first-child {
    grid-column: auto;
  }

  .lead-flow__grid--address .lead-flow__full:last-child,
  .lead-flow__grid--address .form-group:has(#contact-rua) {
    grid-column: 1 / -1;
  }

  .lead-flow__grid--address .form-label {
    font-size: 0.76rem;
    margin-bottom: 0;
  }

  .lead-flow__grid--address .form-input,
  .lead-flow__grid--address .form-select {
    min-height: 44px;
    padding: 0.2rem 0 0.36rem;
    font-size: 0.88rem;
  }

  .lead-flow__panel[data-step="2"] .lead-flow__actions {
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 1rem;
  }

  .lead-flow__panel[data-step="2"] .lead-flow__actions .form-submit,
  .lead-flow__panel[data-step="2"] .lead-flow__back {
    min-height: 44px;
    width: auto;
  }

  .lead-flow__panel[data-step="2"] .lead-flow__actions .form-submit {
    flex: 1;
  }

  /* FAQ */
  .faq__question-btn { font-size: 0.9rem; padding: var(--space-sm); }

  /* Nav mobile */
  .nav__mobile { padding: var(--space-md); gap: var(--space-sm); }
  .nav__mobile-link { font-size: 1.1rem; }

  /* Legal */
  .legal-header__logo img { height: 40px; }
  .legal-header__nav {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .legal-header__nav::-webkit-scrollbar { display: none; }
  .legal-hero { padding: var(--space-lg) 0; }
  .legal-content { padding: var(--space-md) 0 var(--space-lg); }
  .legal-content__inner {
    padding: 1rem;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
  .legal-toc { padding: 1rem; }
  .legal-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =============================================
   FORM DRAWER — painel lateral / bottom sheet
   ============================================= */
.form-drawer {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
  visibility: hidden;
}

.form-drawer--open {
  pointer-events: auto;
  visibility: visible;
}

.form-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.form-drawer--open .form-drawer__overlay {
  opacity: 1;
}

.form-drawer__panel {
  position: relative;
  z-index: 1;
  width: 500px;
  max-width: 100%;
  height: 100%;
  background: var(--c-surface, #111);
  border-left: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.form-drawer--open .form-drawer__panel {
  transform: translateX(0);
}

.form-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--c-border);
  flex-shrink: 0;
}

.form-drawer__title {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.68);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-text-soft);
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  line-height: 0;
}

.form-drawer__close:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.07);
}

.form-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}

.form-drawer__body::-webkit-scrollbar { width: 4px; }
.form-drawer__body::-webkit-scrollbar-track { background: transparent; }
.form-drawer__body::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 2px; }

/* Overrides desktop do lead-flow dentro do drawer */
.form-drawer__body .lead-flow__title {
  max-width: none;
}

/* Radio sócios ocupa as 2 colunas em qualquer tamanho */
.form-drawer__body .lead-flow__radio {
  grid-column: 1 / -1;
}

/* Mobile: bottom sheet + form compacto */
@media (max-width: 768px) {
  .form-drawer {
    align-items: flex-end;
    justify-content: stretch;
  }

  .form-drawer__panel {
    width: 100%;
    height: auto;
    max-height: 96dvh;
    border-left: none;
    border-top: 1px solid var(--c-border);
    border-radius: 18px 18px 0 0;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Drag handle visual — indica que o painel pode ser fechado */
  .form-drawer__panel::before {
    content: '';
    display: block;
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 2px;
    margin: 10px auto 2px;
    flex-shrink: 0;
  }

  .form-drawer--open .form-drawer__panel {
    transform: translateY(0);
  }

  .form-drawer__header {
    padding: 0.55rem 1rem 0.5rem;
  }

  .form-drawer__body {
    padding: 1rem 1rem 1.2rem;
  }

  .form-drawer__body .lead-flow__steps {
    margin-bottom: 0.85rem;
  }

  .form-drawer__body .lead-flow__title {
    font-size: 1.05rem;
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  /* 2 colunas no mobile dentro do drawer */
  .form-drawer__body .lead-flow__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 0.85rem;
    column-gap: 0.85rem;
  }

  .form-drawer__body .lead-flow .form-input,
  .form-drawer__body .lead-flow .form-select {
    min-height: 38px;
    padding: 0.3rem 0 0.4rem;
    font-size: 0.93rem;
  }

  .form-drawer__body .lead-flow .form-label {
    font-size: 0.8rem;
  }

  .form-drawer__body .lead-flow__terms {
    margin: 0.9rem 0 0;
    font-size: 0.82rem;
    line-height: 1.4;
    gap: 0.6rem;
  }

  .form-drawer__body .lead-flow__actions {
    margin-top: 1rem;
  }

  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__title {
    font-size: 1.18rem;
    margin-bottom: 0.65rem;
  }

  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__company-message {
    font-size: 0.78rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }

  .form-drawer__body .lead-flow__grid--address {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    row-gap: 0.58rem;
    column-gap: 0.75rem;
  }

  .form-drawer__body .lead-flow__grid--address .lead-flow__full:first-child {
    grid-column: auto;
  }

  .form-drawer__body .lead-flow__grid--address .lead-flow__full:last-child,
  .form-drawer__body .lead-flow__grid--address .form-group:has(#contact-rua) {
    grid-column: 1 / -1;
  }

  .form-drawer__body .lead-flow__grid--address .form-input,
  .form-drawer__body .lead-flow__grid--address .form-select {
    min-height: 44px;
    padding: 0.18rem 0 0.32rem;
    font-size: 0.88rem;
  }

  .form-drawer__body .lead-flow__grid--address .form-label {
    font-size: 0.74rem;
    margin-bottom: 0;
  }

  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__actions {
    flex-direction: row;
    gap: 0.6rem;
    margin-top: 0.85rem;
  }

  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__actions .form-submit,
  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__back {
    min-height: 44px;
    width: auto;
  }

  .form-drawer__body .lead-flow__panel[data-step="2"] .lead-flow__actions .form-submit {
    flex: 1;
  }

  .form-drawer__body .account-choice {
    min-height: 68px;
    padding: 0.9rem 1.1rem;
  }
}
