:root{
  --preto:#0f0f12;
  --grafite:#1c1c22;
  --vermelho:#8b1e1e;
  --rosa:#b87a8c;
  --branco:#f5f5f7;
  --cinza:#9a9a9a;

  --borda:#2a2a2f;
  --bg2:#0c0c10;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html,body{ height:100%; }

body{
  background:var(--preto);
  color:var(--branco);
  font-family:Arial, Helvetica, sans-serif;
  display:flex;
  flex-direction:column;
}

main{ flex:1; }

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.95; }

.container{
  width:min(1100px, calc(100% - 48px));
  margin:0 auto;
}

/* ===================== */
/* TOPO / MARCA */
/* ===================== */
.topbar{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(12,12,16,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--borda);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand strong{
  letter-spacing:.8px;
  font-size:1.02rem;
}

.brand span{
  font-size:.80rem;
  color:var(--cinza);
  margin-top:4px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:var(--cinza);
  font-weight:700;
  font-size:.95rem;
  padding:8px 10px;
  border-radius:10px;
}

.nav a.ativa{
  color:var(--branco);
  background: rgba(139,30,30,.18);
  outline:1px solid rgba(139,30,30,.35);
}

/* ===================== */
/* HERO */
/* ===================== */
.hero{
  padding:56px 0 26px;
  background:
    radial-gradient(900px 480px at 20% 20%, rgba(184,122,140,.14), transparent 55%),
    radial-gradient(900px 480px at 85% 10%, rgba(139,30,30,.16), transparent 52%),
    linear-gradient(180deg, #0b0b0e, #0f0f12);
  border-bottom:1px solid var(--borda);
}

.hero-inner{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:26px;
  align-items:stretch;
}

.kicker{
  color:var(--cinza);
  font-weight:700;
  letter-spacing:.8px;
  text-transform:uppercase;
  font-size:.80rem;
  margin-bottom:10px;
}

.hero-text h1{
  font-size:2.5rem;
  line-height:1.05;
  margin-bottom:12px;
}

.hero-text h1 span{ color:var(--rosa); }

.lead{
  color:var(--cinza);
  max-width:58ch;
  line-height:1.7;
}

.cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  border:1px solid rgba(139,30,30,.55);
  background: var(--vermelho);
  color:var(--branco);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.btn:hover{ transform: translateY(-1px); }

.btn-ghost{
  background: transparent;
  border:1px solid var(--borda);
  color:var(--branco);
}

.btn-ghost:hover{
  border-color: rgba(184,122,140,.45);
}

.mini-metrics{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:20px;
}

.metric{
  padding:12px 12px;
  border:1px solid var(--borda);
  border-radius:14px;
  background: rgba(28,28,34,.35);
}

.metric-num{
  display:block;
  font-weight:900;
  letter-spacing:.3px;
  margin-bottom:4px;
}

.metric-label{
  display:block;
  color:var(--cinza);
  font-size:.85rem;
  line-height:1.25;
}

.hero-panel{
  border:1px solid var(--borda);
  border-radius:18px;
  padding:18px;
  background: rgba(28,28,34,.35);
  box-shadow: var(--shadow);
}

.hero-panel h2{
  font-size:1.1rem;
  margin-bottom:10px;
}

.bullets{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
  color:var(--cinza);
  line-height:1.45;
}

.bullets li{
  padding-left:14px;
  position:relative;
}

.bullets li::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background: var(--rosa);
  position:absolute;
  left:0;
  top:.55em;
}

/* ===================== */
/* SEÇÕES */
/* ===================== */
.section{ padding:56px 0; }

.section-alt{
  background: rgba(12,12,16,.55);
  border-top:1px solid var(--borda);
  border-bottom:1px solid var(--borda);
}

.section-cta{ padding:44px 0 60px; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.section-head h2{ font-size:1.6rem; }

.muted{
  color:var(--cinza);
  line-height:1.6;
}

/* ===================== */
/* BIO / ABOUT */
/* ===================== */
.about{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:28px;
  align-items:center;
}

.about-photo img{
  width:100%;
  height:auto;
  display:block;
  border-radius:16px;
  border:2px solid rgba(139,30,30,.6);
  box-shadow: var(--shadow);
}

.about-text h2{
  font-size:1.6rem;
  margin-bottom:10px;
}

.about-text p{
  color:var(--cinza);
  line-height:1.7;
  margin-bottom:10px;
}

.about-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:8px;
}

.textlink{
  color:var(--branco);
  font-weight:800;
  border-bottom:1px solid rgba(184,122,140,.45);
  padding-bottom:2px;
}

/* ===================== */
/* CARDS */
/* ===================== */
.grid{ display:grid; gap:18px; }
.cards{ grid-template-columns: repeat(3, 1fr); }

.card{
  background: rgba(28,28,34,.45);
  border:1px solid var(--borda);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  transition: transform .15s ease, border-color .15s ease;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(184,122,140,.35);
}

.card h3{ margin-bottom:8px; }

.card p{
  color:var(--cinza);
  line-height:1.6;
}

.cardlink{
  display:inline-block;
  margin-top:12px;
  font-weight:900;
  color:var(--branco);
  border-bottom:1px solid rgba(139,30,30,.45);
  padding-bottom:2px;
}

/* ===================== */
/* LISTA DE POSTS */
/* ===================== */
.list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.item{
  border:1px solid var(--borda);
  border-radius:18px;
  padding:16px 18px;
  background: rgba(28,28,34,.28);
}

.item-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
  flex-wrap:wrap;
}

