﻿:root {
  --bg: #0d1713;
  --bg-soft: #12211b;
  --surface: #162a22;
  --surface-2: #1a3128;
  --text: #ecf8f0;
  --muted: #a8c7b6;
  --line: rgba(155, 200, 178, 0.28);
  --primary: #00b575;
  --primary-strong: #0ad384;
  --blue: #3d88ff;
  --gold: #d5a84f;
  --danger: #d26464;
  --shadow: 0 14px 34px rgba(2, 10, 7, 0.34);
  --radius: 16px;
}

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

body {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% -5%, rgba(61, 136, 255, 0.15), transparent 35%),
    radial-gradient(circle at 8% -10%, rgba(0, 181, 117, 0.16), transparent 40%),
    var(--bg);
  line-height: 1.6;
}

h1, h2, h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
  font-family: "Oxanium", sans-serif;
}

p { margin: 0; color: var(--muted); }
a { color: inherit; text-decoration: none; }

.container { width: min(1120px, 92%); margin: 0 auto; }

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  background: transparent;
  backdrop-filter: none;
  transition: background-color 0.25s ease;
}

.topbar.scrolled {
  background-color: #000;
}

.topbar-content {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: "Oxanium", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.nav-links { display: none; gap: 1.2rem; color: var(--muted); }

.hero {
  position: relative;
  padding: 0 0 2.4rem;
  min-height: 95vh;
  display: flex;
  align-items: center;
  background-image: url("./hero-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.985) 0%,
      rgba(0, 0, 0, 0.95) 24%,
      rgba(0, 0, 0, 0.82) 36%,
      rgba(0, 0, 0, 0.58) 48%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0) 68%
    );
  filter: blur(2px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

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

.hero-grid { display: grid; }
.eyebrow { color: var(--gold); font-weight: 600; font-size: 0.9rem; }
h1 { font-size: clamp(1.75rem, 4.3vw, 2.85rem); }
.highlight-evolution { color: var(--primary-strong); }
.subtitle { margin-top: 1rem; max-width: 64ch; font-size: clamp(1rem, 1vw, 1rem); }
.hero-cta { margin-top: 1.45rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.trust-note { margin-top: 0.8rem; font-size: 0.95rem; }

.hero-copy {
  margin-top: 3rem;
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.88rem 1.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { padding: 0.54rem 0.9rem; font-size: 0.9rem; }
.btn-primary {
  background: linear-gradient(120deg, var(--primary), var(--primary-strong));
  color: #082015;
  box-shadow: 0 12px 28px rgba(0, 181, 117, 0.28);
}
.btn-secondary {
  border-color: rgba(61, 136, 255, 0.5);
  color: #d8e7ff;
  background: rgba(61, 136, 255, 0.16);
}
.btn-outline {
  border-color: rgba(213, 168, 79, 0.52);
  color: #f4ddb4;
  background: rgba(213, 168, 79, 0.09);
}

.section { padding: 3.4rem 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(19, 35, 29, 0.75), rgba(16, 29, 24, 0.75));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

#problemas {
  position: relative;
  overflow: hidden;
}

.problemas-section {
  padding: 96px 0;
  background: radial-gradient(circle at top left, rgba(47, 211, 139, 0.12), transparent 35%),
              linear-gradient(180deg, #03110c 0%, #020806 100%);
}

.section-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #f5fff9;
}

.section-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 255, 249, 0.72);
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.problema-card {
  padding: 24px;
  border: 1px solid rgba(47, 211, 139, 0.24);
  border-radius: 18px;
  background: rgba(16, 45, 34, 0.72);
  backdrop-filter: blur(14px);
}

.problema-card span {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.problema-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #f5fff9;
}

.problema-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 255, 249, 0.76);
}

.problemas-cta {
  margin-top: 42px;
  text-align: center;
}

.problemas-cta p {
  margin-bottom: 18px;
  color: rgba(245, 255, 249, 0.82);
  font-size: 1rem;
}

#solucao {
  position: relative;
}

.solucao-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(
    180deg,
    #010302 0%,
    #062017 28%,
    #0d2d21 62%,
    #103126 100%
  );
}

.solucao-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: linear-gradient(180deg, rgba(16, 49, 38, 0) 0%, rgba(5, 17, 13, 0.88) 100%);
  pointer-events: none;
}

