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

:root {
  /* Fundos */
  --dark:       #0D1321;
  --dark2:      #162033;
  --dark3:      #1B263B;
  --card-bg:    #162033;
  --border:     #243447;

  /* Destaque */
  --yellow:       #F7C600;
  --yellow-dark:  #D4A900;
  --yellow-hover: #FFD83D;
  --green:        #0F6D32;
  --green2:       #137A3D;
  --green-bright: #22C55E;

  /* Texto */
  --white:      #FFFFFF;
  --text-sec:   #CBD5E1;
  --text-ter:   #94A3B8;

  /* Legados (mantidos para não quebrar referências) */
  --purple:        #0F6D32;
  --purple-light:  #4ADE80;
  --blue:          #0F6D32;
  --blue-light:    #86EFAC;
  --gray-100:      #F1F5F9;
  --gray-300:      #CBD5E1;
  --gray-500:      #64748B;
  --gray-800:      #1B263B;
  --red:           #EF4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── TOPBAR ── */
.topbar {
  background: var(--yellow);
  color: #0D1321;
  text-align: center;
  padding: 10px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(180deg, #0D1321 0%, #101828 100%);
  padding: 60px 16px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(15,109,50,0.20) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  border: 1.5px solid rgba(247,198,0,0.5);
  color: var(--yellow);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  background: rgba(247,198,0,0.06);
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 .accent-blue   { color: var(--blue-light); }
.hero h1 .accent-purple { color: var(--purple-light); }
.hero h1 .accent-yellow { color: var(--yellow); }

.hero-sub {
  color: var(--text-sec);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  max-width: 640px;
  margin: 0 auto 36px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-img-wrap {
  max-width: 480px;
  margin: 0 auto 36px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(15,109,50,0.35), 0 20px 60px rgba(0,0,0,0.4);
  border: 1px solid rgba(15,109,50,0.3);
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-sec);
  font-weight: 500;
}

.hero-benefit span.check { color: var(--green-bright); font-size: 1rem; }

/* ── HERO SOCIAL PROOF ── */
.hero-social-proof {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-stars { font-size: 1.1rem; letter-spacing: 2px; }

.hero-social-text {
  font-size: 0.88rem;
  color: var(--text-ter);
  font-weight: 400;
}

.hero-social-text strong { color: var(--text-sec); font-weight: 700; }

/* ── CTA BUTTON ── */
.btn-cta {
  display: inline-block;
  background: var(--yellow);
  color: #0D1321;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 18px 48px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 12px 30px rgba(247,198,0,0.25);
}

.btn-cta:hover { background: var(--yellow-hover); transform: scale(1.03); box-shadow: 0 16px 40px rgba(247,198,0,0.35); }
.btn-cta:active { transform: scale(0.98); }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 16px; }
.section-white  { background: var(--dark2); color: var(--white); }
.section-dark   { background: var(--dark);  color: var(--white); }
.section-dark2  { background: var(--dark2); color: var(--white); }

.container    { max-width: 1100px; margin: 0 auto; }
.container-sm { max-width: 780px;  margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.label-yellow { background: rgba(247,198,0,0.15);  color: var(--yellow); }
.label-purple { background: rgba(15,109,50,0.15);  color: var(--purple-light); }
.label-blue   { background: rgba(15,109,50,0.12);  color: var(--blue-light); }
.label-green  { background: rgba(15,109,50,0.15);  color: #4ADE80; }
.label-red    { background: rgba(239,68,68,0.15);  color: #F87171; }

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

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

.section-desc {
  font-size: 1.05rem;
  color: var(--text-ter);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.section-desc-white { color: var(--text-sec); }

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

/* ── DELIVERABLES ── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

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

.deliv-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.deliv-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.25); transform: translateY(-4px); }

.deliv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--yellow);
  margin-bottom: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.deliv-card ul { list-style: none; }
.deliv-card ul li {
  font-size: 0.9rem;
  color: var(--text-sec);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}
.deliv-card ul li::before { content: '⚽'; font-size: 0.85rem; margin-top: 1px; flex-shrink: 0; }

/* ── IDEAL PARA ── */
.ideal-tag .icon { font-size: 1.3rem; }

/* ── PAIN POINTS / BENEFITS ── */

@media (max-width: 640px) { .two-cols { grid-template-columns: 1fr; } }

/* ── BENEFITS LIST (dark) ── */
.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sec);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.benefit-card:hover { background: rgba(15,109,50,0.08); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.benefit-card .icon { font-size: 1.2rem; flex-shrink: 0; color: var(--green); }

/* ── STEPS ── */
@media (max-width: 900px) {
}
@media (max-width: 500px) {
}

/* ── STEPS BENEFITS BAR ── */

@media (max-width: 768px) {
}

/* ── COMO FUNCIONA ── */
.section-como-funciona {
  background: #0A1A0F;
  padding: 64px 16px 0;
  text-align: center;
}

.cf-container {
  max-width: 1160px;
  margin: 0 auto;
}

.cf-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 10px;
}

.cf-yellow { color: var(--yellow); }

.cf-sub {
  font-size: 1rem;
  color: var(--text-sec);
  margin-bottom: 0;
}

/* 4-step row */
.cf-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cf-step { text-align: center; }

/* Circle */
.cf-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #1A6B2A;
  box-shadow: 0 0 0 3px rgba(26,107,42,0.3), 0 12px 40px rgba(0,0,0,0.45);
  background: #0D1F10;
}

.cf-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Number badge */
.cf-num {
  width: 42px;
  height: 42px;
  background: var(--yellow);
  color: #0D1321;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 14px rgba(247,198,0,0.4);
}

/* Step label */
.cf-label {
  line-height: 1.35;
  max-width: 200px;
  margin: 0 auto;
}

.cf-label strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  text-transform: capitalize;
  letter-spacing: 0;
}

.cf-label span {
  font-size: 0.9rem;
  color: var(--text-sec);
}

.cf-label em {
  font-style: normal;
  color: var(--yellow);
  font-weight: 700;
}

/* Bottom benefits bar */
.cf-bar {
  display: flex;
  margin-top: 40px;
  background: #0E2414;
  border: 1.5px solid #1A5C28;
  border-radius: 14px;
  overflow: hidden;
}

.cf-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  flex: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #A7C4AF;
  border-right: 1px solid #1A5C28;
  line-height: 1.4;
  text-align: left;
}

.cf-bar-item:last-child { border-right: none; }

.cf-bar-icon { font-size: 1.4rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 900px) {
  .cf-steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .cf-bar { flex-wrap: wrap; }
  .cf-bar-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid #1A5C28; }
  .cf-bar-item:nth-child(odd) { border-right: 1px solid #1A5C28; }
  .cf-bar-item:last-child { border-bottom: none; border-right: none; }
}

@media (max-width: 540px) {
  .cf-circle { width: 160px; height: 160px; }
  .cf-steps { gap: 16px; }
  .cf-bar-item { flex: 1 1 100%; border-right: none; }
  .cf-bar-item:nth-child(odd) { border-right: none; }
}

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

.bonus-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0F6D32, #F7C600);
}

.bonus-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(247,198,0,0.2); }

.bonus-num {
  font-size: 0.72rem;
  color: var(--yellow);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-img {
  height: 160px;
  margin: 0 auto 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bonus-img img { max-height: 100%; object-fit: contain; }

.bonus-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.3;
  color: var(--white);
}

.bonus-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 10px;
}

.bonus-card p { font-size: 0.85rem; color: var(--text-ter); line-height: 1.5; margin-bottom: 14px; }

.bonus-value {
  font-size: 0.8rem;
  color: var(--text-ter);
  text-decoration: line-through;
}

.bonus-free {
  display: inline-block;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 999px;
  margin-left: 8px;
}

/* ── TESTIMONIALS ── */

@keyframes scroll-testimonials {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}

/* ── BASE CARD ── */
.pricing-card {
  border-radius: 24px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s;
  text-align: left;
}

/* ── PLANO BÁSICO ── */
.pricing-card.pricing-basic {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.basic-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--text-sec);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

/* ── PLANO COMPLETO ── */
.pricing-card.pricing-complete {
  background: var(--card-bg);
  border: 3px solid var(--yellow);
  box-shadow: 0 0 0 1px rgba(247,198,0,0.15), 0 24px 60px rgba(0,0,0,0.3);
  color: var(--white);
}

.pricing-complete .pricing-plan-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  margin-bottom: 4px;
}

.pricing-complete .pricing-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-ter);
  text-align: center;
  margin-bottom: 18px;
  line-height: 1.3;
}

