:root {
  --blue-950: #07182e;
  --blue-900: #09295c;
  --blue-800: #0d3f8c;
  --blue-100: #eaf2ff;
  --green-700: #0d8d38;
  --green-600: #15ad48;
  --green-100: #e8f8ed;
  --ink: #07182e;
  --muted: #4b5e7b;
  --line: #d8e2ef;
  --paper: #f6f9fc;
  --white: #ffffff;
  --amber: #f6b84b;
  --shadow: 0 18px 44px rgba(7, 24, 46, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-900);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

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

.narrow {
  width: min(780px, calc(100% - 40px));
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(216, 226, 239, .9);
  backdrop-filter: blur(16px);
}

.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  font-weight: 900;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--blue-900);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  font-size: .98rem;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button:hover {
  transform: translateY(-1px);
}

.button-green {
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 16px 30px rgba(13, 141, 56, .22);
}

.button-green:hover {
  background: #08752e;
}

.button-blue {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: 0 16px 30px rgba(9, 41, 92, .18);
}

.button-blue:hover {
  background: var(--blue-800);
}

.button-ghost {
  color: var(--blue-900);
  background: var(--blue-100);
}

.button-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .92rem;
}

.button-wide {
  width: 100%;
}

.hero {
  overflow: hidden;
  padding: 72px 0 56px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 24, 46, .96), rgba(9, 41, 92, .91)),
    url("assets/aprova-prof-capa-hotmart.png") center / cover;
}

.hero-grid {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--green-600);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.1rem, 4.1rem);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.2rem, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .87);
  font-size: 1.2rem;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.proof-row span {
  min-width: 0;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .11);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
}

.proof-row svg {
  width: 16px;
  height: 16px;
  color: var(--green-600);
}

.hero-media {
  margin: 0;
  min-width: 0;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.section {
  padding: 90px 0;
}

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

.section-blue {
  color: var(--white);
  background: var(--blue-950);
}

.section-blue .section-kicker {
  color: #65d981;
}

.section-blue h2,
.section-blue h3 {
  color: var(--white);
}

.section-blue p {
  color: rgba(255, 255, 255, .78);
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
  align-items: start;
  gap: 48px;
}

.problem-layout h2 {
  margin-bottom: 0;
}

.problem-list {
  display: grid;
  gap: 12px;
}

.problem-list p {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  margin: 0;
  padding: 16px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(7, 24, 46, .05);
}

.problem-list svg {
  width: 21px;
  height: 21px;
  color: #c44b4b;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.routine-card,
.deliverable,
.audience-card,
.price-box,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(7, 24, 46, .07);
}

.routine-card {
  padding: 30px;
}

.routine-card h3 {
  font-size: 1.4rem;
}

.routine-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.routine-card li {
  position: relative;
  padding-left: 22px;
}

.routine-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  background: #c44b4b;
  border-radius: 50%;
}

.routine-card-positive {
  border-color: rgba(13, 141, 56, .34);
}

.routine-card-positive li::before {
  background: var(--green-700);
}

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 72px;
  margin-top: 44px;
}

.step {
  position: relative;
  min-height: 188px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-top: 4px solid var(--green-600);
  border-radius: var(--radius);
}

.step-final {
  grid-column: 1 / -1;
  width: min(740px, 100%);
  justify-self: center;
}

.step > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 900;
}

.step-role {
  margin: 0 0 5px;
  color: #65d981;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.steps-flow .step::after {
  position: absolute;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue-950);
  background: var(--green-600);
  border: 4px solid var(--blue-950);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.steps-flow .step:nth-child(1)::after {
  content: "→";
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
}

.steps-flow .step:nth-child(2)::after {
  content: "↙";
  left: 20%;
  bottom: -52px;
}

.steps-flow .step:nth-child(3)::after {
  content: "→";
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
}

.steps-flow .step:nth-child(4)::after {
  content: "↓";
  left: 50%;
  bottom: -52px;
  transform: translateX(-50%);
}

.steps-flow .step:nth-child(5)::after {
  content: none;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.deliverable,
.audience-card {
  padding: 26px;
}

.deliverable svg,
.audience-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: var(--green-700);
}

.deliverable p,
.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-split {
  background: linear-gradient(180deg, var(--white), var(--paper));
}

.split-grid,
.combo-grid,
.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  align-items: center;
  gap: 48px;
}

.split-copy p,
.combo-copy p,
.offer-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.media-panel {
  margin: 0;
}

.media-panel img,
.combo-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.check-list svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.section-combo {
  background: #eef5ff;
}

.combo-grid {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1fr);
}

.combo-image {
  margin: 0;
}

.section-offer {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-950), var(--blue-900));
}

.section-offer .section-kicker {
  color: #65d981;
}

.section-offer h2,
.section-offer .offer-copy p,
.section-offer .check-list li {
  color: var(--white);
}

.price-box {
  padding: 34px;
  color: var(--ink);
}

.price-label {
  margin-bottom: 8px;
  color: var(--green-700);
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 4px;
  color: var(--blue-950);
  font-size: 3.8rem;
  font-weight: 950;
  line-height: 1;
}

.price-note {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 700;
}

.safe-note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.safe-note svg {
  width: 20px;
  height: 20px;
  color: var(--green-700);
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 22px;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue-900);
  border-radius: 50%;
  transform: translateY(-50%);
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-cta {
  padding: 58px 0;
  color: var(--white);
  background: var(--blue-950);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 24px;
}

.final-cta img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}

.final-cta h2 {
  margin: 0;
  font-size: 2rem;
}

.site-footer {
  padding: 34px 0;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 4px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--blue-900);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(13, 141, 56, .32);
}

.whatsapp-float svg {
  width: 27px;
  height: 27px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero-grid,
  .problem-layout,
  .split-grid,
  .combo-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-media {
    max-width: 620px;
  }

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

  .final-cta-inner {
    grid-template-columns: 72px 1fr;
  }

  .final-cta-inner .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .site-header .button-small {
    display: none;
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand span {
    font-size: .98rem;
  }

  .hero {
    padding: 50px 0 42px;
  }

  h1 {
    font-size: 2.18rem;
    line-height: 1.02;
  }

  h2 {
    font-size: 2.05rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .proof-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .proof-row span {
    align-items: flex-start;
    min-height: 56px;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
    max-height: 300px;
    object-position: center;
  }

  .section {
    padding: 64px 0;
  }

  .problem-list p {
    padding: 14px;
  }

  .before-after,
  .steps,
  .deliverables-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 44px;
  }

  .step,
  .step-final {
    grid-column: auto;
    width: 100%;
  }

  .steps-flow .step::after,
  .steps-flow .step:nth-child(1)::after,
  .steps-flow .step:nth-child(2)::after,
  .steps-flow .step:nth-child(3)::after,
  .steps-flow .step:nth-child(4)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -38px;
    transform: translateX(-50%);
  }

  .steps-flow .step:nth-child(5)::after {
    content: none;
  }

  .routine-card,
  .deliverable,
  .audience-card,
  .price-box {
    padding: 22px;
  }

  .price {
    font-size: 3.1rem;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 1.7rem;
  }

  .footer-grid {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 560px) {
  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row span {
    min-height: 44px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2rem;
  }

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

  .step > span {
    width: 40px;
    height: 40px;
  }
}
