@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

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

:root {
  --black: #0a0a0a;
  --dark: #111;
  --card-dark: #1a1a1a;
  --white: #fff;
  --off-white: #f5f5f0;
  --lime: #CCFE01;
  --lime-glow: rgba(204, 254, 1, 0.25);
  --lime-dark: #b8e600;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text-on-dark: #e5e7eb;
  --text-muted-dark: #9ca3af;
  --radius: 16px;
  --radius-sm: 10px;
  --mono: 'JetBrains Mono', monospace;
  --sans: 'Inter', sans-serif;
  --max-w: 720px;
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--text-on-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  line-height: 1.15;
  font-weight: 800;
  color: var(--white)
}

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

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

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

/* ===== URGENCY BAR ===== */
.urgency-bar {
  background: var(--lime);
  color: var(--black);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ===== DARK GRID BACKGROUND ===== */
.bg-grid {
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 42px 42px;
}

/* ===== SECTION THEMES ===== */
.section-dark {
  padding: 40px 20px;
  position: relative;
}

.section-light {
  background: var(--off-white);
  color: var(--gray-900);
  padding: 40px 20px;
}

.section-light h2,
.section-light h3,
.section-light h4 {
  color: var(--gray-900)
}

.section-light .text-muted {
  color: var(--gray-500)
}

/* ===== LABEL / TAG ===== */
.label {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
  display: block;
  text-align: center;
}

.section-light .label {
  color: var(--gray-700)
}

/* ===== HERO ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 25px 20px;
}

.hero .trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: .85rem;
  color: var(--text-on-dark);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero .trust-badge .stars {
  color: var(--lime);
  letter-spacing: 2px
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--lime)
}

.hero .sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted-dark);
  max-width: 580px;
  margin: 0 auto 28px;
}

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

.hero .guarantee-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lime);
  margin-top: 16px;
}

.hero .guarantee-mini .icon {
  font-size: 1.2rem
}

/* ===== CTA BUTTON ===== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: .05em;
  box-shadow: 0 0 30px var(--lime-glow);
  transition: all .3s ease;
  animation: ctaPulse 2.5s infinite;
}

.cta:hover {
  transform: scale(1.04);
  box-shadow: 0 0 50px var(--lime-glow)
}

.cta .arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.cta-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .15);
  color: var(--white);
  box-shadow: none;
  animation: none;
}

.cta-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
  box-shadow: 0 0 20px var(--lime-glow)
}

@keyframes ctaPulse {

  0%,
  100% {
    box-shadow: 0 0 20px var(--lime-glow)
  }

  50% {
    box-shadow: 0 0 40px rgba(204, 254, 1, .45)
  }
}

/* ===== WHITE CARD (Checkout / Price) ===== */
.white-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px 36px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  color: var(--gray-900);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.white-card h2,
.white-card h3 {
  color: var(--gray-900)
}

.white-card .price-old {
  font-size: 1.1rem;
  color: var(--gray-500);
  text-decoration: line-through;
}

.white-card .price-new {
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
  margin: 8px 0;
  letter-spacing: -.03em;
}

.white-card .savings {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(204, 254, 1, .3);
  color: var(--gray-700);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.white-card .desc {
  font-size: .95rem;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.6;
}

.white-card .desc strong {
  color: var(--gray-900)
}

.white-card .cta {
  width: 100%;
  justify-content: center
}

.white-card .security {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.white-card .security span {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.white-card .security .guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-700);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 20px;
}

.white-card .security .guarantee-badge .g-icon {
  color: var(--lime-dark);
  font-size: 1rem
}

/* ===== SOCIAL PROOF (dark) ===== */
.proof-section h2 {
  text-align: center;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  margin-bottom: 40px
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 660px;
  margin: 0 auto;
}

.proof-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.proof-card .author {
  font-weight: 700;
  color: var(--lime);
  font-size: .85rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.proof-card .author .stars {
  font-size: .7rem;
  letter-spacing: 1px
}

.proof-card p {
  font-size: .9rem;
  color: var(--text-muted-dark);
  font-style: italic;
  line-height: 1.6
}

.proof-counter {
  text-align: center;
  margin-top: 32px;
  font-size: 1rem;
  color: var(--text-muted-dark)
}

.proof-counter strong {
  font-size: 1.6rem;
  color: var(--lime);
  font-weight: 900;
}

/* ===== EMPATHY (light) ===== */
.empathy-bubbles {
  max-width: 600px;
  margin: 0 auto
}

.bubble {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--gray-700);
  position: relative;
  padding-left: 48px;
}

.bubble::before {
  content: '"';
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 2rem;
  color: var(--lime-dark);
  font-family: var(--sans);
  font-weight: 900;
}

.empathy-close {
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-900);
}

.empathy-close span {
  color: var(--lime-dark)
}

/* ===== DIAGNOSIS (dark) ===== */
.reasons {
  list-style: none;
  max-width: 620px;
  margin: 0 auto
}

.reasons li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding: 18px 20px;
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius-sm);
}