.solucao-section .section-header {
  max-width: 850px;
  margin-bottom: 52px;
}

.solucao-section .section-header h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #f5fff9;
}

.solucao-section .section-header p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.76);
}

.solucao-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solucao-card {
  min-height: 168px;
  padding: 28px;
  border: 1px solid rgba(47, 211, 139, 0.24);
  border-radius: 20px;
  background: rgba(18, 51, 38, 0.74);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.solucao-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 211, 139, 0.46);
  background: rgba(22, 67, 49, 0.84);
}

.solucao-card span {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 16px;
}

.solucao-card h3 {
  max-width: 520px;
  margin-bottom: 12px;
  font-size: 1.22rem;
  line-height: 1.35;
  color: #f5fff9;
}

.solucao-card p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 255, 249, 0.76);
}

.modulos-section {
  padding: 120px 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 211, 139, 0.12), transparent 32%),
    linear-gradient(180deg, #06130f 0%, #0b241a 52%, #04100c 100%);
  overflow: hidden;
}

.modulos-header {
  max-width: 880px;
  margin-bottom: 72px;
}

.modulos-header .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: #2fd38b;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modulos-header h2 {
  max-width: 860px;
  font-size: clamp(2.4rem, 4.4vw, 4.6rem);
  line-height: 1.04;
  margin-bottom: 22px;
  color: #f5fff9;
}

.modulos-header p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.74);
}

.modulos-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 96px;
}

.timeline-line {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(47, 211, 139, 0.55),
    rgba(47, 211, 139, 0.18),
    transparent
  );
}

.modulo-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 80px minmax(0, 0.95fr);
  align-items: center;
  gap: 24px;
}

.modulo-item.reverse {
  grid-template-columns: minmax(0, 0.95fr) 80px minmax(0, 1.15fr);
}

.modulo-item.reverse .modulo-media {
  grid-column: 3;
}

.modulo-item.reverse .timeline-dot {
  grid-column: 2;
  grid-row: 1;
}

.modulo-item.reverse .modulo-content {
  grid-column: 1;
  grid-row: 1;
}

.modulo-media {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(47, 211, 139, 0.32);
  border-radius: 24px;
  background: rgba(4, 16, 12, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  cursor: zoom-in;
}

.modulo-media::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(47, 211, 139, 0.32), transparent 45%);
  opacity: 0.55;
  pointer-events: none;
}

.modulo-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  border-radius: 16px;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  margin: 0 auto;
  border-radius: 999px;
  background: #2fd38b;
  box-shadow:
    0 0 0 8px rgba(47, 211, 139, 0.12),
    0 0 30px rgba(47, 211, 139, 0.85);
}

.modulo-content {
  padding: 34px;
  border: 1px solid rgba(47, 211, 139, 0.22);
  border-radius: 24px;
  background: rgba(18, 51, 38, 0.74);
  backdrop-filter: blur(14px);
}

.modulo-step {
  display: inline-block;
  margin-bottom: 14px;
  color: #2fd38b;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modulo-content h3 {
  margin-bottom: 14px;
  font-size: 1.45rem;
  color: #f5fff9;
}

.modulo-content p {
  margin-bottom: 22px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.76);
}

.modulo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.modulo-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(47, 211, 139, 0.22);
  border-radius: 999px;
  background: rgba(47, 211, 139, 0.08);
  color: rgba(245, 255, 249, 0.82);
  font-size: 0.82rem;
}

#prova {
  position: relative;
  border-top: 1px solid rgba(47, 211, 139, 0.24);
  background: linear-gradient(180deg, #071a14 0%, #0b1f18 38%, #102721 100%);
}

#prova::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(7, 26, 20, 0.92) 0%, rgba(7, 26, 20, 0) 100%);
  pointer-events: none;
}

#planos {
  position: relative;
  border-top: 0;
  border-bottom: 0;
  scroll-margin-top: 96px;
  background:
    linear-gradient(
      180deg,
      rgba(1, 4, 3, 0.98) 0%,
      rgba(3, 12, 9, 0.98) 14%,
      rgba(8, 33, 24, 0.7) 26%,
      rgba(8, 18, 14, 0.96) 48%,
      rgba(10, 22, 17, 0.96) 100%
    );
  overflow: hidden;
}

