:root {
  --navy: #06112a;
  --navy-soft: #0d1c3f;
  --navy-card: #182746;
  --navy-card-border: rgba(255, 255, 255, 0.12);
  --text: #1f2937;
  --text-soft: #667085;
  --line: #dbe4ef;
  --surface: #ffffff;
  --surface-alt: #f5f7fb;
  --surface-soft: #eef3f9;
  --primary: #0b1735;
  --primary-strong: #081229;
  --primary-accent: #1b3b8d;
  --border: #e3e8f0;
  --success: #0f7b47;
  --danger: #b42318;
  --shadow: 0 18px 45px rgba(10, 20, 40, 0.08);
  --shadow-soft: 0 10px 26px rgba(10, 20, 40, 0.05);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1140px;
  --transition: 0.24s ease;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--surface-alt);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.center {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.72;
}

.section,
.site-footer {
  position: relative;
}

.section {
  padding: 118px 0;
}

.section-light {
  background: var(--surface-alt);
}

.section-soft {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fc 100%);
}

.section-dark {
  background: linear-gradient(180deg, #06112a 0%, #081736 100%);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 54px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 23, 53, 0.07);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-subtitle {
  margin-top: 22px;
  font-size: 1.06rem;
  color: var(--text-soft);
}

.light-text h2,
.light-text .section-subtitle,
.light-text .section-eyebrow {
  color: #fff;
}

.light-text .section-eyebrow {
  background: rgba(255, 255, 255, 0.08);
}

.light-text .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
}

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

.brand img {
  width: 132px;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 0.96rem;
}

.nav a {
  position: relative;
  color: #24324a;
  font-weight: 500;
  transition: color var(--transition);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: var(--primary);
  transition: transform var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: #000;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--primary);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(8, 18, 41, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--primary-strong);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  overflow: hidden;
  padding: 90px 0 92px;
  background:
    radial-gradient(circle at 15% 20%, rgba(18, 42, 95, 0.09), transparent 18%),
    radial-gradient(circle at 85% 10%, rgba(18, 42, 95, 0.08), transparent 20%),
    linear-gradient(180deg, #fbfcfe 0%, #eef3f8 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 41, 55, 0.028) 0 1px, transparent 1px) 0 0 / 160px 100%,
    linear-gradient(0deg, rgba(31, 41, 55, 0.028) 0 1px, transparent 1px) 0 0 / 100% 160px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.36;
  pointer-events: none;
}

.hero-glow-left {
  left: -90px;
  top: 50px;
  width: 260px;
  height: 260px;
  background: rgba(15, 66, 153, 0.12);
}

.hero-glow-right {
  right: -60px;
  top: 40px;
  width: 310px;
  height: 310px;
  background: rgba(11, 23, 53, 0.12);
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11, 23, 53, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #182233;
  text-wrap: balance;
}

.hero-description {
  max-width: 760px;
  margin: 28px auto 0;
  font-size: 1.12rem;
  color: #5f6c7d;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.button {
  position: relative;
  min-height: 54px;
  padding: 0 26px;
  overflow: hidden;
  font-size: 0.97rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition);
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #0b1735 0%, #132c66 100%);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 30px rgba(11, 23, 53, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 23, 53, 0.24);
}

.button-hero {
  min-width: 250px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 56px auto 0;
}

.stat-item {
  padding: 24px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 23, 53, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat-item strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #1b2434;
}

.stat-item span {
  display: block;
  margin-top: 9px;
  font-size: 0.92rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

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

.cards-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.compare-card,
.benefit-card {
  height: 100%;
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.info-card {
  padding: 30px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.info-card:hover,
.compare-card:hover,
.benefit-card:hover {
  transform: translateY(-5px);
}

.info-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(11, 23, 53, 0.14);
}

.info-card h3 {
  margin-top: 18px;
}

.info-card p {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--text-soft);
}

.icon-chip,
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(11, 23, 53, 0.07);
  color: var(--primary);
}

