:root {
  --pink: #FF007F;
  --dpink: #D10068;
  --lpink: #FFE6F2;
  --mpink: #FF3399;
  --yellow: #FFDF00;
  --dyellow: #D1B100;
  --lyellow: #FFFDE6;
  --green: #00E676;
  --dgreen: #00B35C;
  --lgreen: #E6FFED;
  --dark: #2A004D;
  --gray: #6B6B80;
  --lgray: #F5F3F7;
  --white: #FFFFFF;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: #FFF8FC;
  color: var(--dark);
  overflow-x: hidden;
}

/* ── UTILS ── */
.container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00E676, #00B35C);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 20px 48px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 8px 0 #008A45, 0 12px 40px rgba(0, 230, 118, 0.35);
  transition: transform .15s, box-shadow .15s;
  letter-spacing: .5px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 11px 0 #008A45, 0 18px 48px rgba(0, 230, 118, 0.4);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 5px 0 #008A45;
}

.section {
  padding: 72px 0;
}

.tag {
  display: inline-block;
  font-family: 'Baloo 2', cursive;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── 1. BARRA DE URGÊNCIA ── */
.urgency-bar {
  background: linear-gradient(90deg, var(--dpink), var(--pink), var(--dpink));
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  padding: 12px 24px;
  text-align: center;
  min-height: 48px;
}

@keyframes shimmer {
  0% {
    background-position: 0%
  }

  100% {
    background-position: 200%
  }
}

.urgency-bar p {
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.urgency-bar .timer {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  background: rgba(0, 0, 0, .25);
  border-radius: 8px;
  padding: 2px 12px;
  margin-left: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 2px;
}

/* ── 2. HERO ── */
.hero {
  background: linear-gradient(160deg, #4B0076 0%, #2A004D 50%, #17002B 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 20%, rgba(255, 0, 127, .35) 0%, transparent 65%),
    radial-gradient(ellipse 400px 500px at 10% 80%, rgba(138, 43, 226, .35) 0%, transparent 65%),
    radial-gradient(ellipse 500px 300px at 50% 100%, rgba(255, 223, 0, .2) 0%, transparent 65%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-eyebrow {
  background: rgba(255, 223, 0, .15);
  border: 1.5px solid rgba(255, 223, 0, .4);
  color: var(--yellow);
  font-family: 'Baloo 2', cursive;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
  padding: 8px 24px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, .5);
  margin-bottom: 12px;
}

.hero h1 .pink {
  color: #FF6EC2;
}

.hero h1 .yellow {
  color: var(--yellow);
}

.hero-sub {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  line-height: 1.5;
  max-width: 580px;
  margin: 0 auto 36px;
}

/* Personas rápidas */
.hero-personas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.persona-pill {
  background: rgba(255, 255, 255, .08);
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 100px;
  padding: 12px 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.persona-pill .emoji {
  font-size: 1.4rem;
}

.hero-proof {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.proof-item {
  text-align: center;
}

.proof-num {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  font-weight: 900;
  color: #FFD000;
  display: block;
  line-height: 1;
}

.proof-label {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-mockup {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 1000 / 570; /* Reserva o espaço exato impedindo CLS */
  margin: 36px auto 8px;
  /* Removido box-shadow retangular para imagens transparentes */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}

.proof-divider {
  width: 1px;
  background: rgba(255, 255, 255, .15);
  align-self: stretch;
}

/* ── 3. COMO FUNCIONA ── */
.how {
  background: #fff;
}

.how .tag {
  background: var(--lpink);
  color: var(--pink);
}

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 8px;
}

.section-title .pink {
  color: var(--pink);
}

.section-title .green {
  color: var(--green);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  font-weight: 600;
  margin-bottom: 48px;
  line-height: 1.5;
}

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

.step-card {
  background: var(--lgray);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: border-color .2s, transform .2s;
}

.step-card:hover {
  border-color: var(--mpink);
  transform: translateY(-4px);
}

.step-num {
  font-family: 'Baloo 2', cursive;
  font-size: 3rem;
  font-weight: 900;
  color: var(--pink);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.step-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 14px;
}

.step-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-desc {
  font-size: .92rem;
  color: var(--gray);
  font-weight: 600;
  line-height: 1.4;
}

/* ── 4. PARA QUEM É ── */
.for-who {
  background: var(--lgray);
}

.for-who .tag {
  background: #EDE6FF;
  color: #5500BB;
}

.personas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.persona-card {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.persona-card.mae {
  background: linear-gradient(145deg, #FFF0F7, #FFE0EF);
  border: 2px solid rgba(232, 0, 106, .2);
}

.persona-card.empreendedora {
  background: linear-gradient(145deg, #E6F9EE, #CFFBE0);
  border: 2px solid rgba(0, 150, 58, .2);
}

.persona-icon {
  font-size: 3.2rem;
  margin-bottom: 16px;
  display: block;
}

.persona-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.persona-card.mae .persona-title {
  color: var(--dpink);
}

.persona-card.empreendedora .persona-title {
  color: var(--dgreen);
}

.persona-who {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: .6;
}

.persona-pain {
  background: rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.45;
}

.persona-benefits {
  list-style: none;
}

.persona-benefits li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.persona-benefits li::before {
  content: '✓';
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.persona-card.mae .persona-benefits li::before {
  color: var(--pink);
}

.persona-card.empreendedora .persona-benefits li::before {
  color: var(--green);
}

/* ── 5. O QUE VOCÊ RECEBE ── */
.receives {
  background: #fff;
}

.receives .tag {
  background: var(--lyellow);
  color: var(--dyellow);
}

.receives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.receive-category {
  background: var(--lgray);
  border-radius: var(--radius);
  padding: 28px;
}

.receive-cat-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.receive-cat-title .cat-emoji {
  font-size: 1.3rem;
}

.receive-list {
  list-style: none;
}

.receive-list li {
  font-size: .9rem;
  font-weight: 700;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.receive-list li:last-child {
  border-bottom: none;
}

.receive-list li::before {
  content: '→';
  color: var(--pink);
  font-weight: 900;
}

/* ── 6. BÔNUS ── */
.bonus {
  background: linear-gradient(160deg, #2A004D, #4B0076);
  position: relative;
  overflow: hidden;
}

.bonus::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(255, 0, 127, .25) 0%, transparent 65%);
}

.bonus-inner {
  position: relative;
  z-index: 2;
}

.bonus .tag {
  background: rgba(255, 223, 0, .15);
  color: var(--yellow);
  border: 1px solid rgba(255, 223, 0, .3);
}

.bonus .section-title {
  color: #fff;
}

.bonus .section-sub {
  color: rgba(255, 255, 255, .6);
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.bonus-card {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color .2s, transform .2s;
}

.bonus-card:hover {
  border-color: rgba(255, 208, 0, .4);
  transform: translateY(-4px);
}

.bonus-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}

.bonus-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.bonus-desc {
  font-size: .85rem;
  color: rgba(255, 255, 0, 0.55);
  font-weight: 600;
  line-height: 1.4;
}

.bonus-badge {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255, 223, 0, .15);
  border: 1px solid rgba(255, 223, 0, .3);
  color: var(--yellow);
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 1px;
}

/* ── 7. DEPOIMENTOS ── */
.testimonials {
  background: var(--lgray);
}

.testimonials .tag {
  background: var(--lpink);
  color: var(--pink);
}

.testi-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}

.testi-tab {
  padding: 10px 24px;
  border-radius: 100px;
  font-family: 'Baloo 2', cursive;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}

.testi-tab.mae-tab {
  background: var(--lpink);
  color: var(--pink);
  border-color: var(--mpink);
}

.testi-tab.emp-tab {
  background: var(--lgreen);
  color: var(--green);
  border-color: var(--green);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: 'Baloo 2', cursive;
  font-size: 4rem;
  color: rgba(232, 0, 106, .1);
  line-height: 1;
}

.testi-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mpink), var(--dpink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.testi-name {
  font-size: .9rem;
  font-weight: 800;
  color: var(--dark);
}

.testi-role {
  font-size: .8rem;
  color: var(--gray);
  font-weight: 600;
}

/* ── 8. GARANTIA ── */
.guarantee {
  background: linear-gradient(135deg, #E6F9EE, #CFFBE0);
  border-top: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
}

.guarantee-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.guarantee-icon {
  font-size: 5rem;
  flex-shrink: 0;
}

.guarantee-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--dgreen);
  margin-bottom: 8px;
}

.guarantee-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.6;
}

/* ── 9. PREÇO ── */
.pricing {
  background: linear-gradient(160deg, #4B0076 0%, #2A004D 100%);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 50%, rgba(255, 223, 0, .2) 0%, transparent 65%),
    radial-gradient(ellipse 400px 400px at 90% 10%, rgba(255, 0, 127, .25) 0%, transparent 65%);
}

.pricing-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.pricing .tag {
  background: rgba(255, 223, 0, .15);
  color: var(--yellow);
  border: 1px solid rgba(255, 223, 0, .3);
}

.pricing .section-title {
  color: #fff;
}

.price-box {
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  padding: 52px 48px;
  max-width: 540px;
  margin: 0 auto 40px;
  backdrop-filter: blur(12px);
  position: relative;
}

.price-box::before {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dyellow);
  font-family: 'Baloo 2', cursive;
  font-size: .8rem;
  font-weight: 900;
  padding: 6px 24px;
  border-radius: 100px;
  letter-spacing: 2px;
}

.price-name {
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-product {
  font-family: 'Baloo 2', cursive;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 24px;
}

.price-from {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  font-family: 'Baloo 2', cursive;
  font-size: 4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 0 40px rgba(255, 223, 0, .4);
}

.price-main small {
  font-size: 1.8rem;
}

.price-note {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 32px;
}

.price-includes {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  text-align: left;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
}

.price-item::before {
  content: '✓';
  color: #00E676;
  font-weight: 900;
  flex-shrink: 0;
}

/* ── 10. FAQ ── */
.faq {
  background: #fff;
}

.faq .tag {
  background: var(--lgray);
  color: var(--gray);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
}

.faq-q .icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lpink);
  color: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.6;
}

.faq-item.open .faq-a {
  display: block;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 48px 0;
  text-align: center;
}

footer p {
  color: rgba(255, 255, 255, .4);
  font-size: .85rem;
  font-weight: 600;
  line-height: 1.8;
}

footer a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

footer a:hover {
  color: var(--mpink);
}

/* ── STICKY CTA (mobile feel) ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(20, 0, 31, .96);
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--yellow);
}

.sticky-price small {
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
  display: block;
  text-decoration: line-through;
}

.sticky-cta .btn-primary {
  padding: 14px 32px;
  font-size: 1rem;
  white-space: nowrap;
}

/* ── DOIS PLANOS DE PREÇO ── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.price-card {
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .15);
  border-radius: 28px;
  padding: 44px 36px;
  text-align: center;
  backdrop-filter: blur(12px);
  position: relative;
}

.price-card.featured {
  border-color: var(--yellow);
  background: rgba(255, 208, 0, .07);
}

.price-card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dyellow);
  font-family: 'Baloo 2', cursive;
  font-size: .8rem;
  font-weight: 900;
  padding: 6px 24px;
  border-radius: 100px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.price-card .price-name {
  font-family: 'Baloo 2', cursive;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.price-card .price-product {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.price-card .price-from {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-card .price-main {
  font-family: 'Baloo 2', cursive;
  font-size: 3.4rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 6px;
}

.price-card.featured .price-main {
  font-size: 4rem;
}

.price-card .price-main small {
  font-size: 1.6rem;
}

.price-card .price-note {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 24px;
}

.price-card .price-includes {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.price-card .price-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
}

.price-card .price-item::before {
  content: '✓';
  color: #00E676;
  font-weight: 900;
  flex-shrink: 0;
}

.price-card .price-item.no::before {
  content: '✗';
  color: rgba(255, 255, 255, .2);
}

.price-card .price-item.no {
  color: rgba(255, 255, 255, .3);
}

.price-card-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  /* Sombra que contorna apenas os objetos da imagem transparente */
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
}

.upsell-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  margin: 0 auto 15px;
  display: block;
  /* Sombra que contorna apenas os objetos da imagem transparente */
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}

.price-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .2);
  font-size: .8rem;
  font-weight: 700;
  margin: 4px 0;
}

.price-divider::before,
.price-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .08);
}