/* ── BADGE RECOMENDADO ── */
.pricing-badge-new {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #0D1321;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── PRODUCT IMAGE ── */
.pricing-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.pricing-img-wrap img {
  width: 100%;
  display: block;
}

/* ── VOCÊ RECEBE ── */
.pricing-you-get {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: inherit;
}
.pricing-basic .pricing-you-get {
  color: var(--text-sec);
  font-size: 0.95rem;
  font-weight: 900;
  border-bottom: 1px solid var(--border);
  padding-bottom: 6px;
  margin-bottom: 10px;
}
.pricing-complete .pricing-you-get { color: var(--yellow); }

/* ── ITEMS BOX (básico only) ── */
.pricing-items-box {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px 12px;
  margin-bottom: 20px;
  background: rgba(0,0,0,0.15);
}

/* ── BULLETS ── */
.pricing-bullets { list-style: none; margin-bottom: 20px; }
.pricing-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: var(--text-sec);
}
.pricing-bullets li:last-child { border-bottom: none; }

.pricing-basic .pricing-bullets li.included     { color: var(--text-sec); }
.pricing-basic .pricing-bullets li.not-included { color: var(--text-ter); }
.pricing-basic .pricing-bullets li .x-icon      { color: var(--text-ter); flex-shrink: 0; }

