/* =============================================
   VOOM — CSS DESIGN SYSTEM
   Fiel ao KV da agência (Jun 2025)
   ============================================= */

:root {
  --blue:       #0033FF;
  --orange:     #FF5500;
  --yellow:     #F5C400;
  --dark-blue:  #001A66;
  --white:      #FFFFFF;
  --light-gray: #F4F4F4;
  --text-dark:  #1A1A2E;
  --radius-btn: 8px;
  --radius-card: 16px;
  --transition: 0.2s ease;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Chillax', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
}

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

/* ── BOTÕES ─────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-btn);
  font-family: 'Chillax', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.18); }

.btn-yellow  { background: var(--yellow); color: var(--text-dark); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-blue    { background: var(--blue); color: var(--white); }

/* ── SEÇÕES ─────────────────────────────── */

section { width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  text-align: center;
  margin-bottom: 48px;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */

header {
  background: var(--blue);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 68px;
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Alinhamento dinâmico via flex order */
.header-inner.logo-left .logo { order: 1; }
.header-inner.logo-left nav { order: 2; }
.header-inner.logo-left .header-actions { order: 3; }

.header-inner.logo-center .logo { order: 2; }
.header-inner.logo-center nav { order: 1; }
.header-inner.logo-center .header-actions { order: 3; }

.header-inner.logo-right .logo { order: 3; }
.header-inner.logo-right nav { order: 2; }
.header-inner.logo-right .header-actions { order: 1; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
}
.logo img {
  height: 28px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Dropdown Menu no Cabeçalho */
.nav-item-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-item-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid var(--white);
  opacity: 0.8;
  transition: transform var(--transition);
}
.nav-item-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-blue);
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 1000;
  border: 1px solid rgba(255,255,255,0.15);
}
.nav-item-dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  transition: background var(--transition);
  text-align: left;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
}

nav a {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.9;
  transition: opacity var(--transition);
}
nav a:hover { opacity: 1; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  width: 38px;
  height: 38px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}
.btn-whatsapp-header:hover { transform: scale(1.08); }
.btn-whatsapp-header svg { width: 20px; height: 20px; fill: white; }

.btn-fale {
  padding: 9px 20px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-fale:hover { background: var(--white); color: var(--blue); }

/* hamburguer */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s;
}

/* mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-blue);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}
.mobile-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}
.mobile-dropdown-trigger::after {
  content: '▼';
  font-size: 12px;
  transition: transform var(--transition);
}
.mobile-nav-dropdown.open .mobile-dropdown-trigger::after {
  transform: rotate(180deg);
}
.mobile-dropdown-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 16px 0;
  border-radius: 8px;
}
.mobile-nav-dropdown.open .mobile-dropdown-menu {
  display: flex;
}
.mobile-dropdown-menu a {
  font-size: 18px;
  opacity: 0.9;
}

/* ══════════════════════════════════════════
   HERO / BANNER
   ══════════════════════════════════════════ */

#hero {
  background: var(--blue);
  padding-top: 68px; /* header height */
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 0px; /* Reduced bottom padding since image lies flat */
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  padding-bottom: 40px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-content p {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.6;
  max-width: 450px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-tagline {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}
.hero-tagline strong {
  color: var(--yellow);
  font-weight: 700;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100%;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
}

#hero-img {
  z-index: 2;
}

#hero-img-bg {
  position: absolute;
  z-index: 1;
}

/* curvas decorativas laranja */
.hero-arc-img {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 80%;
  max-height: 380px;
  width: auto;
  z-index: 1;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   O QUE É A VOOM
   ══════════════════════════════════════════ */

#o-que-e-voom {
  background: var(--white);
  padding: 60px 0;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid #eee;
}

.o-que-e-voom-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 3;
}

.o-que-e-voom-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.o-que-e-voom-content .highlight-paragraph {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.o-que-e-voom-content .blue-text {
  color: var(--blue);
}

.o-que-e-voom-content .yellow-text {
  color: var(--yellow);
}

.o-que-e-voom-visual {
  position: relative;
  width: 100%;
  height: 250px;
  margin-top: 40px;
}

.o-que-e-voom-images {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  height: 100%;
  width: 100%;
}

.o-que-e-voom-img-motos {
  position: absolute;
  left: 24px;
  bottom: 0;
  max-height: 220px;
  width: auto;
  z-index: 3;
  transition: transform var(--transition);
}

.o-que-e-voom-img-arco {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 200px;
  width: auto;
  z-index: 2;
  transition: transform var(--transition);
  pointer-events: none;
}

@media (max-width: 768px) {
  .o-que-e-voom-visual {
    height: auto !important;
    min-height: 0 !important;
    margin-top: 20px;
  }
  .o-que-e-voom-images {
    position: relative;
    height: auto !important;
    padding: 0;
  }
  .o-que-e-voom-img-motos {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    max-height: 160px;
    max-width: 100%;
    margin: 20px auto 0 auto;
    display: block;
  }
  .o-que-e-voom-img-arco {
    display: none !important;
  }
}

/* ══════════════════════════════════════════
   COMO FUNCIONA
   ══════════════════════════════════════════ */

#como-funciona {
  background: var(--white);
  padding: 80px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  position: relative;
}