/* ── RESPONSIVE ── */
@media (max-width: 680px) {

  .steps,
  .personas-grid,
  .receives-grid,
  .bonus-grid,
  .testi-grid,
  .price-includes,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    gap: 16px;
  }

  .proof-divider {
    display: none;
  }

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

  .price-box {
    padding: 40px 24px;
  }

  .price-main {
    font-size: 3rem;
  }

  .testi-tabs {
    flex-wrap: wrap;
  }

  .btn-primary {
    padding: 16px 24px !important;
    font-size: 1.15rem !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .sticky-cta .btn-primary {
    width: auto !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    display: inline-block !important;
  }

  .hero {
    padding: 30px 0 60px;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    padding: 6px 18px;
    font-size: 0.8rem;
  }
}

/* ── CARROSSEL DE PRODUTOS ── */
.carousel-section {
  background: var(--lgray);
}

.carousel-section .tag {
  background: var(--lpink);
  color: var(--pink);
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .12);
  max-width: 700px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(20, 0, 31, .85) 0%, transparent 100%);
  padding: 28px 28px 20px;
}

.slide-caption strong {
  display: block;
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
}

.slide-caption span {
  font-size: .9rem;
  color: rgba(255, 255, 255, .65);
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .92);
  border: none;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: background .2s, transform .2s;
  z-index: 10;
}