#planos::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: min(340px, 52vw);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(0, 255, 170, 0), rgba(0, 255, 170, 0.95), rgba(0, 255, 170, 0));
  box-shadow: 0 0 14px rgba(0, 255, 170, 0.45);
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
}

#planos::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  width: min(1100px, 100vw);
  height: 140px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 168, 114, 0.3) 0%, rgba(0, 130, 88, 0.16) 42%, rgba(0, 0, 0, 0) 80%);
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.beneficios-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(47, 211, 139, 0.12), transparent 34%),
    linear-gradient(180deg, #06130f 0%, #0c241b 52%, #06130f 100%);
  border-top: 1px solid rgba(47, 211, 139, 0.12);
  border-bottom: 1px solid rgba(47, 211, 139, 0.12);
}

.beneficios-header {
  max-width: 860px;
  margin-bottom: 52px;
}

.beneficios-header h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #f5fff9;
}

.beneficios-header p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.74);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.beneficio-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(47, 211, 139, 0.22);
  border-radius: 22px;
  background: rgba(18, 51, 38, 0.74);
  backdrop-filter: blur(14px);
  transition: 0.25s ease;
}

.beneficio-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 211, 139, 0.5);
  background: rgba(22, 67, 49, 0.86);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.beneficio-card span {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.beneficio-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.35;
  color: #f5fff9;
}

.beneficio-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(245, 255, 249, 0.74);
}

.beneficios-grid .beneficio-card:last-child {
  grid-column: 1 / -1;
  min-height: 180px;
}

.beneficio-card.destaque {
  grid-column: span 2;
  background:
    radial-gradient(circle at top right, rgba(47, 211, 139, 0.22), transparent 38%),
    rgba(18, 51, 38, 0.84);
}

.beneficio-card.destaque h3 {
  max-width: 620px;
  font-size: 1.45rem;
}

.beneficio-card.destaque p {
  max-width: 640px;
  font-size: 1.05rem;
}

#planos .container {
  position: relative;
  z-index: 3;
  width: min(1240px, 95%);
  min-height: 820px;
  padding-top: 20px;
}

#planos h2 {
  max-width: none;
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  text-shadow: 0 0 18px rgba(10, 211, 132, 0.24);
}

.plans-highlight {
  margin: 0.35rem auto 0.7rem;
  max-width: 60ch;
  text-align: center;
  color: #dff7eb;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#planos .section-lead {
  text-align: center;
  margin-inline: auto;
}

.section h2 { font-size: clamp(1.45rem, 3vw, 2.25rem); max-width: 28ch; }
.section-lead { margin-bottom: 1.2rem; max-width: 74ch; }
.grid { display: grid; gap: 0.85rem; margin-top: 1.15rem; }

.card {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.feature-list li {
  background: linear-gradient(160deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}

.antes-depois-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 211, 139, 0.1), transparent 34%),
    linear-gradient(180deg, #06130f 0%, #0b241a 55%, #06130f 100%);
  border-top: 1px solid rgba(47, 211, 139, 0.12);
  border-bottom: 1px solid rgba(47, 211, 139, 0.12);
}

.antes-depois-header {
  max-width: 860px;
  margin-bottom: 52px;
}

.antes-depois-header h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin-bottom: 20px;
  color: #f5fff9;
}

.antes-depois-header p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.74);
}

.comparativo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comparativo-card {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: rgba(18, 51, 38, 0.74);
  backdrop-filter: blur(14px);
}

.comparativo-card.antes {
  border: 1px solid rgba(255, 105, 105, 0.34);
}

.comparativo-card.depois {
  border: 1px solid rgba(47, 211, 139, 0.46);
  background:
    radial-gradient(circle at top right, rgba(47, 211, 139, 0.18), transparent 38%),
    rgba(18, 51, 38, 0.82);
}

.comparativo-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.antes .comparativo-label {
  color: #ff9b9b;
  background: rgba(255, 105, 105, 0.1);
  border: 1px solid rgba(255, 105, 105, 0.24);
}

.depois .comparativo-label {
  color: #2fd38b;
  background: rgba(47, 211, 139, 0.1);
  border: 1px solid rgba(47, 211, 139, 0.24);
}

.comparativo-card h3 {
  margin-bottom: 22px;
  font-size: 1.45rem;
  line-height: 1.35;
  color: #f5fff9;
}

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

.comparativo-card li {
  position: relative;
  padding-left: 28px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245, 255, 249, 0.76);
}

