/* Landing Page: eBook Oportunidades na Área de Tecnologia
   Assets próprios em /lp/assets
*/
:root{
  --bg: #0b1220;
  --bg2: #0f1a2f;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: #eaf0ff;
  --muted: rgba(234,240,255,.78);
  --brand: #6AA84F;
  --brand2:#22304a;
  --ok:#28a745;
  --warn:#ffb020;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{height:100%; min-height:100vh}
body{
  margin:0;
  font-family: system-ui,-apple-system,"Segoe UI",Roboto,Arial,Helvetica,sans-serif;
  background: radial-gradient(100vw 80vh at 20% 10%, rgba(106,168,79,.22), transparent 60%),
              radial-gradient(90vw 70vh at 80% 0%, rgba(34,48,74,.35), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  color:var(--text);
}

a{color:inherit}
.wrap{max-width:1120px; margin:0 auto; padding:24px}

.hero{
  padding:42px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:start;
}
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; gap:18px}
}

.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}
.badge b{color:var(--text)}

h1{
  font-size: clamp(30px, 3.3vw, 44px);
  line-height:1.08;
  margin:14px 0 12px;
  letter-spacing:-.02em;
}
.sub{
  color:var(--muted);
  font-size: 16px;
  line-height:1.6;
  margin:0 0 18px;
}

.bullets{
  display:grid;
  gap:10px;
  margin:18px 0 0;
  padding:0;
  list-style:none;
}
.bullets li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:12px 12px;
  border:1px solid var(--stroke);
  border-radius:12px;
  background:rgba(255,255,255,.03);
}
.dot{
  width:10px;height:10px;border-radius:999px;background:var(--brand);
  box-shadow:0 0 0 4px rgba(106,168,79,.18);
  margin-top:5px; flex:0 0 auto;
}
.bullets span{color:var(--muted)}

.card{
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border-radius:18px;
  box-shadow: var(--shadow);
  overflow:hidden;
}
.card-head{
  padding:18px 18px 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.card-head h2{
  margin:0;
  font-size:18px;
}
.lp-form-title{
  text-align:center;
}
.card-head p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}
.card-body{padding:16px 18px 18px}

.field{margin:0 0 12px}
.label{display:block; font-size:12px; color:var(--muted); margin:0 0 6px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(10,16,30,.35);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(234,240,255,.55)}
input:focus, textarea:focus{border-color: rgba(106,168,79,.6); box-shadow:0 0 0 4px rgba(106,168,79,.15)}

.row2{display:grid; grid-template-columns:1fr 1fr; gap:10px}
@media (max-width:520px){.row2{grid-template-columns:1fr}}

.captcha{
  display:flex; gap:12px; align-items:center;
}
.captcha img{
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background:#fff;
}

.btn{
  width:100%;
  border:0;
  padding:12px 14px;
  border-radius:12px;
  background: linear-gradient(180deg, rgba(106,168,79,1), rgba(85,135,63,1));
  color:#fff;
  font-weight:700;
  cursor:pointer;
  transition: transform .08s ease, filter .15s ease;
}
.btn:hover{filter:brightness(1.04)}
.btn:active{transform: translateY(1px)}
.btn[disabled]{opacity:.7; cursor:not-allowed}

.fineprint{
  margin:10px 0 0;
  color:rgba(234,240,255,.68);
  font-size:12px;
  line-height:1.5;
}

.footer{
  margin:34px 0 12px;
  padding:18px 0 0;
  border-top: 1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.6);
  font-size:12px;
}
.footer a{color:rgba(234,240,255,.82)}

.notice{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  padding:14px 16px;
  border-radius:14px;
  color:var(--muted);
  line-height:1.55;
}
.notice b{color:var(--text)}
.notice-mt{margin-top:18px}

.ebook-capa-wrapper{
  margin:18px 0;
  text-align:center;
}
.ebook-capa-img{
  max-width:100%;
  height:auto;
  border-radius:12px;
  box-shadow:0 8px 24px rgba(0,0,0,.3);
}

.badge-center-wrapper{
  text-align:center;
  margin-top:10px;
}

.logos-section{
  margin:22px 0 0;
  padding:18px 14px;
  background:#ffffff;
  border-radius:14px;
}
.logos-container{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  align-items:center;
  justify-content:center;
}
.logo-img{
  height:34px;
  width:auto;
  display:block;
}

.footer-container{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px;
  justify-content:space-between;
}
.footer-left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-right{
  display:flex;
  gap:12px;
  font-size:12px;
}
.logo-footer{
  height:20px;
  width:auto;
  display:block;
}

/* Utilitários (evitar style inline nas páginas auxiliares) */
.mt-18{margin-top:18px}
.mt-12{margin-top:12px}
.mt-8{margin-top:8px}
.bullets-reset{margin:0}
.btn-link{
  display:inline-block;
  text-align:center;
  text-decoration:none;
}