.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 0, 127, .25);
  cursor: pointer;
  transition: background .2s, width .2s;
  border: none;
}

.carousel-dot.active {
  background: var(--pink);
  width: 28px;
  border-radius: 10px;
}

/* ── UPSELL MODAL ── */
.upsell-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 0, 31, .82);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.upsell-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.upsell-modal {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 28px;
  max-width: 520px;
  width: 100%;
  max-height: 90dvh;
  overflow-y: auto;
  position: relative;
  transform: scale(.94) translateY(24px);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.upsell-overlay.open .upsell-modal {
  transform: scale(1) translateY(0);
}

.upsell-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: var(--lgray);
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.upsell-close:hover {
  background: #e0dce8;
}

.upsell-tag {
  display: inline-block;
  background: var(--lyellow);
  color: var(--dyellow);
  font-family: 'Baloo 2', cursive;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.upsell-modal h3 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.3rem, 4vw, 1.65rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.upsell-modal>p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.upsell-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
}

.upsell-basic,
.upsell-featured {
  border-radius: 16px;
  padding: 18px 16px;
}

.upsell-basic {
  background: var(--lgray);
  border: 2px solid #e0dce8;
}

.upsell-featured {
  background: linear-gradient(145deg, var(--lpink), #ffe8f4);
  border: 2px solid var(--mpink);
  position: relative;
}

.uf-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: #fff;
  font-family: 'Baloo 2', cursive;
  font-size: .7rem;
  font-weight: 900;
  padding: 3px 14px;
  border-radius: 100px;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.ub-title,
.uf-title {
  font-family: 'Baloo 2', cursive;
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.ub-price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gray);
  margin-bottom: 10px;
}

.uf-from {
  font-size: .78rem;
  font-weight: 700;
  color: rgba(0, 0, 0, .35);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.uf-price {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 10px;
}

.upsell-basic ul,
.upsell-featured ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.upsell-basic ul li,
.upsell-featured ul li {
  font-size: .8rem;
  font-weight: 700;
  color: var(--dark);
  display: flex;
  gap: 6px;
  align-items: flex-start;
  line-height: 1.3;
}

.upsell-basic ul li::before {
  content: '·';
  color: var(--gray);
  flex-shrink: 0;
}

.upsell-featured ul li::before {
  content: '✓';
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 900;
}

.upsell-vs {
  font-family: 'Baloo 2', cursive;
  font-size: .85rem;
  font-weight: 900;
  color: var(--gray);
  text-align: center;
  flex-shrink: 0;
}

.upsell-btn-yes {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 1.1rem;
  padding: 18px 24px;
  margin-bottom: 12px;
}

.upsell-btn-no {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gray);
  text-decoration: underline;
  padding: 8px;
  transition: color .15s;
}

.upsell-btn-no:hover {
  color: var(--dark);
}

@media (max-width: 480px) {
  .upsell-modal {
    padding: 28px 18px 22px;
    border-radius: 20px;
  }

  .upsell-compare {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .upsell-vs {
    display: none;
  }

  .upsell-basic {
    display: none;
  }
}

/* ── GRID DE TEMAS ── */
.themes-section {
  background: #fff;
}

.themes-section .tag {
  background: var(--lyellow);
  color: var(--dyellow);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.grid-item {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}

.grid-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232, 0, 106, .15);
}

.grid-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.grid-item span {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  color: var(--gray);
  text-align: center;
  padding: 8px 6px;
  line-height: 1.2;
}

/* ── PROVA SOCIAL (prints reais) ── */
.social-proof {
  background: linear-gradient(160deg, #2A004D, #4B0076);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 500px 400px at 80% 30%, rgba(255, 0, 127, .25) 0%, transparent 65%);
}

.social-proof-inner {
  position: relative;
  z-index: 2;
}

.social-proof .tag {
  background: rgba(255, 223, 0, .15);
  color: var(--yellow);
  border: 1px solid rgba(255, 223, 0, .3);
}

.social-proof .section-title {
  color: #fff;
}

.social-proof .section-sub {
  color: rgba(255, 255, 255, .6);
}

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

.ps-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .2s, border-color .2s;
}

.ps-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 208, 0, .3);
}

.ps-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 340px;
}

.ps-card .ps-caption {
  padding: 14px 16px;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  line-height: 1.3;
}

@media (max-width: 680px) {
  .themes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps-card img {
    max-height: 220px;
  }
}