.comparativo-card li::before {
  position: absolute;
  left: 0;
  top: 1px;
  font-weight: 800;
}

.antes li::before {
  content: "×";
  color: #ff7b7b;
}

.depois li::before {
  content: "✓";
  color: #2fd38b;
}

.proof-timeline {
  position: relative;
  margin-top: 1.4rem;
  display: grid;
  gap: 1.2rem;
  max-width: 1080px;
  margin-inline: auto;
}

.proof-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, rgba(10, 211, 132, 0.18), rgba(10, 211, 132, 0.68), rgba(10, 211, 132, 0.18));
  box-shadow: 0 0 14px rgba(10, 211, 132, 0.32);
}

.proof-item {
  position: relative;
  padding-left: 2.2rem;
  display: grid;
  gap: 0.8rem;
}

.proof-dot {
  position: absolute;
  left: 8px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, #8ef8ca 0%, #0ad384 62%, #06784e 100%);
  box-shadow: 0 0 0 4px rgba(10, 211, 132, 0.14), 0 0 16px rgba(10, 211, 132, 0.46);
}

.proof-media {
  border-radius: 14px;
  border: 1px solid rgba(10, 211, 132, 0.35);
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(2, 12, 8, 0.5);
  background: #07120f;
  cursor: zoom-in;
}

.proof-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: contain;
  display: block;
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.image-modal.open {
  display: block;
}

.image-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}

.image-modal-content {
  position: relative;
  z-index: 1;
  width: min(1200px, 94vw);
  max-height: 92vh;
  margin: 4vh auto;
  border-radius: 12px;
  border: 1px solid rgba(47, 211, 139, 0.3);
  background: #07120f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  padding: 14px;
}

.image-modal-content img {
  width: 100%;
  max-height: calc(92vh - 28px);
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.image-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

body.modal-open {
  overflow: hidden;
}

.proof-copy {
  background: linear-gradient(165deg, rgba(22, 41, 33, 0.95), rgba(14, 27, 22, 0.95));
  border: 1px solid rgba(10, 211, 132, 0.25);
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
}

.proof-copy h3 {
  margin-bottom: 0.45rem;
}

.proof-copy p {
  color: #c6e6d6;
}

.proof-testimonial {
  margin: 1.4rem 0 0;
  position: relative;
  padding: 1.25rem 1.2rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(10, 211, 132, 0.3);
  background: linear-gradient(160deg, rgba(7, 21, 16, 0.96), rgba(11, 33, 25, 0.96));
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.42);
}

.proof-testimonial::before {
  content: "“";
  position: absolute;
  top: 6px;
  left: 14px;
  font-family: "Oxanium", sans-serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(10, 211, 132, 0.34);
}

.proof-testimonial p {
  color: #effff7;
  font-size: 1.04rem;
  font-weight: 600;
  margin-left: 0.75rem;
  margin-top: 0.9rem;
}

.proof-testimonial cite {
  margin-top: 0.95rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(10, 211, 132, 0.24);
  display: block;
  color: #9ed6bb;
  font-style: normal;
  font-weight: 600;
}

.proof-cta {
  margin-top: 1rem;
}

.proof-result {
  margin-top: 0.9rem;
}

#prova h2 {
  max-width: none;
  white-space: nowrap;
}

