:root{
  --forest:#1B3022;
  --earth:#6A4A3A;
  --khaki:#C4B594;
  --navy:#0B1F3B;
  --ember:#D97706;
  --gold:#F59E0B;

  --bg:#ffffff;
  --border: rgba(0,0,0,0.08);
  --soft: rgba(0,0,0,0.06);
}

html{ scroll-behavior:smooth; }

body{
  background: var(--bg);
  color: var(--navy);
  font-size: 18px;        /* requisito */
  line-height: 1.6;       /* requisito */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.section{
  padding: 28px 0;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--soft);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.logo{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--forest);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

.brand-text{ min-width: 0; }
.brand-title{
  font-weight: 800;
  color: var(--forest);
  margin: 0;
}
.brand-sub{
  font-size: 13px;
  color: rgba(11,31,59,0.68);
  margin: 0;
}

/* Buttons (48px+) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 56px;             /* acima do mínimo */
  padding: 0 18px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  user-select: none;
  transition: transform .08s ease, filter .08s ease;
  text-align: center;
}

.btn:active{ transform: scale(0.99); }

.btn-ember{
  background: var(--ember);
  color: white;
  box-shadow: 0 14px 28px rgba(217,119,6,0.22);
}

.btn-gold{
  background: var(--gold);
  color: var(--forest);
  box-shadow: 0 14px 28px rgba(245,158,11,0.22);
}

.btn-big{
  height: 60px;
  font-size: 17px;
  padding: 0 16px;
}

@media (min-width: 768px){
  .btn{ font-size: 17px; }
  .btn-big{ font-size: 18px; }
}

.wfull{ width: 100%; }

/* HERO */
.hero-card{
  background: rgba(196,181,148,0.35);
  border: 1px solid var(--soft);
  border-radius: 22px;
  padding: 18px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  font-size: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid var(--soft);
}

.h1{
  font-size: 34px;
  line-height: 1.12;
  margin: 12px 0 0;
  font-weight: 900;
  color: var(--forest);
}

.lead{
  margin: 12px 0 0;
  color: rgba(11,31,59,0.92);
}

.hero-grid{
  display:grid;
  gap: 18px;
  margin-top: 16px;
}

@media (min-width: 1024px){
  .h1{ font-size: 44px; }
  .hero-grid{
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

.urgency{
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--soft);
  padding: 14px;
}

.urgency-badge{
  display:inline-flex;
  font-size: 14px;
  font-weight: 800;
  color: var(--ember);
}

.timer{
  display:flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.tbox{
  min-width: 84px;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--soft);
  padding: 10px 12px;
  text-align:center;
}

.tbox span{
  display:block;
  font-size: 26px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.tbox small{
  display:block;
  font-size: 12px;
  color: rgba(11,31,59,0.70);
  margin-top: 6px;
}

.tsep{
  font-weight: 900;
  color: rgba(11,31,59,0.65);
}

.micro{
  font-size: 14px;
  color: rgba(11,31,59,0.70);
}

.mt10{ margin-top: 10px; }
.mt8{ margin-top: 8px; }

.mockup{
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  border: 1px solid var(--soft);
  box-shadow: 0 18px 30px rgba(0,0,0,0.12);
  background: white;
}

.mockup-note{
  font-size: 14px;
  color: rgba(11,31,59,0.70);
  margin: 10px 0 0;
  text-align: center;
}

/* Cards */
.card{
  border-radius: 22px;
  border: 1px solid var(--soft);
  padding: 18px;
}

.khaki{
  background: rgba(196,181,148,1);
}

.soft{
  background: rgba(196,181,148,0.55);
}

/* Titles */
.h2{
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
  font-weight: 900;
  color: var(--forest);
}

.forest{ color: var(--forest); }

.h3{
  font-size: 20px;
  margin: 0;
  font-weight: 900;
  color: var(--navy);
}

.lead2{
  margin: 10px 0 0;
  color: rgba(11,31,59,0.90);
}

/* Receive */
.receive-grid{
  display:grid;
  gap: 14px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .receive-grid{ grid-template-columns: 1.1fr 0.9fr; }
}

.receive-list{
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 14px;
}

.line{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 8px;
  border-bottom: 1px dashed rgba(0,0,0,0.10);
}

.line:last-child{ border-bottom: none; }

.strike{
  text-decoration: line-through;
  color: rgba(11,31,59,0.55);
  font-weight: 800;
  white-space: nowrap;
}

.highlight{
  background: rgba(245,158,11,0.14);
  border-radius: 14px;
  margin-top: 8px;
}

.no-value{
  color: rgba(27,48,34,0.9);
  font-weight: 900;
  white-space: nowrap;
}

.price-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
}

.muted{
  font-size: 14px;
  color: rgba(11,31,59,0.70);
  margin: 0;
}

.big-strike{
  font-size: 28px;
  margin: 6px 0 0;
  font-weight: 900;
  color: rgba(11,31,59,0.68);
  text-decoration: line-through;
}

.big-price{
  font-size: 34px;
  margin: 6px 0 0;
  font-weight: 950;
  color: var(--forest);
}

.save{
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(11,31,59,0.78);
}

/* Docs */
.docs{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .docs{ grid-template-columns: repeat(2, 1fr); }
}

.doc{
  background: white;
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
}

.doc p{ margin: 10px 0 0; color: rgba(11,31,59,0.88); }

.bonus{
  background: rgba(196,181,148,0.35);
}

.center-cta{
  margin-top: 16px;
  text-align:center;
}

/* Testimonials */
.testimonials{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .testimonials{ grid-template-columns: repeat(3, 1fr); }
}


.test{
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 22px rgba(0,0,0,0.06);
}

.test-head{
  display:flex;
  align-items:center;
  gap: 6px;
}

.avatar{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--soft);
}