.reasons .num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--black);
  font-weight: 800;
  font-size: .85rem;
  font-family: var(--mono);
}

.reasons .text {
  font-size: .95rem;
  color: var(--text-muted-dark);
  line-height: 1.6
}

.reasons .text strong {
  color: var(--white)
}

.diagnosis-close {
  text-align: center;
  margin-top: 32px;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 600;
}

.diagnosis-close span {
  color: var(--lime)
}

/* ===== STEPS (light) ===== */
.steps-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 680px;
  margin: 0 auto
}

.step-card {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .3s;
}

.step-card:hover {
  transform: translateY(-6px)
}

.step-num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lime);
  color: var(--black);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--mono);
  margin: 0 auto 14px;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--gray-900)
}

.step-card p {
  font-size: .85rem;
  color: var(--gray-500)
}

/* ===== DELIVERABLES (dark) ===== */
.del-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  transition: transform .3s;
}

.del-item:hover {
  transform: translateX(6px)
}

.del-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--lime);
  font-size: 1.2rem;
}

.del-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white)
}

.del-item p {
  font-size: .88rem;
  color: var(--text-muted-dark)
}

.del-value {
  display: inline-block;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  background: rgba(204, 254, 1, .12);
  color: var(--lime);
  padding: 2px 10px;
  border-radius: 20px;
  margin-top: 6px;
}

/* ===== FOR WHO (light) ===== */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 660px;
  margin: 0 auto
}

.who-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.who-item .check {
  flex-shrink: 0;
  color: var(--lime-dark);
  font-size: 1.1rem;
  margin-top: 2px
}

.who-item p {
  font-size: .92rem;
  color: var(--gray-700)
}

.who-item p strong {
  color: var(--gray-900)
}

/* ===== VALUE STACK (dark) ===== */
.value-stack {
  max-width: 560px;
  margin: 0 auto;
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 28px;
}

.val-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: .95rem;
}

.val-row:last-of-type {
  border-bottom: none
}

.val-row .vp {
  font-weight: 700;
  color: var(--lime);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: .85rem
}

.val-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0 0;
  margin-top: 10px;
  border-top: 2px solid var(--lime);
}

.val-total .vt-label {
  font-weight: 700;
  color: var(--white)
}

.val-total .vt-label s {
  color: var(--gray-500);
  text-decoration: line-through
}

.val-total .vt-new {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--lime);
  font-family: var(--mono)
}

/* ===== PRICING CARDS (dark → white card) ===== */
.plans-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto 40px
}

.plan-card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: transform .3s, border-color .3s;
}

.plan-card:hover {
  transform: translateY(-6px)
}

.plan-card.featured {
  background: var(--white);
  color: var(--gray-900);
  border: 2px solid var(--lime);
  box-shadow: 0 0 40px var(--lime-glow);
  position: relative;
}

.plan-card.featured::after {
  content: '⭐ MAIS VENDIDO';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card.featured h3,
.plan-card.featured .plan-price {
  color: var(--gray-900)
}

.plan-card.featured .plan-features li {
  color: var(--gray-700)
}

.plan-card.featured .plan-features li::before {
  color: var(--lime-dark)
}

.plan-name {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 14px;
}

.plan-card.featured .plan-name {
  color: var(--gray-500)
}

.plan-price-old {
  font-size: 1rem;
  color: var(--gray-500);
  text-decoration: line-through
}

.plan-price {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin: 6px 0 18px;
  letter-spacing: -.03em
}

.plan-price .small {
  font-size: 1.2rem;
  vertical-align: super
}

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px
}