/* Green checkmark for basic */
.check-blue {
  color: var(--green-bright);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-complete .pricing-bullets li         { border-bottom: 1px solid rgba(255,255,255,0.05); }
.pricing-complete .pricing-bullets li.included { color: var(--text-sec); }
.pricing-complete .pricing-bullets li .check-icon { flex-shrink: 0; }

/* ── PRICING BLOCK ── */
.pricing-original {
  font-size: 0.82rem;
  text-decoration: line-through;
  margin-bottom: 2px;
  color: var(--text-ter);
}
/* Basic plan price block */
.basic-price-block {
  text-align: center;
  margin-bottom: 20px;
}
.basic-original {
  font-size: 0.82rem;
  color: var(--text-ter);
  margin-bottom: 2px;
}
.basic-strike {
  text-decoration: line-through;
  color: #F87171;
}

.pricing-basic .pricing-original   { color: var(--text-ter); }
.pricing-complete .pricing-original { color: var(--text-ter); }

.pricing-current {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 4px;
}
.pricing-current .currency {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.pricing-current .price {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-current .cents {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}
.pricing-basic .pricing-current {
  justify-content: center;
}
.pricing-basic .pricing-current .currency,
.pricing-basic .pricing-current .price,
.pricing-basic .pricing-current .cents { color: var(--green-bright); }

.pricing-complete .pricing-current .currency,
.pricing-complete .pricing-current .price,
.pricing-complete .pricing-current .cents { color: var(--green-bright); }

.pricing-installments {
  font-size: 0.78rem;
  margin-bottom: 10px;
  color: var(--text-ter);
}
.pricing-basic    .pricing-installments { text-align: center; }
.pricing-complete .pricing-installments { }

.pricing-savings {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-bright);
  margin-bottom: 20px;
}
.pricing-basic .pricing-savings { justify-content: center; }

.savings-tick  { color: var(--green-bright); font-weight: 900; font-size: 1rem; }
.savings-check { color: var(--green-bright); font-weight: 900; }

/* ── BUTTONS ── */
.btn-basico {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--green-bright);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 10px;
  box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}
.btn-basico:hover { background: var(--green2); transform: scale(1.02); box-shadow: 0 12px 32px rgba(34,197,94,0.35); }

.btn-completo {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--yellow);
  color: #0D1321;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 10px;
  box-shadow: 0 8px 24px rgba(247,198,0,0.3);
}
.btn-completo:hover { background: var(--yellow-hover); transform: scale(1.02); box-shadow: 0 12px 32px rgba(247,198,0,0.4); }

/* ── SECURITY TEXT ── */
.pricing-security {
  text-align: center;
  font-size: 0.72rem;
  margin-bottom: 16px;
  color: var(--text-ter);
}

/* ── UPSELL HINT (básico) ── */
.pricing-upsell-hint {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(15,109,50,0.10);
  border: 1px solid rgba(15,109,50,0.25);
  border-radius: 12px;
  padding: 14px 16px;
  color: #4ADE80;
  line-height: 1.4;
}
.pricing-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  margin-top: 10px;
  font-weight: 900;
}

