/* ===================================================
   PILOTO - COBRANÇA RECORRENTE
   Página: cobranca_recorrente_automatica.html
=================================================== */

/* =========================
   UTILIDADES LOCAIS
========================= */

.lead{
  font-size:1.05rem;
  color:var(--muted);
  max-width:60ch;
}

.small{
  font-size:.85rem;
}

.muted{
  color:var(--muted);
}

/* =========================
   BOTÕES (GARANTE ESTILO AQUI)
========================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  border:1px solid var(--line);
  cursor:pointer;
  transition:.18s ease;
  text-align:center;
}

.btn:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.22);
}

.btn--primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  border-color:rgba(255,255,255,.2);
  color:#fff;
  box-shadow:0 10px 30px rgba(74,163,255,.25);
}

.btn--soft{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.btn--block{
  width:100%;
  margin-top:18px;
}

/* ===================================================
   HERO
=================================================== */

.pilot-hero{
  padding:clamp(40px,6vw,64px) 0;
}

.pilot-hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:clamp(24px,4vw,40px);
  align-items:start;
}

.pilot-hero h1{
  font-size:clamp(1.8rem,3.2vw,2.6rem);
  line-height:1.15;
  margin:0 0 16px;
}

/* =========================
   BADGES
========================= */

.pilot-badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:20px 0;
}

.badge{
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  font-weight:700;
  font-size:.8rem;
  color:var(--muted);
}

.badge--soft{
  opacity:.85;
}

/* ===================================================
   BOXES E LISTAS
=================================================== */

.pilot-box,
.pilot-steps,
.pilot-includes,
.pilot-not{
  margin-top:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:20px;
}

.pilot-steps h2,
.pilot-includes h2,
.pilot-not h2{
  margin:0 0 12px;
  font-size:1.15rem;
}

.pilot-steps ol,
.pilot-includes ul,
.pilot-not ul{
  margin:0;
  padding-left:20px;
}

.pilot-steps li,
.pilot-includes li{
  margin:10px 0;
  color:var(--muted);
}

.pilot-not li{
  margin:10px 0;
  color:rgba(255,255,255,.75);
}

/* ===================================================
   FORMULÁRIO
=================================================== */

.pilot-form{
  position:sticky;
  top:110px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(7,11,20,.85);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
  backdrop-filter:blur(12px);
}

.pilot-form h2{
  margin:0 0 6px;
}

.pilot-form form{
  margin-top:16px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.full{
  grid-column:1 / -1;
}

label span{
  display:block;
  font-weight:600;
  margin-bottom:6px;
  font-size:.9rem;
  color:rgba(255,255,255,.9);
}

input,
textarea{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-size:.95rem;
  transition:.18s ease;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input:focus,
textarea:focus{
  outline:none;
  border-color:var(--brand);
  box-shadow:0 0 0 4px rgba(74,163,255,.12);
}

/* =========================
   CONSENT
========================= */

.consent{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:16px;
  font-size:.85rem;
  color:var(--muted);
}

.consent input{
  width:18px;
  height:18px;
  margin-top:3px;
  accent-color:var(--brand);
}

/* =========================
   MENSAGEM FORM
========================= */

.form-msg{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  min-height:46px;
  display:flex;
  align-items:center;
}

.form-msg--ok{
  border-color:rgba(56,211,159,.4);
  background:rgba(56,211,159,.12);
  color:#e6fff7;
}

.form-msg--err{
  border-color:rgba(255,120,120,.4);
  background:rgba(255,120,120,.12);
  color:#ffeaea;
}

/* =========================
   HONEYPOT
========================= */

.hp{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

/* ===================================================
   SECTION ALT + CTA
=================================================== */

.section{
  padding:60px 0;
}

.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:24px;
  border-radius:var(--radius-lg);
  border:1px solid rgba(255,255,255,.15);
  background:linear-gradient(135deg,rgba(74,163,255,.15),rgba(155,123,255,.12));
}

.cta-band h3{
  margin:0 0 8px;
}

/* ===================================================
   RESPONSIVO
=================================================== */

@media (max-width:1024px){

  .pilot-hero__grid{
    grid-template-columns:1fr;
  }

  .pilot-form{
    position:relative;
    top:auto;
    margin-top:40px;
  }

}

@media (max-width:720px){

  .grid{
    grid-template-columns:1fr;
  }

  .cta-band{
    flex-direction:column;
    align-items:flex-start;
  }

  .pilot-hero{
    padding:40px 0;
  }

}