.plan-features li {
  padding: 6px 0;
  font-size: .88rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  color: var(--lime);
  font-weight: 800;
  flex-shrink: 0
}

/* ===== GUARANTEE (dark) ===== */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 40px auto 0;
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
}

.guarantee-block .shield {
  font-size: 2.5rem;
  flex-shrink: 0
}

.guarantee-block p {
  font-size: .88rem;
  color: var(--text-muted-dark)
}

.guarantee-block p strong {
  color: var(--lime)
}

/* ===== OPEN LETTER (light) ===== */
.letter-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}

.letter-box::before {
  content: '✉️';
  position: absolute;
  top: -16px;
  left: 28px;
  font-size: 1.8rem
}

.letter-box h2 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--gray-900)
}

.letter-box p {
  margin-bottom: 14px;
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.8
}

.letter-box .sig {
  font-style: italic;
  font-weight: 600;
  color: var(--lime-dark);
  margin-top: 20px
}

/* ===== AUTHORITY (dark) ===== */
.auth-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px
}

.stat .num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--lime);
  font-family: var(--mono);
  letter-spacing: -.02em;
}

.stat .lbl {
  font-size: .8rem;
  color: var(--text-muted-dark);
  margin-top: 4px
}

.auth-text {
  max-width: 560px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: .95rem;
  color: var(--text-muted-dark)
}

.auth-text strong {
  color: var(--white)
}

/* ===== FAQ (light) ===== */
.faq-list {
  max-width: 620px;
  margin: 0 auto 40px
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  transition: color .3s;
}

.faq-q:hover {
  color: var(--lime-dark)
}

.faq-q .arr {
  font-size: .8rem;
  color: var(--lime-dark);
  transition: transform .3s
}

.faq-item.open .faq-q .arr {
  transform: rotate(180deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 24px
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 18px
}

.faq-a p {
  font-size: .9rem;
  color: var(--gray-500);
  line-height: 1.7
}

/* ===== FINAL CTA (dark) ===== */
.final-cta {
  text-align: center
}

.final-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  margin-bottom: 16px
}

.final-price {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  margin-bottom: 28px
}

.final-price strong {
  font-size: 1.8rem;
  color: var(--lime);
  font-family: var(--mono)
}

.final-price .old {
  text-decoration: line-through;
  color: var(--gray-500)
}

/* ===== FOOTER ===== */
.footer {
  padding: 30px 20px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-align: center;
  font-size: .78rem;
  color: var(--gray-500)
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease
}

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

/* ===== SECTION PINK (Dobra 2) ===== */
.section-pink {
  background: #FF1E8C;
  padding: 40px 20px;
  position: relative;
}

.section-pink .proof-counter {
  display: block;
  text-align: center;
  margin-top: 36px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  padding: 10px 24px;
}

.section-pink .proof-counter strong {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 900;
}

/* ===== DEP PHOTO CARDS ===== */
.dep-photo-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto;
}

.dep-photo-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.dep-photo-body {
  flex: 1;
}

.dep-photo-name {
  font-size: 1.15rem;
  font-weight: 900;
  color: #FF1E8C;
  margin-bottom: 4px;
}

.dep-photo-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.dep-photo-quote {
  font-size: .92rem;
  color: #333;
  font-style: italic;
  line-height: 1.6;
}

.dep-photo-img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px) {

  .proof-grid,
  .who-grid {
    grid-template-columns: 1fr
  }

  .steps-row,
  .plans-row {
    flex-direction: column;
    align-items: center
  }

  .step-card,
  .plan-card {
    min-width: 100%;
    max-width: 100%
  }

  .guarantee-block {
    flex-direction: column;
    text-align: center
  }

  .letter-box {
    padding: 28px 20px
  }

  .white-card {
    padding: 32px 24px
  }

  .auth-stats {
    gap: 20px
  }

  .dep-photo-img {
    width: 80px;
    height: 100px
  }

  .dep-photo-card {
    padding: 18px 14px
  }
}