:root {
  --navy: #16324f;
  --navy-dark: #0f2438;
  --navy-light: #1e4569;
  --orange: #f2a93c;
  --orange-dark: #e0921e;
  --accent-blue: #1b3454;
  --gray-bg: #eef0f1;
  --text-gray: #6b7684;
  --white: #ffffff;
  --radius: 6px;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.2;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  border: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 20px -8px rgba(242, 169, 60, 0.6);
}
.btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(242, 169, 60, 0.75);
}
.btn--block { width: 100%; text-align: center; }

.center { text-align: center; margin-top: 48px; }
.center-text { text-align: center; }

/* ---------- Section headings ---------- */
.section-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
}
.section-title strong { font-weight: 800; }
.section-title--light { color: var(--white); }
.section-subtitle {
  color: var(--text-gray);
  font-size: 15px;
  max-width: 560px;
}
.section-subtitle--wide { max-width: 720px; }
.center-text.section-subtitle { margin-left: auto; margin-right: auto; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  background: var(--navy-dark);
  padding-bottom: 220px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(15,36,56,0.97) 30%, rgba(22,50,79,0.75) 100%);
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 28px 24px 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.logo__img {
  height: clamp(45px, 6.3vw, 78px);
  width: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 110px;
}
.hero__text { max-width: 520px; }
.hero__text h1 {
  color: var(--white);
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 300;
  letter-spacing: 0.3px;
}
.hero__text h1 strong { font-weight: 800; }
.hero__text p {
  color: #cdd9e3;
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}
.hero__text .btn { margin-top: 28px; }
.hero__disclaimer {
  color: #8ea0b3;
  font-size: 12.5px;
  font-style: italic;
  margin-top: 14px !important;
  line-height: 1.6;
}

/* ==================== OVERLAP CARDS ==================== */
.overlap {
  position: relative;
  z-index: 3;
  margin-top: -190px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.card {
  border-radius: var(--radius);
  padding: 40px;
}

.card--features {
  background: var(--gray-bg);
  margin-top: 56px;
  padding-bottom: 56px;
}
.card--features h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 24px;
}
.card--features h3 strong { font-weight: 800; }

.feature-list { list-style: none; }
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
}
.feature-list li:last-child { margin-bottom: 0; }
.feature-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}
.feature-list--row {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-list--row li { margin-bottom: 0; }

.card--signup {
  background: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 30px 50px -20px rgba(20, 46, 130, 0.6);
}
.signup-lead {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
  line-height: 1.6;
}

.signup-form input:not([type="checkbox"]),
.signup-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--white);
  color: var(--navy);
  appearance: none;
  -webkit-appearance: none;
}
.signup-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7684' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.signup-form select:invalid { color: #9aa5ae; }
.signup-form input::placeholder { color: #9aa5ae; }
.signup-form input:focus,
.signup-form select:focus { outline: 2px solid var(--navy-light); }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  line-height: 1.5;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
}
.checkbox input { width: auto; margin: 2px 0 0; flex-shrink: 0; }
.checkbox a { color: var(--white); }

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

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 13px;
  line-height: 1.6;
}
.form-status--success {
  background: rgba(60, 200, 170, 0.15);
  color: #7be0c9;
}
.form-status--error {
  background: rgba(255, 255, 255, 0.1);
  color: #ffb4a1;
}

.card--signup .btn { background: var(--orange); box-shadow: none; }
.card--signup .btn:hover { background: var(--orange-dark); }

/* ==================== PROBLEMA ==================== */
.problem { padding: 90px 24px 70px; }
.problem__list {
  list-style: none;
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.problem__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
}
.problem__list strong { color: var(--navy); }
.problem__closing {
  margin-top: 44px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  max-width: 680px;
}

/* ==================== URGÊNCIA ==================== */
.urgency { background: var(--navy-dark); padding: 90px 24px; }
.urgency__text {
  color: #b9c6d3;
  font-size: 15px;
  line-height: 1.8;
  max-width: 700px;
  margin-top: 18px;
}
.urgency__text--bold { color: var(--white); font-weight: 600; }
.callout {
  margin-top: 40px;
  background: rgba(255,255,255,0.05);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 36px;
  max-width: 780px;
  color: #dbe4ec;
  font-size: 15.5px;
  line-height: 1.8;
}
.callout strong { color: var(--white); }