/* linha pontilhada entre steps */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -4px;
  width: calc(100% - 60px);
  height: 2px;
  left: calc(50% + 28px);
  border-top: 2px dashed #BBCAFF;
}

.step-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 16px;
}

.step-num {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 28px;
  height: 28px;
  background: var(--blue);
  border-radius: 50%;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-icon {
  width: 72px;
  height: 72px;
  border: 2px solid #D0D8FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}
.step-icon svg { width: 32px; height: 32px; stroke: var(--blue); fill: none; stroke-width: 1.5; }

.step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   PLANOS
   ══════════════════════════════════════════ */

#planos {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.planos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.plano-card {
  border-radius: var(--radius-card);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  min-height: 620px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.plano-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.plano-card.azul  { background: var(--blue); }
.plano-card.laranja { background: var(--orange); }

.plano-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--text-dark);
  font-family: 'Chillax', sans-serif;
  font-weight: 700;
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 10;
}

.plano-number-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  text-transform: lowercase;
}
.plano-number-badge .num-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.plano-card h3 {
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.1;
}

.plano-headline {
  font-size: 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
  margin-bottom: 24px;
}

.plano-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
  max-width: 460px;
  width: 100%;
}

.plano-topic-capsule {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 11px;
  line-height: 1.15;
  width: 100%;
  height: 48px;
  box-sizing: border-box;
}

.plano-topic-capsule.blue-pill {
  background: var(--blue);
}

.plano-topic-capsule.orange-pill {
  background: var(--orange);
}

.plano-topic-capsule .topic-icon-wrap {
  width: 30px;
  height: 30px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.plano-topic-capsule .topic-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.plano-topic-capsule .topic-text {
  flex-grow: 1;
}

.plano-footer-section {
  margin-top: auto;
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.plano-footer-text {
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.plano-action-row {
  margin-bottom: 20px;
}

.plano-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.plano-moto-img {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 320px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  transition: transform var(--transition);
}

/* Sincronia de Layout nos dois planos para garantir que os grids tenham o mesmo tamanho */
.plano-card.azul .plano-header,
.plano-card.azul .plano-topics-grid,
.plano-card.azul .plano-footer-section {
  margin-left: auto;
  margin-right: 0;
  max-width: 460px;
  width: 100%;
}

.plano-card.laranja .plano-header,
.plano-card.laranja .plano-topics-grid,
.plano-card.laranja .plano-footer-section {
  margin-left: 0;
  margin-right: auto;
  max-width: 460px;
  width: 100%;
}

.plano-card.azul .plano-moto-img {
  right: auto;
  left: -20px;
}

@media (max-width: 992px) {
  .plano-moto-img {
    width: 240px;
  }
  .plano-card.azul .plano-moto-img {
    left: -10px;
  }
}

@media (max-width: 768px) {
  .planos-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .plano-card {
    min-height: auto;
    padding: 36px 24px;
  }
  .plano-topics-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
    gap: 12px;
    max-width: 100%;
  }
  .plano-moto-img {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 260px;
    margin: 24px auto 0 auto;
    display: block;
  }
}

/* ══════════════════════════════════════════
   POR QUE VOOM
   ══════════════════════════════════════════ */

#por-que {
  background: var(--white);
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.diferencial-icon {
  width: 80px;
  height: 80px;
  border: 2px solid #CCC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diferencial-icon svg { width: 36px; height: 36px; }

.diferencial h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
}
.diferencial p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

/* ══════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════ */

#faq {
  background: var(--light-gray);
  padding: 80px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  gap: 12px;
  user-select: none;
}
.faq-question:hover { background: #f9f9f9; }

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 0 20px;
}
.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px;
}

/* ══════════════════════════════════════════
   CTA FINAL
   ══════════════════════════════════════════ */

#cta-final {
  background: var(--blue);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.cta-final-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-final-content {
  padding-bottom: 80px;
}
.cta-final-content h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: none;
  letter-spacing: 0;
}
.cta-final-content p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.cta-final-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
}

