* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --bg-1: #f8fafc;
  --bg-2: #eef2f7;
  --card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --border: #e2e8f0;
  --green: #16a34a;
  --green-dark: #15803d;
  --red: #dc2626;
  --red-soft: #ef4444;
  --blue-soft: rgba(37, 99, 235, 0.08);
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-strong: 0 20px 50px rgba(0, 0, 0, 0.15);
  --radius-lg: 20px;
  --radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, var(--blue-soft), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-1) 55%, var(--bg-2) 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 16px;
}

.topbar {
  background: linear-gradient(90deg, var(--red), var(--red-soft));
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  text-align: center;
}

.hero h1 {
  font-size: 30px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.hero p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}

.video-section {
  margin: 18px 0 28px;
}

.video-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  line-height: 0;
}

.video-wrap wistia-player {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 18px;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 30px rgba(22, 163, 74, 0.25);
  animation: pulse 1.6s infinite;
}

.btn-video {
  margin-top: 16px;
}

.btn-final {
  margin-top: 8px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }

  100% {
    transform: scale(1);
  }
}

.recebe-section {
  margin: 24px 0 28px;
}

.recebe-section h2 {
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 800;
}

.recebe-card,
.card,
.whatsapp,
.highlight,
.bloco-destaque {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.recebe-card {
  padding: 16px;
  margin-bottom: 18px;
}

.recebe-card h3 {
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--text);
}

.recebe-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: transparent;
}

.placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  color: #64748b;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: #f1f5f9;
}

.card {
  padding: 18px;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 800;
}

ul {
  list-style: none;
}

li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.highlight {
  padding: 18px;
  margin: 18px 0;
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-color: #bbf7d0;
}

.highlight strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: #166534;
}

.highlight p {
  font-size: 15px;
  line-height: 1.5;
  color: #166534;
}

.whatsapp {
  padding: 18px;
  margin: 20px 0;
  background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.whatsapp h2 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 800;
}

.msg {
  background: #f1f5f9;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px;
  border-radius: 14px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.info-section {
  margin: 24px 0;
}

.info-section h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 800;
  color: var(--text);
}

.lista-problemas,
.lista-detalhes,
.lista-beneficios {
  list-style: none;
  margin-bottom: 18px;
}

.lista-problemas li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #dc2626;
  font-weight: 600;
}

.lista-detalhes li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-soft);
}

.lista-beneficios li {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--green);
  font-weight: 600;
}

.texto {
  font-size: 15px;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 14px;
  text-align: center;
}

.alerta {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #dc2626;
  margin: 18px 0;
}

.bloco-destaque {
  padding: 18px;
}