.item h3 a{
  font-size:1.05rem;
  font-weight:900;
}

.tag{
  font-size:.78rem;
  font-weight:900;
  color:var(--branco);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(139,30,30,.22);
  border:1px solid rgba(139,30,30,.35);
}

/* ===================== */
/* CTA BOX */
/* ===================== */
.cta-box{
  border:1px solid var(--borda);
  border-radius:22px;
  padding:20px;
  background: rgba(28,28,34,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  box-shadow: var(--shadow);
}

/* ===================== */
/* FOOTER */
/* ===================== */
.footer{
  margin-top:auto;
  background:#0a0a0d;
  border-top:1px solid var(--borda);
  color:var(--cinza);
}

.footer-inner{
  padding:18px 0;
  text-align:center;
  line-height:1.5;
}

/* ===================== */
/* BOTÃO VOLTAR */
/* ===================== */
.back-btn{
  display:inline-block;
  margin-bottom:18px;
  font-weight:800;
  color:var(--cinza);
  transition:.2s;
}

.back-btn:hover{
  color:var(--branco);
  transform: translateX(-3px);
}

/* ===================== */
/* BOTÕES SOCIAIS */
/* ===================== */
.social-cta a{
  min-width:140px;
  text-align:center;
  transition:.2s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

/* Instagram */
.social-cta a:nth-child(1):hover{
  background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  border-color:transparent;
  color:#fff;
}

/* TikTok */
.social-cta a:nth-child(2):hover{
  background:#000;
  border-color:#25f4ee;
  color:#25f4ee;
}

/* WhatsApp */
.social-cta a:nth-child(3):hover{
  background:#25D366;
  border-color:transparent;
  color:#fff;
}

/* ===================== */
/* POST / ARTIGO */
/* ===================== */
.post{
  max-width: 920px;
}

.post h1{
  font-size: 2.25rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.post > .muted{
  margin-bottom: 24px;
}

.post-cover{
  margin: 0 auto 20px;
  max-width: 520px; /* diminui a imagem */
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: var(--shadow);
}

.post-cover img{
  width: 100%;
  height: auto;   /* mostra a imagem inteira */
  display: block;
}

.post-box{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 24px;
}

.post-intro{
  color: var(--cinza);
  line-height: 1.9;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.post-box h2{
  font-size: 1.45rem;
  line-height: 1.2;
  margin: 28px 0 10px;
}

.post-box h2:first-of-type{
  margin-top: 0;
}

.post-box p{
  color: #d8d8dc;
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.post-box p:last-child{
  margin-bottom: 0;
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; }
  .mini-metrics{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .nav{ justify-content:flex-start; }
  .hero-text h1{ font-size:2.1rem; }
}

@media (max-width: 700px){
  .post h1{
    font-size: 1.95rem;
  }

  .post-box{
    padding: 18px 16px;
  }

  .post-box h2{
    font-size: 1.25rem;
  }

  .post-box p{
    font-size: 1rem;
  }

  .post-cover{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .container{ width: min(1100px, calc(100% - 32px)); }
  .topbar-inner{ padding:12px 0; }
  .nav a{ padding:8px 8px; }

  .post h1{
    font-size: 1.7rem;
  }
}

.back-btn{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9aa0a6;
  font-size: 0.95rem;
  text-decoration: none;
  margin-bottom: 16px;
  transition: .2s;
}

.back-btn .arrow{
  font-size: 1.1rem;
  transition: transform .2s;
}

.back-btn:hover{
  color: #ffffff;
}

.back-btn:hover .arrow{
  transform: translateX(-4px);
}

.back-btn svg{
  width: 16px;
  height: 16px;
}