/* ── PRICING SECTION BG ── */
.section-pricing-bg {
  background: linear-gradient(160deg, #0a0f1e 0%, #0d1321 60%, #091420 100%);
}

/* ── PREMIUM BULLETS ── */
.prem-bullets { margin-bottom: 14px; }
.prem-bullets li {
  font-size: 0.9rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.prem-bullets li:last-child { border-bottom: none; }
.prem-check { flex-shrink: 0; font-size: 0.95rem; }

/* ── BONUS BLOCK ── */
.bonus-block {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(247,198,0,0.2);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 20px;
}
.bonus-block-header {
  background: rgba(247,198,0,0.12);
  border-bottom: 1px solid rgba(247,198,0,0.2);
  padding: 11px 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--yellow);
  text-transform: uppercase;
  text-align: center;
}
.bonus-valor {
  font-weight: 700;
  font-size: 0.75rem;
  color: rgba(247,198,0,0.7);
  text-transform: none;
  letter-spacing: 0;
}
.bonus-list {
  list-style: none;
  padding: 6px 14px;
  margin: 0;
}
.bonus-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: var(--text-sec);
}
.bonus-list li:last-child { border-bottom: none; }
.bonus-icon { flex-shrink: 0; font-size: 1rem; }
.bonus-text { flex: 1; font-weight: 500; }
.bonus-gratis {
  flex-shrink: 0;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.35);
  color: #4ADE80;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ── PREMIUM PRICE BLOCK ── */
.prem-price-block {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 18px 20px 14px;
  margin-bottom: 20px;
  text-align: left;
}
.prem-from-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.prem-from {
  font-size: 0.82rem;
  color: var(--text-ter);
  text-decoration: line-through;
}
.prem-discount-badge {
  background: #EF4444;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}
.prem-price-current {
  margin-bottom: 4px;
}
.prem-installments {
  font-size: 0.78rem;
  color: var(--text-ter);
  margin-bottom: 10px;
}
.prem-savings {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  color: #4ADE80;
}
.prem-savings-check {
  color: #4ADE80;
  font-weight: 900;
  font-size: 1rem;
}

/* ── CTA BUTTON PREMIUM (big) ── */
.btn-completo-big {
  font-size: 1rem;
  padding: 18px 16px;
  border-radius: 14px;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 40px rgba(247,198,0,0.4), 0 2px 0 rgba(0,0,0,0.25) inset;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-bottom: 12px;
}
.btn-completo-big:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 48px rgba(247,198,0,0.55);
}

/* ── TRUST ROW ── */
.prem-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-ter);
  margin-bottom: 10px;
}

/* ── PREMIUM SECURITY ── */
.prem-security {
  font-size: 0.72rem;
  color: var(--text-ter);
  margin-bottom: 0;
}

/* ── GUARANTEE ── */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(247,198,0,0.06);
  border: 1px solid rgba(247,198,0,0.22);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 0 40px rgba(247,198,0,0.06);
}

@media (max-width: 640px) {
  .guarantee-box { flex-direction: column; text-align: center; padding: 32px 24px; }
}

.guarantee-seal { width: 120px; flex-shrink: 0; }

.guarantee-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  color: var(--yellow);
}

.guarantee-box p         { font-size: 0.95rem; color: var(--text-sec); line-height: 1.7; }
.guarantee-box p strong  { color: white; }

/* ── FAQ ── */
.faq-list {
  max-width: 720px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--yellow); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--yellow);
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}

.faq-item.open .faq-icon { background: var(--yellow); color: #0D1321; transform: rotate(45deg); }

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-ter);
  line-height: 1.7;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--dark);
  padding: 80px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; top: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(247,198,0,0.06) 0%, transparent 60%);
}

/* ── BEFORE / AFTER ── */

@media (max-width: 580px) { .before-after { grid-template-columns: 1fr; } }

/* ── ARROW SEPARATOR ── */

/* ── STICKY BOTTOM BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13,19,33,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(247,198,0,0.25);
  padding: 12px 16px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-size: 13px;
  text-align: left;
}

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

.sticky-bar p          { font-size: 0.85rem; color: var(--text-sec); font-weight: 500; }
.sticky-bar p strong   { color: var(--yellow); }

/* ── DIVIDER ── */
/* ── UTILS ── */

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section        { padding: 60px 16px; }
  .guarantee-box  { gap: 24px; }
  .bonuses-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .bonuses-grid   { grid-template-columns: 1fr; }
