/* aviso-legal.css
*/

:root{
  --bg:#071018;
  --card:#0b0b0b;
  --muted:#9fb3c8;
  --accent:#00bcd4;
  --text:#dbeefc;
  --radius:10px;
  --container-width:1100px;
  font-family: Inter, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

html,body{height:100%;margin:0;background:linear-gradient(180deg,var(--bg),#031018);color:var(--text);-webkit-font-smoothing:antialiased;}
.container{max-width:var(--container-width);margin:0 auto;padding:28px;}
.site-header{background:transparent;padding:18px 0;border-bottom:1px solid rgba(255,255,255,0.03);}
.header-inner{display:flex;align-items:center;justify-content:space-between;}
.brand-logo{display: inline-block; width: 280px; height:auto; max-height: 92px; object-fit: contain; transition: width 180ms ease, max-height 180ms ease;}

header-inner .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-nav a{color:var(--muted);margin-left:18px;text-decoration:none;font-weight:600;}
.main-nav a.active{color:var(--accent);}

.page-content{padding:36px 16px;}
.card{background:var(--card);border-radius:var(--radius);padding:22px;box-shadow:0 8px 30px rgba(0,0,0,0.6);}
.card-header h1{margin:0;font-size:1.6rem;color:#fff;}
.subtitle{margin:6px 0 0;color:var(--muted);}
.meta{margin-top:8px;color:var(--muted);font-size:0.95rem;}

.card-body h2{color:#bfe6ff;margin-top:18px;margin-bottom:8px;}
.card-body p, .card-body li{color:var(--text);line-height:1.6;}
.card-body ul{margin-left:18px;}
.card-footer{margin-top:18px;border-top:1px solid rgba(255,255,255,0.03);padding-top:12px;color:var(--muted);}

@media (max-width:880px){
  .container{padding:18px;}
  .brand-logo{height:32px;}
}