.name{
  font-weight: 900;
  margin: 0;
}

.meta{
  font-size: 14px;
  color: rgba(11,31,59,0.70);
  margin: 2px 0 0;
}

.quote{
  margin: 12px 0 0;
  color: rgba(11,31,59,0.90);
}

/* Sobre / Porque */
.two{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .two{ grid-template-columns: 1fr 1fr; }
}

.box{
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
}

.bullets li{
  margin: 8px 0;
  color: rgba(11,31,59,0.90);
}

.quote-mini{
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(245,158,11,0.14);
  border: 1px solid rgba(245,158,11,0.25);
  font-weight: 800;
  color: rgba(27,48,34,0.95);
}

.reasons{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

@media (min-width: 900px){
  .reasons{ grid-template-columns: 1fr 1fr; }
}

.reason{
  background: white;
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
}

.quote-bar{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(196,181,148,0.35);
  border: 1px solid var(--soft);
}

/* Garantia */
.guarantee{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  background: rgba(196,181,148,0.55);
}

.seal{
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--forest);
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}

/* Checkout final */
.checkout-card{
  border: 1px solid var(--soft);
  border-radius: 22px;
  background: white;
  overflow: hidden;
  display:grid;
}

@media (min-width: 900px){
  .checkout-card{ grid-template-columns: 1.1fr 0.9fr; }
}

.checkout-left{
  padding: 18px;
  background: rgba(196,181,148,0.25);
}

.closing{
  margin: 0;
  font-size: 14px;
  font-weight: 900;
  color: rgba(11,31,59,0.70);
}

.price{
  margin: 4px 0 0;
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
  color: var(--forest);
}

.secure{
  margin-top: 12px;
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: rgba(11,31,59,0.72);
}

.checkout-right{
  padding: 18px;
  background: rgba(255,255,255,1);
}

.checkout-box{
  border: 1px solid var(--soft);
  border-radius: 18px;
  padding: 16px;
  background: rgba(196,181,148,0.14);
}

.anchored{
  margin: 4px 0 0;
  font-size: 28px;
  font-weight: 900;
  color: rgba(11,31,59,0.70);
  text-decoration: line-through;
}

.today{
  margin: 4px 0 0;
  font-size: 34px;
  font-weight: 950;
  color: var(--forest);
}

/* WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 18px 30px rgba(0,0,0,0.18);
  z-index: 80;
  text-decoration: none;
}

.whatsapp-float:active{ transform: scale(0.98); }

/* Footer */
.footer{
  border-top: 1px solid var(--soft);
  padding: 22px 0;
  background: white;
}

.footer-inner{
  text-align:center;
  font-size: 14px;
  color: rgba(11,31,59,0.70);
}

/* Acessibilidade */
a:focus{
  outline: 3px solid rgba(245,158,11,0.45);
  outline-offset: 3px;
  border-radius: 12px;
}