.offer, .final-cta { text-align: center; }
.offer h2, .final-cta h2 { margin-inline: auto; }
.offer-cta { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

.plans-grid {
  margin-top: 4rem;
  scroll-margin-top: 120px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  padding: 1.35rem;
  border-width: 2px;
  border-radius: 24px;
  box-shadow: 0 14px 28px rgba(5, 12, 9, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.plan-monthly {
  background: linear-gradient(160deg, #ebf0ec, #dce7e1);
  border-color: #8da097;
}

.plan-quarterly {
  background: linear-gradient(160deg, #dcfce8, #c8f4df);
  border-color: #35cc8e;
  box-shadow: 0 18px 36px rgba(16, 185, 129, 0.24);
}

.plan-yearly {
  background: linear-gradient(160deg, #f9efd0, #f2ddb0);
  border-color: #e2b13c;
  border-width: 3px;
  transform: translateY(-14px) scale(1.06);
  transition: none;
  box-shadow: 0 30px 56px rgba(217, 165, 48, 0.42), 0 16px 34px rgba(0, 0, 0, 0.3);
  z-index: 5;
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-height: 510px;
}

.plan-yearly:hover {
  transform: translateY(-14px) scale(1.06);
}

.plan-quarterly .plan-badge {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.plan-yearly .plan-badge {
  background: #f3b31c;
  border-color: #f3b31c;
  color: #2f2303;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(243, 179, 28, 0.35);
}

.plan-yearly h3 {
  font-size: 1.5rem;
}

.plan-yearly .plan-price {
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
}

.plan-yearly .plan-btn {
  box-shadow: 0 14px 28px rgba(217, 165, 48, 0.32);
}

@media (max-width: 719px) {
  .plan-yearly {
    transform: translateY(-4px) scale(1.01);
    transition: none;
    min-height: auto;
    padding-top: 1.65rem;
    padding-bottom: 1.65rem;
  }

  .plan-yearly:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

.plan-badge {
  width: fit-content;
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #8ea096;
  color: #34463f;
  background: #dbe6e0;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.plan-card h3 {
  margin-top: 0.65rem;
  color: #0f1a16;
}

.plan-price {
  font-family: "Oxanium", sans-serif;
  color: #0f1a16;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  font-weight: 700;
}

.plan-price span {
  font-family: "Space Grotesk", sans-serif;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.plan-note {
  color: #385149;
  margin-bottom: 0.2rem;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0.25rem 0 0.1rem;
  display: grid;
  gap: 0.35rem;
  color: #1f3b31;
  font-size: 0.92rem;
  font-weight: 600;
}

.plan-features li {
  position: relative;
  padding-left: 1.45rem;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #14b86f;
  box-shadow: 0 0 0 2px rgba(20, 184, 111, 0.2);
}

.plan-features li::after {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.53rem;
  width: 0.3rem;
  height: 0.16rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.plan-saving {
  color: #6a4d06;
  font-weight: 700;
  font-size: 0.9rem;
}

.plan-btn {
  margin-top: auto;
  width: 100%;
}

.faq-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(47, 211, 139, 0.1), transparent 34%),
    linear-gradient(180deg, #06130f 0%, #0b241a 55%, #06130f 100%);
  border-top: 1px solid rgba(47, 211, 139, 0.12);
}

.faq-header {
  max-width: 820px;
  margin-bottom: 46px;
}

.faq-header h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #f5fff9;
}

.faq-header p {
  max-width: 680px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 255, 249, 0.72);
}

.faq-list {
  max-width: 960px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(47, 211, 139, 0.22);
  border-radius: 18px;
  background: rgba(18, 51, 38, 0.74);
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(47, 211, 139, 0.46);
  background: rgba(22, 67, 49, 0.84);
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  font-size: 1rem;
  font-weight: 800;
  color: #f5fff9;
  position: relative;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #2fd38b;
  font-size: 1.4rem;
  font-weight: 800;
}

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

.faq-item p {
  padding: 0 24px 24px;
  max-width: 820px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.74);
}

.cta-final-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0 120px;
  background: #04100c;
  border-top: 1px solid rgba(47, 211, 139, 0.14);
}

.cta-final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 16, 12, 0.88), rgba(4, 16, 12, 0.96)),
    url("assets/banner-final-mylife.png") center/cover no-repeat;
  filter: blur(2px);
  transform: scale(1.04);
  opacity: 0.62;
}

.cta-final-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(47, 211, 139, 0.22), transparent 38%),
    radial-gradient(circle at 50% 100%, rgba(47, 211, 139, 0.28), transparent 32%);
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.cta-final-content h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  line-height: 1.05;
  color: #f5fff9;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.cta-final-content p {
  max-width: 700px;
  margin: 0 auto 34px;
  font-size: 1.12rem;
  line-height: 1.75;
  color: rgba(245, 255, 249, 0.78);
}

