:root {
  --navy: #002858;
  --navy-deep: #001834;
  --green-dark: #005425;
  --green-bright: #00e061;
  --teal: #4ababa;
  --teal-dark: #056466;
  --white: #ffffff;
  --off-white: #f4f7fa;
  --ink: #0d1b2e;
  --gray: #5b6b82;
  --max-width: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", -apple-system, Segoe UI, sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--navy);
  letter-spacing: -0.01em;
}

p { line-height: 1.6; margin: 0 0 16px; color: var(--gray); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header (VSL page) ---------- */
.site-header {
  background: var(--navy);
  padding: 14px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header img {
  height: 34px;
  width: auto;
}

/* ---------- Hero topbar (transparent, logo top-left) ---------- */
.hero-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 26px;
  padding-bottom: 6px;
}
.hero-topbar img {
  height: 42px;
  width: auto;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 64px),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #003a7a 100%);
  overflow: hidden;
  padding: 0 0 76px;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 60%;
  height: 70%;
  background-image: radial-gradient(circle, rgba(74,186,186,0.55) 1.5px, transparent 1.6px);
  background-size: 16px 16px;
  -webkit-mask-image: radial-gradient(ellipse at 70% 60%, black 0%, transparent 68%);
  mask-image: radial-gradient(ellipse at 70% 60%, black 0%, transparent 68%);
  pointer-events: none;
}
.hero .container:not(.hero-topbar) {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  padding-top: 46px;
}
.eyebrow {
  display: inline-block;
  background: rgba(74,186,186,0.16);
  border: 1px solid rgba(74,186,186,0.5);
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 44px);
}
.hero .lead {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta-wrap { margin-top: 30px; }
.hero-note {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-top: 12px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 17px 36px;
  border-radius: 100px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn-primary {
  background: var(--green-bright);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(0,224,97,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,224,97,0.45); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Section generic ---------- */
section { padding: 64px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head h2 { font-size: clamp(24px, 3.2vw, 32px); }
.section-head p { font-size: 16px; }

/* ---------- Pain points ---------- */
.pains { background: var(--off-white); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid #e6ebf1;
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal);
  box-shadow: 0 14px 32px rgba(0, 40, 88, 0.14);
}
.pain-card .mark {
  flex: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease;
}
.pain-card:hover .mark {
  background: var(--teal);
  color: var(--white);
}
.pain-card p { margin: 0; color: var(--ink); font-weight: 600; font-size: 15.5px; line-height: 1.5; }

/* ---------- Solution ---------- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.solution-card {
  border-radius: var(--radius);
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid #e6ebf1;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.solution-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-bright);
  box-shadow: 0 14px 32px rgba(0, 40, 88, 0.14);
}
.solution-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0,224,97,0.14);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.solution-card:hover .num {
  background: var(--green-bright);
  color: var(--navy-deep);
}
.solution-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}
.solution-card p { font-size: 14.5px; margin: 0; }

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--navy-deep);
  padding: 30px 0;
  text-align: center;
}
.proof-strip p {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
.proof-strip strong { color: var(--green-bright); }

/* ---------- Form ---------- */
.form-section { background: var(--off-white); }
.form-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid #e6ebf1;
  box-shadow: 0 20px 50px rgba(0,40,88,0.08);
  padding: 40px 36px;
}
.form-card h2 { font-size: 24px; text-align: center; }
.form-card > p { text-align: center; font-size: 15px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.field input,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1.5px solid #d7dfe9;
  background: var(--white);
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(74,186,186,0.2);
}
.form-msg {
  text-align: center;
  font-size: 13.5px;
  margin-top: 14px;
  min-height: 18px;
}
.form-msg.error { color: #c0392b; }
.privacy-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 16px;
  margin-bottom: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  padding: 30px 0;
  text-align: center;
}
.site-footer img { height: 24px; margin-bottom: 10px; }
.site-footer p {
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  margin: 0;
}

/* ---------- VSL page ---------- */
.vsl-section {
  background: var(--navy);
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 64px),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #003a7a 100%);
  padding: 60px 0 70px;
  text-align: center;
}
.vsl-section .container { max-width: 780px; }
.vsl-section .hero-topbar { text-align: left; }
.vsl-section h1 { color: var(--white); font-size: clamp(24px, 3.6vw, 34px); }
.vsl-section .lead { color: rgba(255,255,255,0.85); font-size: 16.5px; max-width: 560px; margin: 0 auto 34px; }

/* Selo de confirmação */
.check-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin: 8px 0 20px;
  border-radius: 50%;
  background: var(--green-bright);
  color: var(--navy-deep);
  font-size: 30px;
  font-weight: 800;
  box-shadow: 0 0 0 10px rgba(0,224,97,0.15);
}

/* Próximos passos */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 8px 0 38px;
  text-align: left;
}
.step {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 22px 20px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 13.5px;
  margin-bottom: 12px;
}
.step h3 { color: var(--white); font-size: 16px; margin-bottom: 6px; }
.step p { color: rgba(255,255,255,0.72); font-size: 14px; margin: 0; }

/* CTA de WhatsApp */
.whats-wrap { margin-top: 4px; }
.whats-label {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  margin-bottom: 12px;
}
.btn-whats {
  background: var(--green-bright);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(0,224,97,0.3);
}
.btn-whats:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,224,97,0.42); }
.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-followup {
  margin-top: 30px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .pain-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
  .form-card { padding: 30px 22px; }
}
