:root{
  --red:#e30613;
  --redDark:#b1040f;
  --white:#ffffff;
  --text:#111827;
  --muted:#6b7280;

  --border:rgba(227,6,19,.18);
  --soft:rgba(227,6,19,.06);
  --soft2:rgba(227,6,19,.04);
  --shadow: 0 18px 50px rgba(0,0,0,.10);

  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden;
}

.container{
  width:min(1040px, calc(100% - 48px));
  margin:0 auto;
}

.bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(227,6,19,.08), transparent 55%),
    radial-gradient(900px 600px at 80% 15%, rgba(227,6,19,.06), transparent 60%),
    linear-gradient(180deg, rgba(227,6,19,.02), transparent 45%);
}

.grid{
  position:absolute;
  inset:-2px;
  opacity:.55;
  background-image:
    linear-gradient(to right, rgba(227,6,19,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(227,6,19,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 25%, rgba(0,0,0,.9), rgba(0,0,0,.1) 55%, transparent 70%);
}

.blob{
  position:absolute;
  border-radius:999px;
  filter: blur(18px);
  opacity:.35;
}
.blob-1{
  width:460px; height:460px;
  left:-120px; top:120px;
  background: radial-gradient(circle at 30% 30%, rgba(227,6,19,.35), rgba(227,6,19,.05));
}
.blob-2{
  width:520px; height:520px;
  right:-180px; top:-120px;
  background: radial-gradient(circle at 30% 30%, rgba(227,6,19,.26), rgba(227,6,19,.04));
}
.blob-3{
  width:420px; height:420px;
  right:6%; bottom:-180px;
  background: radial-gradient(circle at 30% 30%, rgba(227,6,19,.18), rgba(227,6,19,.03));
}

.top{
  padding:22px 0 8px;
}
.top-inner{
  display:flex;
  justify-content:center;
}
.logo{
  width:520px;
  height:auto;
  display:block;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.12));
}

.hero{
  padding: 12px 0 56px;
}
.hero-inner{
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--soft);
  border:1px solid var(--border);
  color:var(--redDark);
  padding:10px 14px;
  border-radius:999px;
  font-size:14px;
  box-shadow: 0 10px 25px rgba(227,6,19,.06);
}
.pill strong{
  font-weight:800;
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--red), rgba(227,6,19,.25));
  box-shadow:0 0 0 6px rgba(227,6,19,.10);
}

.title{
  margin:0;
  font-weight:900;
  letter-spacing:-0.03em;
  line-height:1.02;
  font-size: clamp(34px, 6vw, 42px);
}
.highlight{
  color:var(--red);
}
.break{ display:none; }

.subtitle{
  margin:0;
  max-width: 760px;
  font-size: clamp(15px, 2.2vw, 18px);
  line-height:1.6;
  color: var(--muted);
}
.free{
  color:var(--text);
  font-weight:800;
}

.cta-area{
  margin-top: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 22px;
  border-radius:999px;
  color:var(--white);
  text-decoration:none;
  font-weight:800;
  background: linear-gradient(180deg, var(--red), var(--redDark));
  box-shadow: 0 18px 42px rgba(227,6,19,.28);
  transform: translateY(0);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  min-width: 260px;
}
.cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(227,6,19,.30);
  filter:saturate(1.05);
}
.cta:active{
  transform: translateY(0);
}
.cta-secondary{
  min-width: 260px;
}
.wa{
  font-size:18px;
}

.online{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius:999px;
  background: var(--soft2);
  border: 1px dashed rgba(227,6,19,.34);
  color: var(--redDark);
  font-size:14px;
}
.online strong{
  font-size:15px;
}
.bolt{ filter:saturate(1.1); }

.trust{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color: rgba(17,24,39,.82);
  font-size: 13px;
}
.trust-tight{
  margin-top: 10px;
}
.sep{
  opacity:.5;
}

.stats{
  margin-top: 12px;
  width: min(860px, 100%);
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(227,6,19,.14);
  border-radius: 16px;
  padding: 14px 14px 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  backdrop-filter: blur(8px);
}
.stat-top{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color: var(--muted);
  font-size: 13px;
}
.stat-value{
  margin-top: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
  color: var(--text);
}
.stat-ico{
  width:28px;
  height:28px;
  border-radius:10px;
  display:grid;
  place-items:center;
  background: var(--soft);
  border: 1px solid rgba(227,6,19,.14);
}

/* Seções novas */
.section-title-lg{
  margin: 0;
  text-align:center;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(26px, 3.6vw, 40px);
}
.section-subtitle{
  margin: 10px auto 0;
  text-align:center;
  color: var(--muted);
  max-width: 820px;
  line-height: 1.6;
  font-size: 15px;
}