.persona-grid,
.process-grid,
.benefits-grid {
  gap: 26px;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.compare-card {
  padding: 34px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.compare-card-highlight {
  background: linear-gradient(180deg, #0c1838 0%, #11244f 100%);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 20px 40px rgba(8, 18, 41, 0.18);
}

.compare-header {
  margin-bottom: 22px;
}

.compare-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-tag-muted {
  color: #56657c;
  background: #edf2f8;
}

.compare-tag-strong {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.compare-header h3 {
  font-size: 1.45rem;
}

.compare-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compare-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: 1px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
}

.list-icon.negative {
  background: rgba(180, 35, 24, 0.12);
  color: var(--danger);
}

.list-icon.positive {
  background: rgba(15, 123, 71, 0.16);
  color: var(--success);
}

.compare-card-highlight .list-icon.positive {
  background: rgba(255, 255, 255, 0.14);
  color: #8df4c6;
}

.feature-card .icon-box,
.process-card .icon-box,
.benefit-card .icon-box {
  width: 56px;
  height: 56px;
}

.benefits-grid {
  align-items: stretch;
}

.benefit-card {
  padding: 32px;
  border: 1px solid var(--navy-card-border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.dark-icon-box {
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.benefit-card h3,
.benefit-card p,
.benefit-card strong {
  color: #fff;
}

.benefit-card h3 {
  margin-top: 18px;
}

.benefit-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.benefit-card strong {
  display: block;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.24rem;
  line-height: 1.3;
}

.faq-container {
  max-width: 860px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--primary);
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
}

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

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

.faq-answer p {
  color: var(--text-soft);
}

.contact-section {
  background: linear-gradient(180deg, #eef3f8 0%, #f7f9fb 100%);
}

.contact-heading {
  margin-bottom: 46px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 26px;
  align-items: start;
}

.contact-aside {
  padding: 38px;
  border-radius: 22px;
  background: linear-gradient(180deg, #09152f 0%, #102147 100%);
  color: #fff;
  box-shadow: 0 24px 50px rgba(10, 20, 40, 0.16);
}

.contact-aside h3 {
  font-size: 2rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-aside p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-steps {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.contact-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 18px 18px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.contact-step strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.contact-step small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.91rem;
  line-height: 1.55;
}

.contact-form-card {
  padding: 28px;
  border: 1px solid rgba(11, 23, 53, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rd-form-host {
  min-height: 480px;
}

.form-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  border: 1px dashed rgba(11, 23, 53, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eef3f8 100%);
  text-align: center;
}

.form-placeholder strong {
  color: var(--primary);
  font-size: 1.05rem;
}

.form-placeholder p {
  margin-top: 10px;
  max-width: 480px;
  color: var(--text-soft);
}

.site-footer {
  padding: 72px 0 28px;
  background: linear-gradient(180deg, #06112a 0%, #081734 100%);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 1fr;
  gap: 38px;
}

.footer-branding,
.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
}

.footer-logo {
  width: 280px;
  max-width: 100%;
  object-fit: contain;
}

.footer-branding p,
.footer-contact span,
.footer-contact p,
.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.footer-branding p {
  margin-top: 18px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 18px;
  font-size: 1rem;
  color: #fff;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  width: fit-content;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.footer-contact {
  gap: 14px;
}

.footer-contact-item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
}

.footer-contact-item svg {
  margin-top: 4px;
  color: #fff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.badge-panel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.badge-panel img {
  max-height: 32px;
  width: auto;
}

.badge-panel-white {
  background: #fff;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

#para-quem-e,
#comparativo,
#como-funciona,
#estrutura-entregue,
#modelo-funciona,
#faq,
#contato {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

#rd-text_field-mg9tvx3y,
label[for="rd-text_field-mg9tvx3y"],
#rd-text_field-mg9tvx3z,
label[for="rd-text_field-mg9tvx3z"],
#rd-text_field-mg9tvx40,
label[for="rd-text_field-mg9tvx40"],
#rd-text_field-mg9tvx41,
label[for="rd-text_field-mg9tvx41"],
#rd-text_field-mg9tvx42,
label[for="rd-text_field-mg9tvx42"] {
  display: none !important;
}

@media (max-width: 1080px) {
  .cards-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-header {
    display: none;
  }

  #para-quem-e,
  #comparativo,
  #como-funciona,
  #estrutura-entregue,
  #modelo-funciona,
  #faq,
  #contato {
    scroll-margin-top: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 20px auto;
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .cards-grid-3,
  .cards-grid-2,
  .compare-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 88px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .cards-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 74px 0 78px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .hero-description,
  .section-subtitle,
  p {
    font-size: 0.98rem;
  }

  .info-card,
  .compare-card,
  .benefit-card,
  .contact-form-card,
  .contact-aside {
    padding: 24px;
  }

  .contact-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .step-badge {
    width: 38px;
    height: 38px;
  }

  .faq-question {
    padding: 18px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 18px 18px 50px;
  }

  .form-placeholder {
    min-height: 320px;
  }

  .rd-form-host {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
