/* ============================================================
   Página pública de Termos de Uso
   ============================================================ */
:root{
  --af-black:#0a0a0a; --af-muted:#666; --af-light-gray:#f8f9fb;
  --af-border:#e5e7eb; --af-green:#46a648;
}
html, body{ margin:0; padding:0; background:var(--af-light-gray); }
body{
  font-family:'Inter',-apple-system,sans-serif;
  color:#333; line-height:1.7; font-size:15px;
}

.termos-header{
  background:linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color:#fff;
  padding:60px 24px 80px;
  position:relative; overflow:hidden;
}
.termos-header::after{
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 20% 100%, rgba(70,166,72,.25) 0%, transparent 60%);
  pointer-events:none;
}
.termos-header__inner{
  max-width:920px; margin:0 auto;
  position:relative; z-index:1;
}
.termos-header__brand{
  display:flex; align-items:center; gap:14px;
  margin-bottom:36px;
}
.termos-header__brand span{
  font-family:'Outfit',sans-serif; font-weight:700;
  letter-spacing:6px; font-size:20px;
}
.termos-header__eyebrow{
  font-size:11px; letter-spacing:4px; text-transform:uppercase;
  color:#888; margin-bottom:16px;
}
.termos-header h1{
  font-family:'Outfit',sans-serif; font-size:44px; font-weight:600;
  margin:0 0 12px; letter-spacing:-1px;
}
.termos-header .data{
  color:#aaa; font-size:13px;
  display:flex; flex-wrap:wrap; gap:4px 10px; align-items:center;
}
.termos-header .data b{ color:#fff; font-weight:600; }
.termos-header .data .sep{ color:#555; }

.identificacao-box{
  background:var(--af-light-gray); border:1px solid var(--af-border);
  border-radius:10px; padding:20px 24px; margin:20px 0 28px;
  display:grid; grid-template-columns:repeat(2, 1fr); gap:14px 24px;
}
.identificacao-item{ display:flex; flex-direction:column; gap:4px; }
.identificacao-label{
  font-size:10px; letter-spacing:1.5px; text-transform:uppercase;
  color:#888; font-weight:700;
}
.identificacao-valor{
  font-size:14px; color:#0a0a0a; line-height:1.5;
}
.identificacao-valor a{ color:var(--af-green); }
@media(max-width:640px){
  .identificacao-box{ grid-template-columns:1fr; padding:16px; }
}

.termos-conteudo{
  max-width:820px; margin:-40px auto 60px;
  background:#fff; border-radius:12px;
  padding:56px 60px;
  box-shadow:0 4px 24px rgba(0,0,0,.06);
  position:relative; z-index:2;
}

.termos-conteudo h2{
  font-family:'Outfit',sans-serif; font-size:24px; font-weight:600;
  color:#0a0a0a; margin:44px 0 16px;
  padding-bottom:10px; border-bottom:2px solid var(--af-green);
  display:inline-block;
}
.termos-conteudo h2:first-child{ margin-top:0; }
.termos-conteudo h3{
  font-family:'Outfit',sans-serif; font-size:17px; font-weight:600;
  color:#0a0a0a; margin:28px 0 10px;
}
.termos-conteudo p{ margin:0 0 14px; color:#444; }
.termos-conteudo ul{ margin:0 0 16px; padding-left:22px; color:#444; }
.termos-conteudo ul li{ margin:6px 0; }
.termos-conteudo strong{ color:#0a0a0a; font-weight:600; }
.termos-conteudo a{ color:var(--af-green); text-decoration:none; font-weight:500; }
.termos-conteudo a:hover{ text-decoration:underline; }

.termos-conteudo table{
  border-collapse:collapse; width:100%; margin:14px 0 20px;
  font-size:14px;
}
.termos-conteudo th, .termos-conteudo td{
  border:1px solid var(--af-border); padding:10px 14px; text-align:left;
}
.termos-conteudo th{ background:var(--af-light-gray); font-weight:600; }

.termos-conteudo .aviso{
  background:#fff8e1; border-left:3px solid #f5a623;
  padding:14px 18px; margin:20px 0;
  font-size:14px; color:#8a4b00;
}

.termos-voltar{
  text-align:center; padding:24px;
}
.termos-voltar a{
  display:inline-flex; align-items:center; gap:8px;
  color:var(--af-muted); text-decoration:none;
  font-size:13px; font-weight:500;
}
.termos-voltar a:hover{ color:var(--af-green); }

@media(max-width:768px){
  .termos-header{ padding:40px 20px 60px; }
  .termos-header h1{ font-size:32px; }
  .termos-conteudo{ margin:-30px 16px 40px; padding:32px 24px; border-radius:10px; }
  .termos-conteudo h2{ font-size:20px; }
}
