:root{
  --bg:#050607;
  --panel: rgba(18,18,18,.72);
  --panel2: rgba(0,0,0,.35);
  --text:#f4f4f4;
  --muted:#b6bcc6;
  --gold:#d5b63d;
  --border: rgba(213,182,61,.20);
  --shadow: 0 14px 40px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(800px 500px at 18% 12%, rgba(213,182,61,.13), transparent 60%),
    radial-gradient(900px 650px at 70% 35%, rgba(213,182,61,.08), transparent 65%),
    linear-gradient(180deg, #030405, #060709 55%, #030405);
}

a{ color:inherit; text-decoration:none; }
strong{ font-weight: 800; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.rl-watermark{
  position: fixed;
  right: 18px;
  bottom: 14px;
  width: 64px;
  height: 64px;
  background: url("rl.png") center/contain no-repeat;
  opacity: .18;
  pointer-events: none;
  z-index: 1;
}

/* ===== TOPBAR ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 320px;
}

/* Badge maior e “presença” */
.brand-badge{
  width: 86px;
  height: 86px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.28);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

/* Faz QUALQUER logo preencher bem sem ficar minúscula */
.brand-badge img{
  width: 90%;
  height: 90%;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.brand-title{
  font-weight: 900;
  font-size: 18px;
  line-height: 1.1;
}
.brand-subtitle{
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* ===== BOTÕES ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  box-shadow: 0 10px 26px rgba(0,0,0,.25);
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-1px); }

.btn-gold{
  background: rgba(213,182,61,.95);
  color: #111;
  border-color: rgba(213,182,61,.65);
}

.btn-outline{
  background: rgba(0,0,0,.20);
}

/* ===== HERO ===== */
.hero{
  padding: 56px 0 26px;
  border-bottom: 1px solid var(--border);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  align-items: start;
}

.hero-left h1{
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: -.5px;
}
.hero-icon{
  display:inline-flex;
  width: 42px;
  height: 42px;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(213,182,61,.10);
  margin-right: 10px;
}

.hero-left p{
  margin: 0 0 12px;
  color: #d9dde3;
  line-height: 1.65;
  font-size: 16px;
  max-width: 720px;
}
.hero-cta{
  display:flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

/* ===== PAINEL DA DIREITA ===== */
.panel{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(213,182,61,.10), rgba(0,0,0,.35));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.panel-head{
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.panel-title{
  font-size: 18px;
  font-weight: 900;
}
.panel-subtitle{
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
}
.panel-body{
  padding: 16px 18px 18px;
}
.panel-cta{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ===== SEÇÕES ===== */
.section{
  padding: 34px 0;
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.2px;
}
.muted{ color: var(--muted); }
.small{ font-size: 12.5px; margin-top: 10px; }

/* ===== CARDS ===== */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.cards.two{
  grid-template-columns: repeat(2, 1fr);
}

.card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,.30);
  box-shadow: 0 10px 26px rgba(0,0,0,.35);
  padding: 16px;
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: #d6dae1;
  line-height: 1.55;
  font-size: 14px;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: #d6dae1;
}
.bullets li{ margin: 7px 0; }

/* ===== STEPS ===== */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(0,0,0,.28);
  padding: 14px;
  display:flex;
  gap: 12px;
}
.step-n{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(213,182,61,.95);
  color:#111;
  font-weight: 900;
  display:flex;
  align-items:center;
  justify-content:center;
}
.step h3{ margin: 0 0 6px; font-size: 15px; }
.step p{ margin: 0; color:#d6dae1; font-size: 13.5px; line-height: 1.5; }

/* ===== CONTATO ===== */
.contact-cta{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

/* Evita qualquer sobreposição de botões em telas menores */
.contact-cta .btn{
  flex: 0 0 auto;
}

.footer{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .nav{ justify-content:flex-start; }
  .cards{ grid-template-columns: 1fr; }
  .cards.two{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
}

@media (max-width: 520px){
  .brand-badge{ width: 72px; height: 72px; }
  .btn{ width: 100%; }
}