.cta-final-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  box-shadow:
    0 18px 55px rgba(47, 211, 139, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.cta-final-benefits {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-final-benefits span {
  padding: 10px 14px;
  border: 1px solid rgba(47, 211, 139, 0.22);
  border-radius: 999px;
  background: rgba(18, 51, 38, 0.64);
  backdrop-filter: blur(10px);
  color: rgba(245, 255, 249, 0.82);
  font-size: 0.92rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 14, 11, 0.9);
  padding: 1.2rem 0;
}
.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.7rem; }

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .hero { padding-top: 0; }
  .hero-grid { grid-template-columns: minmax(0, 700px); }
  .cards-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-timeline {
    gap: 1.4rem;
  }

  .proof-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .proof-item {
    padding-left: 0;
    grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: stretch;
    gap: 1.1rem;
  }

  .proof-dot {
    position: static;
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: center;
    align-self: center;
  }

  .proof-media,
  .proof-copy {
    min-height: 100%;
  }

  .proof-media {
    border-radius: 16px;
  }

  .proof-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
  }

  .proof-item::before,
  .proof-item::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 26px;
    height: 1px;
    background: linear-gradient(90deg, rgba(10, 211, 132, 0.08), rgba(10, 211, 132, 0.58), rgba(10, 211, 132, 0.08));
    transform: translateY(-50%);
    pointer-events: none;
  }

  .proof-item::before {
    left: calc(50% - 32px);
  }

  .proof-item::after {
    right: calc(50% - 32px);
  }

  .proof-item .proof-media {
    grid-column: 1;
    grid-row: 1;
  }

  .proof-item .proof-copy {
    grid-column: 3;
    grid-row: 2;
  }
}

@media (min-width: 980px) {
  .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 719px) {
  .hero {
    background-size: cover;
    background-position: 62% center;
  }
}

@media (max-width: 900px) {
  .problemas-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beneficios-grid {
    grid-template-columns: 1fr 1fr;
  }

  .beneficio-card.destaque {
    grid-column: span 2;
  }

  .beneficios-grid .beneficio-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .problemas-section {
    padding: 72px 0;
  }

  .problemas-grid {
    grid-template-columns: 1fr;
  }

  .problema-card {
    padding: 20px;
  }

  .beneficios-section {
    padding: 80px 0;
  }

  .beneficios-grid {
    grid-template-columns: 1fr;
  }

  .beneficio-card,
  .beneficio-card.destaque {
    grid-column: span 1;
    min-height: auto;
  }

  .beneficios-grid .beneficio-card:last-child {
    grid-column: span 1;
  }

  .faq-section {
    padding: 80px 0;
  }

  .faq-item summary {
    padding: 20px;
    padding-right: 52px;
  }

  .faq-item p {
    padding: 0 20px 22px;
  }

  .cta-final-section {
    padding: 92px 0 84px;
  }

  .cta-final-content p {
    font-size: 1rem;
  }

  .cta-final-benefits {
    gap: 10px;
  }

  .cta-final-benefits span {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 820px) {
  .solucao-section {
    padding: 82px 0;
  }

  .solucao-grid {
    grid-template-columns: 1fr;
  }

  .solucao-card {
    min-height: auto;
    padding: 24px;
  }

  .antes-depois-section {
    padding: 82px 0;
  }

  .comparativo-grid {
    grid-template-columns: 1fr;
  }

  .comparativo-card {
    padding: 26px;
  }
}

@media (max-width: 900px) {
  .modulos-section {
    padding: 86px 0;
  }

  .modulos-header {
    margin-bottom: 44px;
  }

  .modulos-header h2 {
    font-size: clamp(1.65rem, 8.2vw, 2.25rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .modulos-header p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .modulos-timeline {
    gap: 40px;
  }

  .timeline-line {
    left: 10px;
    top: 16px;
    bottom: 16px;
  }

  .modulo-item,
  .modulo-item.reverse {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 14px;
  }

  .modulo-media,
  .modulo-content,
  .modulo-item.reverse .modulo-media,
  .modulo-item.reverse .modulo-content {
    grid-column: 2;
  }

  .timeline-dot,
  .modulo-item.reverse .timeline-dot {
    grid-column: 1;
    grid-row: 1;
    margin-top: 24px;
  }

  .modulo-media {
    grid-row: 1;
  }

  .modulo-content {
    grid-row: 2;
    padding: 20px;
    border-radius: 18px;
  }

  .modulo-item.reverse .modulo-media {
    grid-row: 1;
  }

  .modulo-item.reverse .modulo-content {
    grid-row: 2;
  }

  .modulo-content h3 {
    font-size: clamp(1.2rem, 5.3vw, 1.45rem);
  }

  .modulo-content p {
    font-size: 0.96rem;
    line-height: 1.6;
  }

  .modulo-tags span {
    font-size: 0.78rem;
  }
}

