/* ===========================================
   VARIÁVEIS DO TEMA
   =========================================== */
:root{
  --bg:#0E0E0E;
  --card:#151515;
  --muted:#9AA0A6;
  --accent:#C8A86B; /* dourado principal */
  --white:#FFFFFF;
}

/* ===========================================
   BASE
   =========================================== */
*{ box-sizing:border-box; }

body{
  margin:0;
  font-family:Inter,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--white);
  -webkit-font-smoothing:antialiased;
  letter-spacing:0.3px;
}

p, li{ line-height:1.55; }
h1, h2, h3, h4{ line-height:1.22; }

/* ===========================================
   WRAPPER (LARGURA DO SITE)
   =========================================== */
.wrap{
  max-width:960px;
  margin:0 auto;
  padding:32px;
}

/* ===========================================
   HEADER
   =========================================== */
.site-header{
  border-bottom:1px solid rgba(255,255,255,0.06);
  position:sticky;
  top:0;
  background:rgba(14,14,14,0.85);
  backdrop-filter:blur(4px);
  z-index:40;
}

.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.brand-logo{ height:72px; }

/* ===========================================
   MENU
   =========================================== */
.nav a{
  color:var(--muted);
  margin-left:18px;
  text-decoration:none;
}

.nav .cta{
  border:1px solid rgba(255,255,255,0.08);
  padding:8px 12px;
  border-radius:8px;
  color:var(--white);
}

/* ===========================================
   HERO
   =========================================== */
.hero{ padding:80px 0; }

.hero-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr; /* layout premium */
  gap:48px;
  align-items:center;
}

.hero-copy h1{
  font-size:36px;
  margin-bottom:18px;
}

.lead{
  font-size:18px;
  color:rgba(255,255,255,0.75);
  margin-bottom:24px;
}

/* Imagem premium da hero */
.hero-media img{
  width:100%;
  max-width:500px;
  border-radius:18px;
  display:block;
  margin:0 auto;
  box-shadow:0px 12px 45px rgba(0,0,0,0.65);
}

/* Botões gerais */
.btn{
  padding:12px 20px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  margin:12px 12px 12px 0;
}

.btn.primary{
  background:var(--accent);
  color:#000;
}

.btn.ghost{
  border:1px solid rgba(255,255,255,0.12);
  color:var(--white);
}

/* Botão outline (planos) */
.btn.outline{
  border:1px solid var(--accent);
  color:var(--accent);
  background:transparent;
  transition:0.2s ease;
}

.btn.outline:hover{
  background:var(--accent);
  color:#000;
}

/* ===========================================
   SEÇÕES GERAIS
   =========================================== */
.section{
  padding:80px 0;
}

.section h2{
  font-size:32px;
  margin-bottom:32px;
}

/* ===========================================
   FEATURES
   =========================================== */
.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:32px;
}

.feature{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  padding:28px;
  border-radius:16px;
  backdrop-filter:blur(6px);
  transition:0.25s ease;
}

.feature h3{
  margin:0 0 10px;
  color:var(--accent);
  font-size:20px;
}

.feature p{
  margin:0;
  color:rgba(255,255,255,0.75);
}

.feature:hover{
  border-color:var(--accent);
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.35);
}

/* ===========================================
   COMO FUNCIONA — STEPS
   =========================================== */
.steps-modern{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:32px;
  margin-top:40px;
}

.card-step{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  padding:28px;
  border-radius:16px;
  backdrop-filter:blur(6px);
  transition:0.25s ease;
}

.card-step strong{
  font-size:24px;
  background:var(--accent);
  color:#000;
  padding:6px 14px;
  border-radius:10px;
  display:inline-block;
  margin-bottom:12px;
}

.card-step h4{
  margin:0 0 10px;
  font-size:20px;
}

.card-step p{
  margin:0;
  color:rgba(255,255,255,0.75);
}

.card-step:hover{
  border-color:var(--accent);
  transform:translateY(-3px);
  box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

/* ===========================================
   PLANOS
   =========================================== */
.plan{
  background:linear-gradient(180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.01)
  );
  border:1px solid rgba(255,255,255,0.06);
  padding:32px 24px;
  border-radius:18px;
  backdrop-filter:blur(6px);
}

.plan h3{
  margin:0 0 12px;
}

.plan .price{
  font-size:28px;
  font-weight:700;
  margin-bottom:16px;
}

.plan ul{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}

.plan ul li{
  margin-bottom:8px;
  color:var(--muted);
}

/* ===========================================
   CONTATO
   =========================================== */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.card{
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.06);
  padding:28px;
  border-radius:16px;
  backdrop-filter:blur(4px);
}

.card input{
  width:100%;
  padding:12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.15);
  background:rgba(0,0,0,0.2);
  color:white;
  margin-bottom:16px;
}

/* ===========================================
   MOBILE
   =========================================== */
@media(max-width:900px){

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-media img{
    max-width:330px;
    margin-top:24px;
  }

  .mockup{
    max-width:260px;
  }

  .brand-logo{
    height:60px;
  }

  .features-grid,
  .steps-modern,
  .contact-grid{
    grid-template-columns:1fr;
  }
}
/* ============================
   FOOTER PREMIUM CORRETO
   ============================ */
.site-footer{
  background:#0B0B0B;
  padding:60px 0 30px;
  border-top:1px solid rgba(255,255,255,0.06);
  margin-top:80px;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:40px;
  align-items:flex-start;
}

.footer-logo{
  height:60px;
  margin-bottom:16px;
}

.footer-desc{
  color:rgba(255,255,255,0.7);
  font-size:14px;
  margin-bottom:20px;
  max-width:260px;
}

/* ÍCONES SOCIAIS */
.footer-social a{
  color:#C8A86B;
  font-size:20px;
  margin-right:14px;
  transition:0.2s ease;
}

.footer-social a:hover{
  color:#ffffff;
}

/* TITULOS DAS COLUNAS */
.footer-col h4{
  margin:0 0 16px;
  color:#fff;
  font-size:18px;
}

/* LISTAS */
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col ul li{
  margin-bottom:10px;
}

.footer-col ul li a{
  color:rgba(255,255,255,0.7);
  text-decoration:none;
  font-size:15px;
  transition:0.2s ease;
}

.footer-col ul li a:hover{
  color:#fff;
}

/* BASE FINAL */
.footer-bottom{
  margin-top:40px;
  text-align:center;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,0.05);
}

.footer-bottom p{
  color:rgba(255,255,255,0.5);
  font-size:14px;
}

/* MOBILE */
@media(max-width:900px){
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo{
    margin:0 auto 16px;
  }

  .footer-social a{
    margin-right:10px;
  }
}
/* Ajuste exclusivo para o footer premium */
.site-footer .wrap{
  max-width:1200px !important;
}
/* Remove qualquer espaço vazio gigantesco acima do footer */
section {
  margin-bottom: 0 !important;
  padding-bottom: 60px;
}

.section:last-of-type {
  margin-bottom: 0 !important;
  padding-bottom: 40px !important;
}

/* Evita que seções criem blocos vazios por engano */
section:empty {
  display: none !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}