.bloco-destaque h3 {
  text-align: center;
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.bloco-destaque strong {
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: var(--green);
}

.bloco-destaque p {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 12px;
  text-align: center;
}

.price {
  text-align: center;
  margin: 28px 0 18px;
}

.old {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.new {
  font-size: 42px;
  line-height: 1;
  color: var(--green);
  font-weight: 800;
}

.price-note {
  font-size: 14px;
  color: var(--text-soft);
  margin-top: 8px;
}

.footer {
  font-size: 12px;
  line-height: 1.6;
  color: #64748b;
  text-align: center;
  margin: 24px 0 10px;
}

.cta {
  display: block;
  width: fit-content;
  margin: 20px auto;
  background: linear-gradient(180deg, #23d160, #16a34a);
  color: #fff;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 0 #0f7a36;
  transition: all 0.2s ease;
}

.cta:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #0f7a36;
}

@media (max-width: 520px) {
  .container {
    padding: 14px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 15px;
  }

  .video-wrap {
    max-width: 100%;
  }

  .video-wrap wistia-player {
    border-radius: 18px;
  }

  .recebe-section h2 {
    font-size: 22px;
  }

  .recebe-card {
    padding: 14px;
    border-radius: 18px;
  }

  .recebe-card h3 {
    font-size: 15px;
  }

  .recebe-img {
    border-radius: 14px;
  }

  .info-section h2 {
    font-size: 20px;
  }

  .new {
    font-size: 38px;
  }

  .btn {
    font-size: 15px;
    padding: 17px 16px;
  }

  .cta {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.price {
  margin: 32px 0 18px;
}

.price-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  padding: 26px 22px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.old {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 10px;
  font-weight: 500;
}

.new {
  font-size: 56px;
  line-height: 1;
  color: #16a34a;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.price-note {
  font-size: 18px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 22px;
}

.secure-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  font-size: 17px;
  font-weight: 600;
  color: #334155;
}

.secure-icon {
  font-size: 20px;
  line-height: 1;
}

@media (max-width: 520px) {
  .price {
    margin: 28px 0 16px;
  }

  .price-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .old {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .new {
    font-size: 44px;
  }

  .price-note {
    font-size: 16px;
    margin-bottom: 18px;
  }

  .secure-payment {
    font-size: 15px;
    gap: 8px;
    padding-top: 16px;
  }

  .secure-icon {
    font-size: 18px;
  }
}

.plans {
  margin: 32px 0 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  padding: 24px 18px 22px;
  text-align: center;
}

.plan-card.basic {
  background: #ffffff;
}

.plan-card.featured {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  border: 2px solid #22c55e;
  box-shadow: 0 20px 45px rgba(34, 197, 94, 0.18);
}

.plan-badge {
  display: inline-block;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.featured-badge {
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #ffffff;
}

.old {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
  margin-bottom: 10px;
  font-weight: 500;
}

.new {
  font-size: 54px;
  line-height: 1;
  color: #16a34a;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.price-note {
  font-size: 18px;
  color: #334155;
  font-weight: 500;
  margin-bottom: 18px;
}

.secure-payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: #334155;
}

.secure-icon {
  font-size: 18px;
  line-height: 1;
}

.plan-divider {
  width: 100%;
  height: 1px;
  background: #e2e8f0;
  margin: 18px 0;
}

.plan-title {
  font-size: 18px;
  color: #0f172a;
  font-weight: 800;
  margin-bottom: 14px;
}

.plan-list {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.plan-list li {
  font-size: 15px;
  line-height: 1.55;
  color: #334155;
  margin-bottom: 10px;
}

.plan-highlight {
  color: #16a34a !important;
  font-weight: 800 !important;
  font-size: 25px !important;
}

.plan-card .cta {
  margin-top: 8px;
}

@media (max-width: 520px) {
  .plans {
    margin: 28px 0 16px;
    gap: 16px;
  }

  .plan-card {
    padding: 20px 14px 18px;
    border-radius: 20px;
  }

  .plan-badge {
    font-size: 11px;
    padding: 7px 12px;
    margin-bottom: 12px;
  }

  .new {
    font-size: 42px;
  }

  .price-note {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .secure-payment {
    font-size: 14px;
    gap: 8px;
  }

  .plan-title {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .plan-list li {
    font-size: 14px;
    margin-bottom: 9px;
  }
}

.upsell-alert {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #dc2626;
  text-align: center;
  line-height: 1.4;
}


.whatsapp-top {
  text-align: center;
  font-size: 14px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 10px;
}


/*====================
     MODAL DO PIX 
====================*/

.pix-modal {
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.7);
display:none;
align-items:center;
justify-content:center;
z-index:9999;
}

.pix-box {
background:#ffffff;
padding:30px;
border-radius:14px;
max-width:420px;
width:90%;
text-align:center;
color:#001a33;
position:relative;
}

.pix-close {
position:absolute;
top:10px;
right:15px;
font-size:26px;
cursor:pointer;
}

.pix-qr {
width:220px;
margin:15px auto;
display:block;
}

#pixCode {
width:100%;
height:80px;
margin-top:10px;
padding:10px;
font-size:12px;
}

.pix-copy {
background:#16a34a;
color:#fff;
border:none;
padding:12px 18px;
margin-top:10px;
border-radius:8px;
font-weight:700;
cursor:pointer;
}

.pix-status {
margin-top:12px;
font-size:14px;
color:#666;
}

.pix-loading{
margin:20px 0;
}

.loader{
border:6px solid #eee;
border-top:6px solid #2ecc71;
border-radius:50%;
width:40px;
height:40px;
animation:spin 1s linear infinite;
margin:auto;
}

@keyframes spin{
0%{transform:rotate(0deg)}
100%{transform:rotate(360deg)}
}

.pix-form{
display:flex;
flex-direction:column;
gap:12px;
margin-top:10px;
}

.pix-form-title{
font-size:18px;
font-weight:700;
color:#001a33;
margin-bottom:6px;
line-height:1.4;
}

.pix-input{
width:100%;
padding:14px 16px;
border:1px solid #d9d9d9;
border-radius:10px;
font-size:15px;
outline:none;
background:#fff;
color:#001a33;
}

.pix-input:focus{
border-color:#16a34a;
box-shadow:0 0 0 3px rgba(22,163,74,0.12);
}

#pixCode{
width:100%;
height:90px;
margin-top:10px;
padding:12px;
font-size:12px;
border:1px solid #d9d9d9;
border-radius:10px;
resize:none;
outline:none;
color:#001a33;
background:#f9fafb;
}