:root {
  --rose: #D4537E;
  --rose-light: #FBEAF0;
  --rose-mid: #ED93B1;
  --rose-dark: #72243E;
  --teal: #1D9E75;
  --teal-light: #E1F5EE;
  --teal-dark: #085041;
  --ink: #1a1118;
  --ink-soft: #3d2d38;
  --muted: #7a6872;
  --surface: #fdfbfc;
  --border: rgba(212, 83, 126, 0.12);
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITIES ── */
.serif {
  font-family: var(--serif);
}

.center {
  text-align: center;
}

.rose {
  color: var(--rose);
}

.teal {
  color: var(--teal);
}

/* ── NAVBAR ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 252, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-cta {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 83, 126, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--rose-light);
  color: var(--rose-dark);
  border: 1px solid rgba(212, 83, 126, 0.2);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.hero img {
  width: clamp(38px, 6vw, 68px);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 820px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline em {
  font-style: italic;
  color: var(--rose);
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 44px;
  animation: fadeUp 0.6s 0.2s ease both;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 99px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(212, 83, 126, 0.3);
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 83, 126, 0.4);
}

.btn-secondary {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.btn-secondary:hover {
  color: var(--rose);
  border-color: var(--rose-mid);
}

.hero-trust {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  animation: fadeUp 0.6s 0.45s ease both;
}

.stars {
  color: #f0b429;
  letter-spacing: -1px;
  font-size: 15px;
}

/* ── SECTION BASICS ── */
section {
  padding: 96px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 20px;
}

.section-body {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ── PAIN SECTION ── */
.pain-section {
  background: var(--ink);
  color: #fff;
  max-width: 100%;
  padding: 96px 24px;
}

.pain-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.imagens-de-noticias {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.imagens-de-noticias img {
  max-width: clamp(100px, 40vw, 350px);
  aspect-ratio: 1 / 1;
  border-radius: 20px;
}

.pain-label {
  color: var(--rose-mid);
}

.pain-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 50px);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 48px;
  max-width: 680px;
}

.pain-title em {
  color: var(--rose-mid);
  font-style: italic;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 56px;
}

.stat-cell {
  background: rgba(255, 255, 255, 0.03);
  padding: 36px 28px;
  transition: background 0.2s;
}

.stat-cell:hover {
  background: rgba(212, 83, 126, 0.08);
}

.stat-number {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 1;
  color: var(--rose-mid);
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  font-weight: 300;
}

.pain-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

.pain-cta-text strong {
  color: #fff;
  font-weight: 500;
}

/* ── SOLUTION ── */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

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

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 20px;
}

.feature-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

.solution-mockup {
  background: var(--rose-light);
  border-radius: 28px;
  padding: 32px 24px;
  border: 1px solid rgba(212, 83, 126, 0.15);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.mockup-avatar {
  display: flex;
}

.avatar-chip {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 500;
  margin-left: -8px;
}

.avatar-chip:first-child {
  margin-left: 0;
}

.mockup-greeting {
  font-size: 13px;
  color: var(--muted);
}

.mockup-greeting strong {
  color: var(--ink);
  font-weight: 500;
}

.mockup-balance {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1;
}

.mockup-label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 24px;
}

.progress-item {
  margin-bottom: 16px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 6px;
}

.progress-name {
  color: var(--ink);
  font-weight: 500;
}

.progress-pct {
  color: var(--rose);
  font-weight: 500;
}

.progress-bar {
  height: 6px;
  background: rgba(212, 83, 126, 0.15);
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  background: var(--rose);
}

.mockup-alert {
  margin-top: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.alert-text {
  color: var(--ink-soft);
  line-height: 1.4;
  font-weight: 400;
}

.alert-text strong {
  font-weight: 500;
}

/* ── SOCIAL PROOF ── */
.testimonials-bg {
  background: var(--rose-light);
  max-width: 100%;
  padding: 96px 24px;
}

.testimonials-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid rgba(212, 83, 126, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(212, 83, 126, 0.12);
}

.testimonial-stars {
  color: #f0b429;
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-authors {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatars {
  display: flex;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  margin-left: -8px;
  color: #fff;
}

.author-avatar:first-child {
  margin-left: 0;
}

.author-names {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.author-location {
  font-size: 12px;
  color: var(--muted);
}

/* ── BONUSES ── */
.bonuses-section {
  padding-top: 96px;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.bonus-card {
  border: 2px dotted var(--rose);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.bonus-card:hover {
  transform: translateY(-2px);
  border-color: var(--rose-dark);
}

.bonus-tag {
  display: inline-block;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bonus-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bonus-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 16px;
}

.bonus-value {
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
}

.bonus-value s {
  color: #CC0000;
  text-decoration: line-through;
  font-weight: 700;
}

/* ── PRICING ── */
.pricing-section {
  text-align: center;
  padding: 96px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0px 20px 35px;
  transition: transform 0.2s;
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing-card:hover {
  transform: translateY(-2px);
}

.pricing-card.featured {
  border: 2px solid var(--rose);
  position: relative;
}

.featured-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.plan-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
}

.plan-price {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

.plan-period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
  width: 100%;
}

.plan-feature {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 300;
  width: 100%;
  max-width: 275px;
  text-align: left;
}

.plan-check {
  color: var(--teal);
  font-size: 15px;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  margin-top: 24px;
  padding: 12px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  width: 100%;
}

.pricing-card .btn-primary {
  margin-top: 20px;
}

.plan-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(212, 83, 126, 0.35);
  color: var(--rose);
}

.plan-cta-outline:hover {
  background: var(--rose-light);
}

.plan-cta-filled {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 16px rgba(212, 83, 126, 0.3);
}

.plan-cta-filled:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: var(--teal-light);
  max-width: 100%;
  padding: 80px 24px;
}

.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 28px;
  color: var(--teal);
  border: 2px solid rgba(29, 158, 117, 0.2);
}

.guarantee-title {
  font-family: var(--serif);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--teal-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.guarantee-text {
  font-size: 16px;
  color: var(--teal-dark);
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.85;
}

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 83, 126, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-headline {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.1;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 24px;
}

.final-headline em {
  color: var(--rose);
  font-style: italic;
}

.final-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 44px;
  font-weight: 300;
  line-height: 1.6;
}

.final-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-note span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.check-icon {
  color: var(--teal);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 10px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

footer a {
  color: var(--rose);
  text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: transform, opacity;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .hero {
    padding: 00px 20px 48px;
  }

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

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

  .pricing-card.featured {
    order: -1;
  }

  .final-note {
    gap: 12px;
  }
}
