:root{
  --cream: #FBF1E7;
  --cream-soft: #FDF6EF;
  --card: #FCEADB;
  --card-border: #F3C79A;
  --orange: #E8823C;
  --orange-dark: #C86A2B;
  --orange-deep: #D9752F;
  --pink: #E23E85;
  --pink-deep: #B23568;
  --green: #3AA65B;
  --green-deep: #1E8E4F;
  --ink: #241B14;
  --ink-soft: #55483C;
  --red: #D6392E;
  --red-soft: #FBE4E1;
  --white: #FFFFFF;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-btn: 0 6px 0 var(--orange-dark);
  --shadow-btn-green: 0 6px 0 var(--green-deep);
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

*{box-sizing:border-box;}
html,body{margin:0;padding:0;}
body{
  font-family: var(--font-body);
  background: linear-gradient(180deg,#EFE0D2 0%, #F6E9DC 100%);
  color: var(--ink);
  display:flex;
  justify-content:center;
  min-height:100vh;
}

.phone-frame{
  width:100%;
  max-width:480px;
  min-height:100vh;
  background: var(--cream);
  position:relative;
  box-shadow: 0 0 60px rgba(0,0,0,0.12);
  display:flex;
  flex-direction:column;
}

.progress-wrap{
  height:8px;
  background: #EFE0D2;
  width:100%;
  position:sticky;
  top:0;
  z-index:5;
}
.progress-bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--orange), var(--pink));
  transition: width .4s ease;
}

.app{
  flex:1;
  padding: 28px 22px 40px;
  display:flex;
  flex-direction:column;
  animation: fadeIn .35s ease;
}

@keyframes fadeIn{
  from{opacity:0; transform:translateY(8px);}
  to{opacity:1; transform:translateY(0);}
}

/* ---------- Typography ---------- */
h1,h2,h3{
  font-family: var(--font-display);
  font-weight:700;
  line-height:1.25;
  margin:0 0 18px;
  color: var(--ink);
}
.step-title{
  font-size: 1.5rem;
  text-align:center;
}
.step-subtitle{
  font-family: var(--font-body);
  font-weight:600;
  font-size:1rem;
  text-align:center;
  color: var(--ink-soft);
  margin:-10px 0 20px;
}
.accent{ color: var(--orange); }
.accent-pink{ color: var(--pink); }

p{ font-size:1rem; line-height:1.5; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:18px 20px;
  border-radius: 999px;
  border:none;
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.05rem;
  cursor:pointer;
  text-align:center;
  transition: transform .12s ease, box-shadow .12s ease;
  text-decoration:none;
}
.btn:active{ transform: translateY(4px); box-shadow:none !important; }