/* Reasons */
.reasons{
  padding: 52px 0 62px;
  border-top: none;
}
.reason-grid{
  width:min(980px, 100%);
  margin: 28px auto 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reason-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(227,6,19,.12);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.05);
  padding: 22px 20px;
  text-align:left;
  min-height: 160px;
}
.reason-ico{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: var(--soft);
  border: 1px solid rgba(227,6,19,.14);
  margin-bottom: 14px;
  font-size: 18px;
}
.reason-card h3{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.reason-card p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* Steps */
.steps{
  padding: 56px 0 54px;
}
.steps-wrap{
  width:min(980px, 100%);
  margin: 34px auto 0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position:relative;
  align-items:start;
}

/* Linha antiga removida */
.steps-line{
  display:none;
}

/* Setinha entre os steps */
.step{
  text-align:center;
  padding: 8px 8px 0;
  position: relative;
}
.step:not(:last-child)::after{
  content: ">";
  position: absolute;
  top: 56px;
  right: -18px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(227,6,19,.35);
}

.step-bubble{
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(227,6,19,.07);
  border: 1px solid rgba(227,6,19,.14);
  display:grid;
  place-items:center;
  position:relative;
  box-shadow: 0 18px 45px rgba(227,6,19,.08);
}
.step-emoji{
  font-size: 34px;
}
.step-badge{
  position:absolute;
  top: -8px;
  right: -6px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, var(--red), var(--redDark));
  color: var(--white);
  font-weight: 900;
  font-size: 12px;
  box-shadow: 0 14px 34px rgba(227,6,19,.22);
}
.step h3{
  margin: 0 0 8px;
  font-weight: 900;
  letter-spacing: -0.01em;
  font-size: 18px;
}
.step p{
  margin: 0 auto;
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.steps-cta{
  margin-top: 34px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 10px;
}

.footer-actions{
  margin-top: 26px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.link-btn{
  background: transparent;
  border: none;
  color: rgba(17,24,39,.86);
  font-weight: 700;
  cursor:pointer;
  padding: 10px 10px;
  border-radius: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.link-btn:hover{
  color: var(--redDark);
}
.mini-sep{
  opacity:.5;
}

.copyright{
  text-align:center;
  color: rgba(17,24,39,.60);
  margin: 14px 0 0;
  font-size: 13px;
}

/* Modal */
.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:50;
}
.modal[aria-hidden="false"]{
  display:block;
}
.modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.50);
}
.modal-panel{
  position:relative;
  width:min(900px, calc(100% - 28px));
  max-height: calc(100vh - 44px);
  margin: 22px auto;
  background: var(--white);
  border-radius: 16px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(227,6,19,.22);
}
.modal-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 14px;
  background: rgba(227,6,19,.06);
  border-bottom: 1px solid rgba(227,6,19,.16);
}
.modal-head h3{
  margin:0;
  font-size: 16px;
  font-weight: 900;
  color: var(--redDark);
}
.modal-close{
  border: 1px solid rgba(227,6,19,.25);
  background: rgba(255,255,255,.9);
  color: var(--redDark);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  cursor:pointer;
  font-size: 16px;
}
.modal-body{
  padding: 14px 16px;
  overflow:auto;
  max-height: calc(100vh - 160px);
  color: rgba(17,24,39,.88);
  line-height: 1.6;
  font-size: 14px;
}
.modal-body h4{
  margin: 14px 0 6px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.modal-body ul{
  margin: 8px 0 0 18px;
  padding:0;
}
.modal-foot{
  padding: 12px 16px;
  border-top: 1px solid rgba(227,6,19,.14);
  display:flex;
  justify-content:flex-end;
  background: rgba(227,6,19,.03);
}
.modal-btn{
  background: linear-gradient(180deg, var(--red), var(--redDark));
  color: var(--white);
  border:none;
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 800;
  cursor:pointer;
}

/* Responsivo */
@media (max-width: 980px){
  .reason-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px){
  .stats{ grid-template-columns: 1fr; }
  .logo{ width:150px; }
  .break{ display:inline; }

  .steps-wrap{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .step::after{
    display:none;
  }

  .step p{
    max-width: 420px;
  }
}

@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }

  .cta{ width: 100%; min-width: 0; }
  .online{ width: 100%; justify-content:center; }

  .pill{ font-size: 13px; }
  .title{ font-size: 40px; }
  .subtitle{ font-size: 15px; }

  .reason-grid{ grid-template-columns: 1fr; }
  .reason-card{ padding: 18px 16px; }

  .step-bubble{ width: 104px; height: 104px; }
}

.final-image{
  padding: 56px 0 72px;
  text-align: center;
}

.final-image img{
  width: 100%;
  max-width: 420px; /* diminui no desktop */
  height: auto;
  display: block;
  margin: 0 auto;
}
