:root {
  --roxo: #6f3cc3;
  --roxo-2: #4b1f83;
  --verde: #10a86b;
  --verde-2: #0b7a4d;
  --preto: #15121a;
  --texto: #292431;
  --muted: #6b6375;
  --fundo: #f8f6fc;
  --soft: #f3ecfa;
  --branco: #ffffff;
  --borda: #e7dff2;
  --sombra: 0 24px 70px rgba(41, 30, 65, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--texto);
  background: var(--fundo);
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  color: var(--preto);
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: .96;
  letter-spacing: -.06em;
}
h2 {
  margin: 0 0 16px;
  color: var(--preto);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
h3 { margin: 0 0 10px; color: var(--preto); }
p { color: var(--muted); line-height: 1.72; }
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--roxo);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 999;
}
.skip-link:focus { left: 8px; }
.menu-toggle-input { position: absolute; opacity: 0; pointer-events: none; }
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 246, 252, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(231, 223, 242, .86);
}
.nav-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 180px;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
.nav-links a {
  text-decoration: none;
  transition: color .16s ease;
}
.nav-links a:hover { color: var(--roxo); }
.mobile-button {
  display: none;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--roxo);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.drawer { display: none; }
.drawer-backdrop { display: none; }
.drawer-panel { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 14px 32px rgba(16, 168, 107, .24);
}
.btn-primary:hover { background: var(--verde-2); }
.btn-outline {
  color: var(--roxo-2);
  background: #fff;
  border-color: var(--borda);
}
.btn-outline:hover { border-color: rgba(111, 60, 195, .32); }
.section { padding: 84px 0; }
.hero {
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(111, 60, 195, .17), transparent 34%),
    radial-gradient(circle at bottom right, rgba(16, 168, 107, .14), transparent 36%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 44px;
}
.badge,
.label,
.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(16, 168, 107, .12);
  color: var(--verde-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.badge { margin-bottom: 18px; }
.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  font-size: 18px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 14px;
}
.hero-note { margin: 0; font-size: 13px; }
.hero-card,
.pillar,
.service-card,
.embed-card,
.warning-box,
.service-note,
.faq-list details,
.cta-box {
  background: rgba(255, 255, 255, .92);
  border: 1px solid var(--borda);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(41, 30, 65, .08);
}
.hero-card { padding: 30px; }
.hero-card h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 16px; }
.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--verde);
  font-weight: 950;
}
.soft { background: #fff; }
.section-title { max-width: 820px; }
.section-text { max-width: 760px; margin-top: 0; }
.section-center { max-width: 800px; margin: 0 auto 32px; text-align: center; }
.section-center .label { margin-inline: auto; }
.pillars,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.service-grid:not(.three) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pillar,
.service-card { padding: 24px; }
.icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--roxo);
  color: #fff;
  font-weight: 950;
  margin-bottom: 16px;
}
.service-card h3,
.pillar h3 { color: var(--roxo-2); }
.service-card.highlight { border-color: rgba(16, 168, 107, .36); }
.simulator-section {
  background: linear-gradient(180deg, #fff 0%, var(--fundo) 100%);
}
.embed-card {
  padding: 12px;
  overflow: hidden;
  box-shadow: var(--sombra);
}
.embed-card iframe {
  display: block;
  width: 100%;
  min-height: 1510px;
  border: 0;
  border-radius: 18px;
  background: #fff;
}
.iframe-help {
  text-align: center;
  font-size: 14px;
}
.iframe-help a { color: var(--roxo); font-weight: 900; }
.warning-box {
  padding: 30px;
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 28px;
  border-left: 6px solid var(--verde);
}
.warning-box p { margin: 0; }
.service-note {
  margin-top: 16px;
  padding: 20px 24px;
}
.service-note p { margin: 8px 0; }
.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.faq-list details { padding: 18px 22px; }
.faq-list summary {
  cursor: pointer;
  color: var(--roxo-2);
  font-weight: 950;
}
.faq-list p { margin-bottom: 0; }
.cta-final { padding-top: 42px; }
.cta-box {
  padding: 36px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: linear-gradient(135deg, #fff, #f3ecfa);
}
.cta-box p { margin-bottom: 0; }
.cta-box > div { max-width: 720px; }
.footer {
  padding: 50px 0;
  color: #fff;
  background: var(--preto);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 30px;
}
.footer-logo {
  width: 210px;
  max-width: 70%;
  margin-bottom: 12px;
}
.footer p,
.footer a { color: rgba(255, 255, 255, .74); }
.footer a { text-decoration: none; }
.footer a:hover { color: #fff; }

@media (max-width: 1000px) {
  .nav-links,
  .nav-cta { display: none; }
  .mobile-button { display: inline-flex; }
  .hero-grid,
  .warning-box,
  .footer-grid { grid-template-columns: 1fr; }
  .pillars,
  .service-grid,
  .service-grid:not(.three) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .drawer { display: block; }
  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .34);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease;
    z-index: 25;
  }
  .drawer-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 380px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    background: #fff;
    box-shadow: -24px 0 60px rgba(0,0,0,.18);
    transform: translateX(105%);
    transition: transform .2s ease;
    z-index: 26;
  }
  .menu-toggle-input:checked ~ .drawer .drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-toggle-input:checked ~ .drawer .drawer-panel { transform: translateX(0); }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .drawer-close {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--soft);
    color: var(--roxo-2);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }
  .drawer-links {
    display: grid;
    gap: 6px;
  }
  .drawer-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--borda);
    text-decoration: none;
    color: var(--texto);
    font-weight: 800;
  }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-inner { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-logo { height: 42px; }
  .hero { padding: 48px 0 62px; }
  .section { padding: 58px 0; }
  h1 { font-size: clamp(34px, 12vw, 46px); }
  .hero-lead { font-size: 16px; }
  .hero-cta .btn { width: 100%; }
  .pillars,
  .service-grid,
  .service-grid.three,
  .service-grid:not(.three) { grid-template-columns: 1fr; }
  .hero-card,
  .pillar,
  .service-card,
  .warning-box,
  .cta-box { padding: 22px; }
  .embed-card { padding: 8px; border-radius: 18px; }
  .embed-card iframe { min-height: 1860px; border-radius: 12px; }
  .footer-grid { gap: 20px; }
  .footer-logo { width: 190px; }
}

@media (max-width: 390px) {
  .container { width: min(100% - 22px, 1120px); }
  .embed-card iframe { min-height: 1940px; }
}

@media (max-width: 560px){.embed-card iframe{min-height:1900px}.hero{padding-top:58px}.section{padding:56px 0}}
