:root{
  --gold:#c99a2e;
  --gold-dark:#9b7118;
  --gold-light:#f0d37a;
  --black:#111;
  --gray:#646464;
  --light:#f5f5f5;
  --green:#18a957;
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;font-family:Montserrat,Arial,sans-serif;background:#fff;color:var(--black)}
button,a{font-family:inherit}
.screen{display:none;min-height:100vh;background:#fff}
.screen.active{display:block;animation:fade .25s ease}
@keyframes fade{from{opacity:0}to{opacity:1}}
.deadline{
  width:100%;
  padding:13px 12px;
  text-align:center;
  background:#e92828;
  color:#fff;
  font-weight:900;
  font-size:13px;
  letter-spacing:.015em
}
.success-bar{background:var(--green)}
.container{width:min(100% - 30px,620px);margin:0 auto}
.welcome-content{text-align:center;padding:24px 0 38px}
.logo{width:145px;height:145px;object-fit:contain;display:block;margin:0 auto 16px}
.product-showcase{
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  max-width:450px;
  margin:0 auto 22px;
  padding:12px;
  background:linear-gradient(145deg,#f8f8f8,#e9e9e9);
  border-radius:18px;
  box-shadow:0 8px 25px rgba(0,0,0,.13)
}
.product-card{
  min-height:130px;
  border-radius:13px;
  background:linear-gradient(145deg,#fff,#ededed);
  border:1px solid #e1e1e1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  position:relative
}
.product-card:after{
  content:"";
  position:absolute;
  width:100px;height:100px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(201,154,46,.25),transparent 70%)
}
.product-emoji{font-size:58px;filter:drop-shadow(0 7px 5px rgba(0,0,0,.18));z-index:1}
.product-card span{font-size:10px;font-weight:900;color:#333;margin-top:8px;z-index:1}
h1{font-size:clamp(25px,6vw,39px);line-height:1.12;margin:14px 0 13px;font-weight:900;letter-spacing:-.035em}
h1 span,h2 span{color:var(--gold-dark)}
.subtitle{font-size:14px;color:var(--gray);line-height:1.5;margin:0 auto 20px}
.main-button{
  width:100%;
  border:0;
  border-radius:8px;
  padding:19px 20px;
  background:linear-gradient(180deg,#d9aa39,#b17d15);
  color:#fff;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 5px 0 #79520b,0 9px 18px rgba(131,86,0,.24);
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  cursor:pointer;
  transition:.15s ease
}
.main-button:hover{transform:translateY(-1px);filter:brightness(1.04)}
.main-button:active{transform:translateY(3px);box-shadow:0 2px 0 #79520b}
.main-button span{font-size:27px;line-height:0}
.secure{font-size:11px;color:#777;margin-top:17px}
.quiz-header{
  width:min(100% - 24px,680px);
  margin:0 auto;
  padding:15px 0 10px;
  border-bottom:1px solid #eee
}
.quiz-header img{width:74px;height:74px;object-fit:contain;display:block;margin:auto}
.progress-text{display:flex;justify-content:space-between;font-size:11px;color:#777;font-weight:700;margin:5px 0 8px}
.progress-text strong{color:var(--gold-dark)}
.progress{height:8px;background:#ececec;border-radius:50px;overflow:hidden}
.progress div{height:100%;width:33%;background:linear-gradient(90deg,var(--gold-dark),var(--gold-light));transition:.3s ease}
.quiz-content{padding:37px 0}
.quiz-content h2{font-size:clamp(23px,6vw,34px);text-align:center;line-height:1.18;margin:0;font-weight:900;letter-spacing:-.025em}
.instruction{text-align:center;color:#777;font-size:13px;margin:12px 0 25px}
.options{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.option{
  border:2px solid #e5e5e5;
  border-radius:12px;
  background:#fff;
  padding:11px;
  min-height:188px;
  text-align:center;
  cursor:pointer;
  box-shadow:0 4px 13px rgba(0,0,0,.07);
  transition:.15s ease
}
.option:hover{border-color:var(--gold);transform:translateY(-2px)}
.option-visual{
  height:125px;
  border-radius:9px;
  background:linear-gradient(145deg,#f6f6f6,#e4e4e4);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:65px;
  margin-bottom:10px
}
.option strong{font-size:13px;line-height:1.25;display:block}
.loading-content{text-align:center;padding:80px 0}
.small-logo{width:120px;height:120px}
.loader{width:68px;height:68px;border:7px solid #eee;border-top-color:var(--gold);border-radius:50%;margin:20px auto;animation:spin .8s linear infinite}
@keyframes spin{to{transform:rotate(360deg)}}
.loading-content h2{font-size:26px;margin:12px 0 8px}
.loading-content p{color:#777;font-size:13px}
.analysis-progress{height:10px;border-radius:50px;background:#eee;overflow:hidden;margin:25px 0 8px}
.analysis-progress div{height:100%;width:0;background:linear-gradient(90deg,var(--gold-dark),var(--gold-light))}
#analysisPercent{color:var(--gold-dark);font-size:13px}
.result-content{text-align:center;padding:23px 0 45px}
.approved{
  width:72px;height:72px;border-radius:50%;
  display:grid;place-items:center;
  background:#e7f8ee;color:var(--green);
  border:3px solid var(--green);
  font-size:38px;font-weight:900;
  margin:0 auto 17px
}
.result-content h2{font-size:clamp(25px,6vw,37px);line-height:1.15;margin:0 0 15px;font-weight:900}
.result-content>p{color:#666;line-height:1.55;font-size:14px}
.benefits{text-align:left;background:#f7f7f7;border:1px solid #e4e4e4;border-radius:12px;padding:8px 17px;margin:24px 0}
.benefits div{padding:13px 0;border-bottom:1px solid #e4e4e4;font-size:13px;font-weight:700}
.benefits div:last-child{border:0}
.checkout-button{margin-top:20px}
@media(max-width:460px){
  .deadline{font-size:11px;padding:11px 7px}
  .welcome-content{padding-top:14px}
  .logo{width:115px;height:115px;margin-bottom:9px}
  .product-card{min-height:110px}
  .product-emoji{font-size:48px}
  h1{font-size:27px}
  .options{gap:10px}
  .option{min-height:164px;padding:8px}
  .option-visual{height:108px;font-size:55px}
  .option strong{font-size:12px}
}

.sales-screen{background:#fff;color:#171717}
.sales-page{width:min(100% - 24px,610px);margin:0 auto;padding:22px 0 35px}
.sales-logo{width:112px;height:112px;object-fit:contain;display:block;margin:0 auto 8px}
.sales-hero{text-align:center;margin-bottom:20px}
.sales-hero .approved{width:58px;height:58px;font-size:30px}
.sales-kicker{color:#119f52;font-weight:900;font-size:11px;letter-spacing:.12em;margin-bottom:8px}
.sales-hero h2{font-size:28px;line-height:1.14;margin:0}
.sales-hero p{font-size:14px;color:#596273;line-height:1.6}
.sales-box{border:1px solid #dfe3e8;border-radius:10px;padding:18px;background:#fff;box-shadow:0 3px 8px rgba(0,0,0,.08);margin:15px 0}
.list-box h3{text-align:center;font-size:13px;margin:0 0 14px}
.list-box ul{list-style:none;padding:0;margin:0}
.list-box li{font-size:12px;margin:7px 0;color:#374151}
.list-box li:before{content:"✓";display:inline-grid;place-items:center;width:17px;height:17px;border-radius:50%;background:#e8fbf0;color:#11a357;font-weight:900;margin-right:8px}
.list-box>strong{display:block;text-align:center;color:#109f52;font-size:11px;margin-top:13px}
.section-title{text-align:left;font-size:14px;margin:24px 2px 13px}
.bonus-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.bonus-card{border:1px solid #dce2e6;border-radius:9px;padding:9px;background:#fff;box-shadow:0 2px 6px rgba(0,0,0,.06)}
.bonus-label{display:block;background:#0ca452;color:#fff;border-radius:4px;padding:4px;text-align:center;font-size:7px;font-weight:900}
.bonus-icon{height:75px;margin:8px 0;background:#eafbf2;border-radius:7px;display:grid;place-items:center;color:#0da653;font-size:34px}
.bonus-card h4{font-size:11px;line-height:1.3;margin:7px 0}
.bonus-card p{font-size:9px;color:#667085;line-height:1.45}
.price-box{text-align:center;border:2px solid #16a65a;border-radius:10px;padding:20px 14px;margin:18px 0}
.old-price{background:#ef3340;color:#fff;font-size:8px;font-weight:900;border-radius:20px;padding:4px 13px}
.price-box p{font-size:11px;margin:12px 0 5px}
.price-box small{display:block;font-size:9px;color:#667085;line-height:1.5}
.price{font-size:27px;color:#0ca653;font-weight:900;margin:5px 0 10px}
.green-button{display:block;background:#18bf60;color:#fff;text-decoration:none;font-size:11px;font-weight:900;padding:14px;border-radius:6px;margin:10px 0;box-shadow:0 3px 0 #0c8d43}
.guarantee{text-align:center;padding:25px 20px}
.guarantee-seal{width:100px;height:100px;margin:auto;border-radius:50%;display:grid;place-items:center;background:#171717;color:#f1b526;border:7px double #f1b526;font-size:35px;font-weight:900;line-height:.7;transform:rotate(-4deg)}
.guarantee-seal span{font-size:12px}
.guarantee h3{font-size:14px;margin:18px 0 8px}
.guarantee p{font-size:10px;color:#667085;line-height:1.6}
.faq-heading{text-align:center;font-size:14px;margin:25px 0 10px}
.faq details{border:1px solid #e0e4e8;border-radius:10px;padding:0 15px;background:#fff;margin:10px 0;box-shadow:0 3px 8px rgba(0,0,0,.08)}
.faq summary{font-weight:800;font-size:13px;padding:17px 22px 17px 0;cursor:pointer;list-style:none;position:relative}
.faq summary::-webkit-details-marker{display:none}
.faq summary:after{content:"+";position:absolute;right:0;color:#0ca653;font-size:18px;top:13px}
.faq details[open] summary:after{content:"−"}
.faq details p{font-size:12px;color:#596273;line-height:1.7;margin:0;padding:0 0 17px}
.final-cta{margin-top:20px}
.ps{text-align:center;font-size:9px;margin-bottom:8px}
@media(max-width:460px){
 .sales-hero h2{font-size:24px}
 .sales-page{width:min(100% - 16px,610px)}
 .bonus-grid{gap:8px}
}

/* Fotos reais da vitrine inicial */
.product-card{
  padding:0 !important;
  justify-content:flex-start !important;
  background:#fff !important;
}
.product-card:after{display:none !important}
.product-photo{
  display:block;
  width:100%;
  height:165px;
  object-fit:cover;
  object-position:center;
  border-radius:13px 13px 0 0;
}
.product-card span{
  width:100%;
  padding:12px 7px 13px;
  margin:0 !important;
  background:#fff;
  color:#a97918 !important;
  font-size:11px !important;
  letter-spacing:.02em;
}
@media(max-width:460px){
  .product-photo{height:128px}
  .product-card span{padding:10px 5px;font-size:9px !important}
}

/* Imagem principal da abertura */
.hero-image-wrap{
  width:100%;
  margin:0 auto 22px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.14);
  background:#000;
}
.hero-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
}

/* Fotos reais na pergunta 2 */
.option-photo-wrap{
  padding:0 !important;
  overflow:hidden;
  background:#f4f4f4 !important;
}
.option-photo{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
}

/* Mobile: mantém a arte inteira visível e reorganiza as opções */
@media(max-width:460px){
  .hero-image-wrap{
    border-radius:10px;
    margin-bottom:18px;
  }
  .hero-image{
    width:100%;
    height:auto;
    object-fit:contain;
  }
  .options{
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .option{
    min-height:160px;
  }
  .option-photo-wrap{
    height:110px !important;
  }
  .option-photo{
    height:110px;
    object-fit:cover;
  }
}

/* CORREÇÃO ETAPA 2: cards e imagens quadradas */
#quiz .options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

#quiz .option{
  min-height:0 !important;
  padding:12px !important;
  border-radius:14px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

#quiz .option-visual,
#quiz .option-photo-wrap{
  width:100% !important;
  height:auto !important;
  aspect-ratio:1 / 1 !important;
  border-radius:10px;
  overflow:hidden;
  margin:0 0 12px 0 !important;
  background:#f3f3f3 !important;
}

#quiz .option-photo{
  width:100% !important;
  height:100% !important;
  display:block;
  object-fit:cover !important;
  object-position:center !important;
}

#quiz .option strong{
  display:block;
  width:100%;
  text-align:center;
  font-size:13px;
  line-height:1.3;
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}

@media(max-width:460px){
  #quiz .options{
    gap:10px;
  }

  #quiz .option{
    padding:8px !important;
    border-radius:12px;
  }

  #quiz .option-visual,
  #quiz .option-photo-wrap{
    aspect-ratio:1 / 1 !important;
    height:auto !important;
    margin-bottom:8px !important;
  }

  #quiz .option strong{
    font-size:11px;
    min-height:30px;
  }
}

/* Imagem principal quadrada da página inicial */
.hero-image-wrap{
  width:min(100%, 620px);
  margin:0 auto 22px;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  box-shadow:0 8px 24px rgba(0,0,0,.14);
}
.hero-image{
  width:100%;
  height:auto;
  display:block;
  aspect-ratio:1 / 1;
  object-fit:cover;
  object-position:center;
}
@media(max-width:460px){
  .hero-image-wrap{
    width:100%;
    border-radius:10px;
    margin-bottom:18px;
  }
  .hero-image{
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
    object-fit:cover;
  }
}

/* Nova arte principal — responsiva, sem logo separado no início */
#welcome .hero-image-wrap{
  width:min(100%, 620px);
  margin:18px auto 22px;
  overflow:hidden;
  border-radius:14px;
  background:#000;
}
#welcome .hero-image{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:1 / 1;
  object-fit:cover;
  object-position:center;
}
@media(max-width:460px){
  #welcome .hero-image-wrap{
    width:100%;
    margin:12px auto 18px;
    border-radius:10px;
  }
  #welcome .hero-image{
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
  }
}

.mid-cta{
  text-align:center;
  margin:18px 0 22px;
}
.mid-cta p{
  margin:0 0 10px;
  font-size:12px;
  line-height:1.5;
  color:#4b5563;
  font-weight:600;
}
.mid-checkout-button,
.sales-page .green-button,
.final-cta .green-button,
.price-box .green-button{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  width:100%;
}

/* CTA intermediário mais alto, chamativo e pulsante */
.mid-cta{
  margin:22px 0 28px;
  text-align:center;
}
.mid-cta p{
  font-size:13px;
  font-weight:700;
  color:#374151;
  margin-bottom:12px;
}
.mid-checkout-button{
  min-height:66px !important;
  padding:20px 24px !important;
  border-radius:10px !important;
  font-size:14px !important;
  font-weight:900 !important;
  letter-spacing:.02em;
  background:linear-gradient(180deg,#1ed56f,#0eaf55) !important;
  box-shadow:
    0 6px 0 #08783a,
    0 12px 24px rgba(17,185,90,.28),
    0 0 0 0 rgba(30,213,111,.45) !important;
  animation:ctaPulse 1.6s infinite;
  transform-origin:center;
}
.mid-checkout-button:hover{
  animation-play-state:paused;
  transform:scale(1.025);
  filter:brightness(1.05);
}
@keyframes ctaPulse{
  0%{
    transform:scale(1);
    box-shadow:
      0 6px 0 #08783a,
      0 12px 24px rgba(17,185,90,.28),
      0 0 0 0 rgba(30,213,111,.42);
  }
  50%{
    transform:scale(1.035);
    box-shadow:
      0 6px 0 #08783a,
      0 16px 30px rgba(17,185,90,.34),
      0 0 0 12px rgba(30,213,111,0);
  }
  100%{
    transform:scale(1);
    box-shadow:
      0 6px 0 #08783a,
      0 12px 24px rgba(17,185,90,.28),
      0 0 0 0 rgba(30,213,111,0);
  }
}
@media(max-width:460px){
  .mid-checkout-button{
    min-height:62px !important;
    padding:18px 16px !important;
    font-size:13px !important;
  }
}

/* Selo 3D moderno de 7 dias de garantia */
.guarantee-seal-3d{
  width:150px !important;
  height:150px !important;
  margin:4px auto 22px !important;
  border:0 !important;
  background:transparent !important;
  transform:none !important;
  display:block !important;
  position:relative;
  filter:drop-shadow(0 12px 14px rgba(0,0,0,.28));
}

.guarantee-seal-3d::before,
.guarantee-seal-3d::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  z-index:0;
}

.guarantee-seal-3d::before{
  bottom:5px;
  width:118px;
  height:24px;
  border-radius:50%;
  background:rgba(0,0,0,.28);
  filter:blur(8px);
}

.seal-ring{
  position:relative;
  z-index:1;
  width:150px;
  height:150px;
  border-radius:50%;
  padding:8px;
  background:
    linear-gradient(145deg,#fff1a8 0%,#f6c844 18%,#a86f08 43%,#ffd968 67%,#8f5c05 100%);
  box-shadow:
    inset 0 3px 4px rgba(255,255,255,.72),
    inset 0 -7px 10px rgba(94,53,0,.48),
    0 8px 0 #7d5005,
    0 14px 22px rgba(0,0,0,.24);
}

.seal-ring::before{
  content:"";
  position:absolute;
  inset:7px;
  border-radius:50%;
  border:2px solid rgba(255,244,188,.75);
  box-shadow:
    inset 0 0 0 2px rgba(98,57,2,.22),
    0 0 12px rgba(255,205,66,.22);
}

.seal-core{
  position:relative;
  width:100%;
  height:100%;
  border-radius:50%;
  background:
    radial-gradient(circle at 36% 28%,#343434 0%,#171717 34%,#060606 72%,#000 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#f5ca4d;
  text-align:center;
  border:2px solid #171717;
  box-shadow:
    inset 0 5px 10px rgba(255,255,255,.09),
    inset 0 -10px 16px rgba(0,0,0,.7);
  overflow:hidden;
}

.seal-core::before{
  content:"";
  position:absolute;
  top:12px;
  left:21px;
  width:70px;
  height:28px;
  border-radius:50%;
  background:linear-gradient(180deg,rgba(255,255,255,.25),rgba(255,255,255,0));
  transform:rotate(-18deg);
  opacity:.55;
}

.seal-number{
  font-size:52px;
  line-height:.82;
  font-weight:900;
  font-family:Georgia,serif;
  background:linear-gradient(180deg,#fff3ad 0%,#efbe37 46%,#a96907 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 3px 0 rgba(74,43,0,.28);
}

.seal-days{
  margin-top:5px;
  font-size:17px;
  line-height:1;
  font-weight:900;
  letter-spacing:.16em;
  color:#fff0ae;
}

.seal-word{
  margin-top:7px;
  padding:4px 10px;
  border-radius:999px;
  background:linear-gradient(180deg,#eab72e,#a86a05);
  color:#111;
  font-size:9px;
  font-weight:900;
  letter-spacing:.1em;
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.7),
    0 3px 5px rgba(0,0,0,.32);
}

@media(max-width:460px){
  .guarantee-seal-3d{
    width:132px !important;
    height:132px !important;
  }
  .seal-ring{
    width:132px;
    height:132px;
  }
  .seal-number{font-size:45px}
  .seal-days{font-size:15px}
  .seal-word{font-size:8px}
}

/* PNG oficial do selo de garantia */
.guarantee-image-wrap{
  width:190px;
  max-width:60%;
  margin:4px auto 20px;
}
.guarantee-image{
  display:block;
  width:100%;
  height:auto;
  object-fit:contain;
  filter:drop-shadow(0 8px 10px rgba(0,0,0,.18));
}

/* Bônus: cards e áreas de ícone realmente quadrados */
.bonus-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:12px !important;
  align-items:stretch;
}

.bonus-card{
  padding:10px !important;
  border-radius:10px !important;
  display:flex !important;
  flex-direction:column !important;
  min-width:0;
}

.bonus-card .bonus-icon{
  width:100% !important;
  height:auto !important;
  aspect-ratio:1 / 1 !important;
  min-height:0 !important;
  margin:9px 0 10px !important;
  border-radius:9px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#eafbf2 !important;
  color:#08a954 !important;
  overflow:hidden;
}

.bonus-symbol{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  font-size:38px;
  line-height:1;
  font-family:Arial,"Segoe UI Symbol","Noto Sans Symbols 2",sans-serif;
  color:#08a954;
  font-weight:500;
}

.bonus-card h4{
  min-height:36px;
  margin:0 0 7px !important;
}

.bonus-card p{
  margin:0 !important;
}

/* No celular continuam em 2 colunas, mas proporcionais */
@media(max-width:460px){
  .bonus-grid{
    gap:8px !important;
  }
  .bonus-card{
    padding:8px !important;
  }
  .bonus-card .bonus-icon{
    aspect-ratio:1 / 1 !important;
    height:auto !important;
  }
  .bonus-symbol{
    width:46px;
    height:46px;
    font-size:31px;
  }
  .guarantee-image-wrap{
    width:165px;
    max-width:68%;
  }
}

/* Refinamento dos 4 bônus: quadrados menores e ícones harmonizados */
.bonus-card .bonus-icon{
  width:82px !important;
  height:82px !important;
  aspect-ratio:1 / 1 !important;
  margin:12px auto 13px !important;
  flex:0 0 82px !important;
  border-radius:16px !important;
  background:linear-gradient(145deg,#effcf5,#dff7ea) !important;
  border:1px solid rgba(8,169,84,.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.8),
    0 5px 14px rgba(8,169,84,.08);
}

.bonus-symbol{
  width:38px !important;
  height:38px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#08a954 !important;
}

.bonus-symbol svg{
  width:38px;
  height:38px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.bonus-card{
  justify-content:flex-start !important;
}

.bonus-card h4{
  min-height:auto !important;
  text-align:left;
}

@media(max-width:460px){
  .bonus-card .bonus-icon{
    width:68px !important;
    height:68px !important;
    flex-basis:68px !important;
    border-radius:14px !important;
    margin:10px auto 11px !important;
  }

  .bonus-symbol,
  .bonus-symbol svg{
    width:31px !important;
    height:31px !important;
  }
}