.btn-primary{
  background: var(--orange);
  color:#fff;
  box-shadow: var(--shadow-btn);
}
.btn-green{
  background: linear-gradient(180deg,#4EBE72,#2E9E52);
  color:#fff;
  box-shadow: var(--shadow-btn-green);
}
.btn-outline{
  background: var(--cream-soft);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-block{ margin-top:14px; }

/* ---------- Choice options ---------- */
.options{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:6px;
}
.options.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.option{
  background: var(--card);
  border:2px solid var(--card-border);
  border-radius: var(--radius-md);
  padding:16px 18px;
  font-size:1.02rem;
  font-weight:700;
  color: var(--ink);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  transition: border-color .15s ease, transform .1s ease, background .15s ease;
  text-align:left;
}
.option:hover{ border-color: var(--orange); }
.option:active{ transform: scale(0.98); }
.option.selected{
  border-color: var(--orange);
  background: #FBDFC4;
}
.option .emoji{ font-size:1.4rem; margin-right:10px; }
.option-content{ display:flex; align-items:center; }
.radio-dot{
  width:24px; height:24px; border-radius:50%;
  border:2px solid var(--orange);
  background:#fff;
  flex-shrink:0;
}
.option.selected .radio-dot{
  background: var(--orange);
  box-shadow: inset 0 0 0 4px #fff;
}
.option.centered{
  flex-direction:column;
  text-align:center;
  gap:8px;
  padding:22px 10px;
}
.option.centered .emoji{ font-size:1.8rem; margin:0; }

.options.cards-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:10px;
}
.options.cards-3 .option{ padding:16px 8px; font-size:0.92rem; }

.option .chev{ color: var(--orange); font-weight:800; }

/* ---------- Hero image ---------- */
.hero-image{
  width:100%;
  border-radius: var(--radius-lg);
  overflow:hidden;
  margin-top:24px;
}
.hero-image img{ width:100%; display:block; }

/* ---------- Logo ---------- */
.logo{
  display:flex;
  justify-content:center;
  margin-bottom:22px;
}
.logo-text{
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.9rem;
  text-align:center;
  line-height:1.05;
  background: linear-gradient(180deg, #F5B54C, #D9772E);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.logo-text .line2{
  background: linear-gradient(180deg, #EE7BB0, #C43A73);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.logo-candle{ font-size:1.6rem; margin-bottom:-4px; display:block; text-align:center; }

/* ---------- Loading screen ---------- */
.loading-row{
  display:flex;
  justify-content:space-between;
  font-weight:700;
  margin-bottom:6px;
  font-size:0.95rem;
}
.loading-track{
  width:100%;
  height:12px;
  background:#EFE0D2;
  border-radius:999px;
  overflow:hidden;
  margin-bottom:18px;
}
.loading-fill{
  height:100%;
  width:0%;
  background: var(--orange);
  border-radius:999px;
  transition: width 1.4s ease;
}
.loading-desc{ text-align:center; margin-bottom:22px; }

.status-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.status-card {
  position: relative;
  min-height: 220px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px 14px;
  box-sizing: border-box;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease,
    box-shadow 0.5s ease,
    background 0.5s ease;
  overflow: hidden;
}

/* Pequenos brilhos decorativos */
.status-card::before,
.status-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  pointer-events: none;
}

.status-card::before {
  width: 7px;
  height: 7px;
  top: 35px;
  left: 28px;
  background: currentColor;
}

.status-card::after {
  width: 5px;
  height: 5px;
  top: 60px;
  right: 25px;
  background: currentColor;
}

/* BOLSA RESERVADA */
.status-card-1 {
  background: #fff0e8;
  border: 2px solid #ffd1bb;
  color: #f28a52;
  box-shadow: 0 8px 22px rgba(242, 138, 82, 0.08);
}

/* VALIDANDO PERFIL */
.status-card-2 {
  background: #fff9e8;
  border: 2px solid #f7e2a9;
  color: #e9b84d;
  box-shadow: 0 8px 22px rgba(233, 184, 77, 0.08);
}

/* ACESSO GRATUITO */
.status-card-3 {
  background: #f1fae8;
  border: 2px solid #c9e9a8;
  color: #74b95b;
  box-shadow: 0 8px 22px rgba(116, 185, 91, 0.08);
}

/* ÍCONE */
.status-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 42px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 0 0 10px rgba(255, 255, 255, 0.18);
}

/* ÍCONE VERDE DO CHECK */
.status-card-1 .status-icon {
  background: #43c45b;
  color: white;
  border: none;
  box-shadow:
    0 8px 18px rgba(67, 196, 91, 0.25),
    inset 0 0 0 10px rgba(255, 255, 255, 0.08);
}

/* ÍCONE DA AMPULHETA */
.status-card-2 .status-icon {
  background: #fffaf0;
  color: #b97832;
}

/* ÍCONE DO CADEADO */
.status-card-3 .status-icon {
  background: #f9fff5;
  color: #77a94f;
}

/* TEXTO */
.status-label {
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 800;
  color: #29231f;
}

/* ESTADO CONCLUÍDO */
.status-card.done {
  transform: translateY(-3px);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.08);
}

/* ESTADO AINDA NÃO LIBERADO */
.status-card:not(.active) {
  opacity: 0.62;
}

/* MOBILE */
@media (max-width: 600px) {
  .status-cards {
    gap: 10px;
  }

  .status-card {
    min-height: 180px;
    padding: 18px 8px;
    border-radius: 20px;
  }

  .status-icon {
    width: 62px;
    height: 62px;
    font-size: 32px;
    margin-bottom: 15px;
  }

  .status-label {
    font-size: 0.92rem;
  }
}

.found-text{
  font-family: var(--font-display);
  font-weight:700;
  font-size:1.3rem;
  text-align:center;
  margin: 6px 0 18px;
}

.info-box{
  background: #FDEDE3;
  border-radius: var(--radius-md);
  padding:18px;
  text-align:center;
  margin-bottom:20px;
  font-weight:600;
}
.info-box mark{
  background: var(--orange);
  color:#fff;
  padding:1px 6px;
  border-radius:4px;
}

/* ---------- Result screen ---------- */
.wow{
  font-family: var(--font-display);
  font-weight:800;
  font-size:3rem;
  text-align:center;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
  background: linear-gradient(180deg,#FFD966,#F5A623);
  -webkit-background-clip:text;
  background-clip:text;
  margin: 10px 0 18px;
}
.result-lead{
  text-align:center;
  font-size:1.05rem;
  margin-bottom:20px;
}
.result-lead mark{ background:#CBF3D6; padding:0 4px; }
.result-lead .brand{ display:block; color: var(--pink-deep); font-family:var(--font-display); font-weight:800; font-size:1.4rem; margin-top:6px; }

.ring-box{
  border:1px solid #EADDCB;
  border-radius: var(--radius-lg);
  padding:24px;
  text-align:center;
  margin-bottom:18px;
}
.ring{
  width:170px; height:170px;
  border-radius:50%;
  margin:0 auto 14px;
  display:flex; align-items:center; justify-content:center;
  background: conic-gradient(var(--green) 0% var(--pct,94%), #EAEAEA var(--pct,94%) 100%);
}
.ring-inner{
  width:132px; height:132px;
  border-radius:50%;
  background:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.7rem;
}
.ring-caption{
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.2rem;
}

.min-box{
  border:1px solid #F3C6C0;
  border-radius: var(--radius-md);
  padding:14px;
  text-align:center;
  color: var(--red);
  font-weight:800;
  font-size:0.92rem;
  margin-bottom:18px;
}

.points-box{
  background: var(--card);
  border-radius: var(--radius-lg);
  padding:20px;
  margin-bottom:20px;
}
.points-box h3{ color: var(--pink-deep); font-size:1.15rem; }
.point{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  font-weight:700;
  font-size:0.95rem;
}
.point .check{
  flex-shrink:0;
  width:22px; height:22px;
  background: var(--green);
  color:#fff;
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  font-size:0.8rem;
}

.section-title{
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.4rem;
  text-align:center;
  color: var(--pink-deep);
  margin-bottom:10px;
}

/* ---------- Placeholders (image/video) ---------- */
.placeholder{
  width:100%;
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg, #F1DFCB, #F1DFCB 10px, #EAD3B8 10px, #EAD3B8 20px);
  border: 2px dashed var(--card-border);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color: var(--ink-soft);
  font-weight:700;
  font-size:0.85rem;
  padding: 18px;
}
.placeholder .ph-icon{ font-size:2.4rem; margin-bottom:8px; }
.placeholder-photo{ height:260px; margin-bottom:18px; }
.placeholder-ebook{ height:220px; margin-bottom:18px; }
.placeholder-video{ height:280px; margin-bottom:0; position:relative; overflow:hidden; }

/* ---------- Instructor ---------- */
.quote-box{
  background: #FBEFD8;
  border-radius: var(--radius-lg);
  padding:20px;
  margin: 18px 0;
  font-weight:600;
}
.quote-box b{ color: var(--orange-deep); }

/* ---------- Form ---------- */
.field{ margin-bottom:16px; }
.field label{
  display:block;
  font-weight:700;
  margin-bottom:8px;
  font-size:0.95rem;
}
.field input{
  width:100%;
  padding:16px;
  border-radius: var(--radius-md);
  border:1px solid #DDD0BF;
  background:#fff;
  font-family: var(--font-body);
  font-size:1rem;
}
.field input:focus{ outline:2px solid var(--orange); }
.field-hint{
  color: var(--green-deep);
  font-family: var(--font-display);
  font-weight:800;
  text-align:center;
  margin-bottom:16px;
}
.form-error{
  color: var(--red);
  font-size:0.85rem;
  font-weight:700;
  margin:-10px 0 12px;
  display:none;
}
.form-error.show{ display:block; }

/* ---------- Alert / reminder boxes ---------- */
.alert-box{
  border:2px solid var(--pink);
  border-radius: var(--radius-lg);
  padding:20px;
  margin: 18px 0;
}
.alert-box h3{ color: var(--pink-deep); text-align:center; font-size:1.3rem; }
.warn-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color: var(--red);
  font-family: var(--font-display);
  font-weight:800;
  font-size:1.3rem;
  margin: 20px 0 10px;
}
.notice-box{
  background: #FCE9E6;
  border-radius: var(--radius-md);
  padding:18px;
  margin-bottom:18px;
  text-align:center;
}
.notice-box b{ background: transparent; }
.notice-tag{
  display:inline-block;
  background: var(--red);
  color:#fff;
  font-size:0.7rem;
  font-weight:800;
  padding:2px 10px;
  border-radius:6px;
  margin-bottom:8px;
}

/* ---------- Payment / trust row ---------- */
.trust-row{
  display:flex;
  justify-content:space-between;
  gap:6px;
  margin: 18px 0 12px;
  text-align:center;
}
.trust-item{ flex:1; font-size:0.7rem; font-weight:700; color: var(--orange-deep); }
.trust-item .t-icon{ font-size:1.3rem; display:block; margin-bottom:4px; }
.pay-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:center;
  margin-bottom:10px;
}
.pay-chip{
  border:1px solid #E0C6A8;
  border-radius:6px;
  padding:4px 8px;
  font-size:0.68rem;
  font-weight:800;
  color: var(--orange-deep);
  background:#fff;
}

/* ---------- Guarantee badge ---------- */
.guarantee-badge{
  width:170px; height:170px;
  margin:16px auto 22px;
  border-radius:50%;
  background: radial-gradient(circle at 35% 30%, #FFE9A8, #D9A227 70%);
  border:6px solid #B8841E;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#4A2E06;
  font-family: var(--font-display);
  text-align:center;
  font-weight:800;
}
.guarantee-badge .g-days{ font-size:1.9rem; line-height:1; }
.guarantee-badge .g-small{ font-size:0.6rem; letter-spacing:0.5px; }

/* ---------- Footer ---------- */
.footer{
  text-align:center;
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid #EADDCB;
  color: var(--ink-soft);
  font-size:0.78rem;
}
.footer a{ color: var(--orange-deep); text-decoration:underline; margin:0 6px; }
.secure-badge{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin: 14px 0 10px;
  font-weight:800;
}

/* ---------- Misc ---------- */
.center{ text-align:center; }
.mt-8{ margin-top:8px; }
.mt-16{ margin-top:16px; }
.mb-0{ margin-bottom:0; }
.small-note{ font-size:0.78rem; color:var(--ink-soft); text-align:center; margin-top:10px; }

@media (max-width:360px){
  .step-title{ font-size:1.3rem; }
  .wow{ font-size:2.4rem; }
}

.quiz-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 16px;
}

.quiz-logo img {
  width: auto;
  max-width: 220px;
  max-height: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---------- Imagem do quiz ---------- */
.quiz-image{
  width:100%;
  margin-top:24px;
  border-radius:var(--radius-lg);
  overflow:hidden;
}

.quiz-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:inherit;
}

.instructor-photo{
  width:100%;
  overflow:hidden;
  border-radius:var(--radius-lg);
  margin-bottom:18px;
}

.instructor-photo img{
  width:100%;
  height:auto;
  display:block;
}

.quiz-image {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 30px auto 0;
  border-radius: 24px;
  object-fit: cover;
}