.hero           { padding: 40px 16px 60px; }
  .hero .btn-cta  { width: 100%; }
  .pricing-grid   { grid-template-columns: 1fr; }
}

/* ── WHATSAPP TESTIMONIALS ── */

/* ── UPSELL POPUP ── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,19,33,0.88);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-box {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px 32px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-ter);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}
.popup-close:hover { color: var(--white); }

.popup-badge {
  display: inline-block;
  background: rgba(247,198,0,0.12);
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.popup-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.popup-sub {
  font-size: 0.95rem;
  color: var(--text-sec);
  margin-bottom: 20px;
}

.popup-price-wrap {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
}

.popup-original {
  font-size: 0.9rem;
  color: var(--text-ter);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.popup-current {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.popup-currency {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-bright);
}

.popup-big {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--green-bright);
  line-height: 1;
}

.popup-economy {
  display: inline-block;
  background: rgba(15,109,50,0.15);
  color: var(--green-bright);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

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

.popup-list li {
  font-size: 0.88rem;
  color: var(--text-sec);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}
.popup-list li:last-child { border-bottom: none; }

.popup-btn-yes {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.popup-btn-skip {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: var(--text-ter);
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}
.popup-btn-skip:hover { color: var(--text-sec); }

/* ── FOOTER ── */
.footer {
  background: #070D1A;
  padding: 24px 16px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-ter);
  border-top: 1px solid var(--border);
}

/* ── DEPOIMENTOS IMAGEM ── */
.dep-img-single {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.dep-img-single img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  display: block;
  border: 1px solid var(--border);
}

/* ── ANIMATION HELPERS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SEM X COM (COMPARE) ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .compare-grid { grid-template-columns: 1fr; }
}
.compare-col {
  border-radius: 18px;
  padding: 28px 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.compare-col.visible { opacity: 1; transform: translateY(0); }
.compare-col:hover   { transform: translateY(-4px) scale(1.01); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.compare-col-bad  { background: rgba(239,68,68,0.07);  border: 1.5px solid rgba(239,68,68,0.35); }
.compare-col-good { background: rgba(15,109,50,0.10);  border: 1.5px solid rgba(15,109,50,0.4); }
.compare-col-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.compare-title-bad  { color: #F87171; }
.compare-title-good { color: #4ADE80; }
.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.compare-list li {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-sec);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.cmp-icon { font-size: 0.85rem; flex-shrink: 0; margin-top: 1px; }

/* ── MOBILE PERFORMANCE & TOUCH ── */
@media (max-width: 768px) {
  /* Larger tap targets */
  .btn-cta, .btn-basico, .btn-completo { min-height: 52px; }
  .faq-question { min-height: 48px; }

  /* Reduce motion for better perf */
  .deliv-card:hover,
  .benefit-card:hover,
  .bonus-card:hover { transform: none; }

  /* Optimize sticky bar for mobile */
  .sticky-bar { gap: 12px; padding: 10px 14px; }
  .sticky-bar p { font-size: 0.78rem; }

  /* Prevent overflow on small screens */
  .cf-bar { display: none; }
  .prem-trust-row { font-size: 0.7rem; gap: 4px 6px; }
}

@media (max-width: 480px) {
  .section { padding: 52px 14px; }
  .container { padding: 0 2px; }
  .section-como-funciona { padding: 52px 14px 0; }
  .btn-cta { width: 100%; text-align: center; }
  .btn-completo-big { font-size: 0.92rem; padding: 16px 12px; }
  .pricing-card { padding: 22px 16px; }
  .bonus-block-header { font-size: 0.72rem; }
}

/* Reduce layout shifts: explicit dimensions for images */
.hero-img-wrap img { aspect-ratio: 1 / 1; width: 100%; }
.pricing-img-wrap img { aspect-ratio: 4 / 3; }
.bonus-img img { aspect-ratio: 1 / 1; }
.cf-circle img { aspect-ratio: 1 / 1; }

/* GPU compositing for animated elements */
.fade-up { will-change: opacity, transform; }
.fade-up.visible { will-change: auto; }
.sticky-bar { will-change: transform; }