/* ==================== MÉTODO ==================== */
.method { background: var(--gray-bg); padding: 90px 0; }
.timeline {
  list-style: none;
  max-width: 760px;
  margin: 56px auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(22, 50, 79, 0.15);
}
.timeline__item {
  display: flex;
  gap: 24px;
  position: relative;
  margin-bottom: 36px;
}
.timeline__item:last-child { margin-bottom: 0; }
.timeline__num {
  flex-shrink: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
}
.timeline__item h4 { font-size: 17px; margin-bottom: 8px; }
.timeline__item p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ==================== FAZ / NÃO FAZ ==================== */
.compare { padding: 90px 24px; }
.compare__table {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.compare__col {
  border-radius: var(--radius);
  padding: 36px;
}
.compare__col--yes { background: var(--gray-bg); }
.compare__col--no { background: var(--navy); color: var(--white); }
.compare__col h4 { font-size: 17px; margin-bottom: 22px; }
.compare__col--no h4 { color: var(--white); }
.compare__col ul { list-style: none; }
.compare__col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.compare__col--yes li { color: var(--navy); }
.compare__col--no li { color: #dbe4ec; }
.compare__col li:last-child { margin-bottom: 0; }
.mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.mark--yes { background: var(--orange); color: var(--white); }
.mark--no { background: rgba(255,255,255,0.12); color: #b9c6d3; }
.compare__closing {
  margin-top: 36px;
  font-size: 15px;
  color: var(--text-gray);
  max-width: 720px;
}
.compare__closing strong { color: var(--navy); }

/* ==================== PREÇO ==================== */
.pricing { padding: 90px 24px 70px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pricing-card {
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px -18px rgba(22,50,79,0.3); }
.pricing-card .tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-bottom: 18px;
}
.pricing-card h4 { font-size: 20px; margin-bottom: 14px; }
.pricing-card__value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
}
.pricing__note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-gray);
  max-width: 680px;
}
.pricing__note--italic { font-style: italic; margin-top: 12px; }

/* ==================== DADOS / LGPD ==================== */
.privacy { background: var(--gray-bg); padding: 90px 24px; }

/* ==================== PARA QUEM É ==================== */
.audience { padding: 90px 24px; }
.audience__list {
  list-style: none;
  max-width: 640px;
  margin: 48px auto 0;
}
.audience__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
}
.audience__list li:last-child { margin-bottom: 0; }
.audience__note {
  margin-top: 36px;
  text-align: center;
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-gray);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== CTA FINAL ==================== */
.final-cta { padding: 90px 24px 90px; text-align: center; }
.final-cta__panel {
  max-width: 1120px;
  margin: 56px auto 0;
  background: var(--accent-blue);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(27, 52, 84, 0.6);
}
.final-cta__image {
  position: relative;
  min-height: 420px;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.final-cta__image img {
  width: 100%;
  height: auto;
  max-width: 300px;
  object-fit: contain;
}
.final-cta__form {
  padding: 56px 48px;
  text-align: left;
  color: var(--white);
}
.final-cta__form h3 { font-size: 24px; margin-bottom: 6px; }
.final-cta__form > p { font-size: 14px; margin-bottom: 24px; opacity: 0.9; }
.final-cta__form input:not([type="checkbox"]),
.final-cta__form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
}
.final-cta__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7684' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  cursor: pointer;
}
.final-cta__form select:invalid { color: #9aa5ae; }
.checkbox--light { color: rgba(255,255,255,0.9); }
.final-cta__footnote {
  margin-top: 16px;
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

/* ==================== FOOTER ==================== */
.footer { background: var(--navy-dark); padding: 40px 0; }
.footer__inner {
  color: #8ea0b3;
  font-size: 12px;
  line-height: 1.7;
  text-align: center;
}
.footer__inner p { max-width: 760px; margin: 0 auto; }
.footer__links { margin-top: 14px !important; }
.footer__links a { color: #b9c6d3; text-decoration: underline; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 960px) {
  .overlap { grid-template-columns: 1fr; margin-top: -160px; }
  .card--features { margin-top: 0; }
  .problem__list { grid-template-columns: 1fr; gap: 24px; }
  .compare__table { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .feature-list--row { grid-template-columns: 1fr; gap: 20px; }
  .final-cta__panel { grid-template-columns: 1fr; }
  .final-cta__image { min-height: 260px; }
}

@media (max-width: 600px) {
  .hero { padding-bottom: 260px; }
  .hero__content { padding-top: 90px; }
  .hero__text { max-width: 100%; }
  .overlap { margin-top: -220px; gap: 20px; }
  .card { padding: 28px; }
  .final-cta__form { padding: 36px 28px; }
  .timeline::before { left: 19px; }
}