/* arco decorativo */
.cta-arc-img {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  max-height: 480px;
  width: auto;
  z-index: 1;
  pointer-events: none;
  transform: scaleX(-1);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */

footer {
  background: var(--dark-blue);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

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

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

.footer-logo img {
  height: 28px;
  width: auto;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
  width: 100%;
}

.footer-author {
  display: inline-block;
  margin-left: 24px;
}

/* ══════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════ */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-wpp 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  animation: none;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-wpp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
}

/* ══════════════════════════════════════════
   MODAL DE LEAD
   ══════════════════════════════════════════ */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,51,0.65);
  backdrop-filter: blur(4px);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%;
  max-width: 480px;
  padding: 40px;
  position: relative;
  animation: modal-in 0.25s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #999;
  line-height: 1;
}
.modal-close:hover { color: var(--text-dark); }

.modal-header {
  margin-bottom: 28px;
}
.modal-header .modal-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 8px;
}
.modal-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}
.modal-header p {
  font-size: 15px;
  color: #666;
  margin-top: 6px;
}

.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  font-family: 'Chillax', sans-serif;
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }

.form-radios {
  display: flex;
  gap: 12px;
}
.form-radio {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 2px solid #E0E0E0;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}
.form-radio:has(input:checked) {
  border-color: var(--blue);
  background: #F0F3FF;
}
.form-radio input[type="radio"] { width: 16px; height: 16px; accent-color: var(--blue); }
.form-radio span { font-size: 14px; font-weight: 500; }

.btn-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 17px;
}

/* success state */
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success.show { display: block; }
.success-icon {
  width: 72px;
  height: 72px;
  background: #E8FFF1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; stroke: #25D366; fill: none; stroke-width: 2; }
.modal-success h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.modal-success p { color: #666; font-size: 15px; line-height: 1.5; }

/* ══════════════════════════════════════════
   AREA ADMIN PREVIEW (badge)
   ══════════════════════════════════════════ */

.admin-badge {
  position: fixed;
  top: 80px;
  right: 16px;
  background: var(--text-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 99;
  opacity: 0.7;
}

/* ══════════════════════════════════════════
   RESPONSIVO — TABLET & MOBILE
   ══════════════════════════════════════════ */

/* Breakpoint para telas médias (Tablets) */
@media (max-width: 992px) {
  nav, .header-actions .btn-fale { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .planos-grid { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 14px; }
}

/* Breakpoint para telas pequenas (Celulares) */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 0px;
    gap: 24px;
  }
  .hero-content {
    padding-bottom: 0px;
  }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 15px; max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-image img { max-width: 100%; margin: 0 auto; }
  .hero-arc-img {
    display: none !important;
  }
  
  /* Evitar transformações no celular que empurram o banner para fora */
  #hero-img {
    transform: none !important;
  }
  #hero-img-bg {
    transform: none !important;
    display: none !important;
  }
  .cta-arc-img {
    display: none !important;
  }

  .section-title { font-size: 26px; margin-bottom: 32px; }

  /* Como Funciona - Linha tracejada vertical */
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step::after { display: none; }
  .step { flex-direction: row; text-align: left; gap: 20px; }
  .step-number-wrap {
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .step-icon {
    position: relative;
    z-index: 1;
  }
  .step:not(:last-child) .step-number-wrap::after {
    content: '';
    position: absolute;
    top: 72px; /* abaixo do ícone de 72px */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 36px;
    border-left: 2px dashed #BBCAFF;
    z-index: 0;
  }

  /* Planos - Layout absoluto da moto para evitar vazamentos */
  .plano-card {
    padding: 24px 20px;
    overflow: hidden;
  }
  .plano-card h3 { font-size: 26px; }
  .plano-card.azul .plano-header,
  .plano-card.azul .plano-topics-grid,
  .plano-card.azul .plano-footer-section,
  .plano-card.laranja .plano-header,
  .plano-card.laranja .plano-topics-grid,
  .plano-card.laranja .plano-footer-section {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .plano-card-footer {
    display: block;
    margin-top: auto;
    position: static;
  }
  .plano-moto-img {
    display: none !important;
  }
  .plano-card.azul .plano-moto-img {
    display: none !important;
  }
  .plano-card .btn {
    position: relative;
    z-index: 2;
    padding: 12px 20px;
    font-size: 14px;
  }

  .diferenciais-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .faq-grid { grid-template-columns: 1fr; }

  .cta-final-inner { grid-template-columns: 1fr; gap: 20px; }
  .cta-final-content { padding-bottom: 20px; }
  .cta-final-content h2 { font-size: 36px; }
  .cta-final-image img { max-width: 100%; margin: 0 auto; }

  .footer-author {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }

  .whatsapp-float { bottom: 20px; right: 16px; }

  /* Centralizar logo e menu do footer no mobile */
  .footer-inner {
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    align-items: center;
    text-align: center;
  }

  /* Evitar que o carimbo/badge fique em cima do nome do plano no mobile */
  .plano-badge {
    top: 20px;
    right: 20px;
  }
  .plano-card h3,
  .plano-title {
    padding-right: 110px;
  }
}
