/* aviso-legal.css */

:root{
  --blue:#1D3557;
  --green:#2A9D8F;
  --sand:#E9C46A;
  --dark:#07111d;
  --white:#ffffff;
  --muted:#667085;
  --light:#f7f4ec;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter', sans-serif;
  background:var(--light);
  color:var(--dark);
}

.container{
  width:min(1120px, 92%);
  margin:auto;
}

/* HEADER */

.site-header{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(29,53,87,.08);
  position:sticky;
  top:0;
  z-index:20;
}

.header-inner{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--blue);
  text-decoration:none;
  font-weight:900;
}

.brand img{
  width:58px;
}

.header-inner nav{
  display:flex;
  gap:22px;
  flex-wrap:wrap;
}

.header-inner nav a{
  color:var(--blue);
  text-decoration:none;
  font-weight:800;
}

/* HERO */

.legal-hero{
  padding:90px 0;
  background:
    linear-gradient(120deg, rgba(7,17,29,.94), rgba(29,53,87,.74)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1974&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  color:white;
}

.eyebrow{
  display:inline-block;
  color:var(--sand);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.8rem;
  margin-bottom:18px;
}

.legal-hero h1{
  font-family:'Montserrat', sans-serif;
  font-size:clamp(2.6rem, 5vw, 5rem);
  line-height:1.05;
  margin-bottom:20px;
}

.legal-hero p{
  max-width:760px;
  color:#edf2f7;
  line-height:1.8;
  font-size:1.1rem;
}

/* LEGAL CONTENT */

.legal-section{
  padding:80px 0;
}

.legal-card{
  background:white;
  border-radius:30px;
  padding:46px;
  box-shadow:0 22px 70px rgba(29,53,87,.1);
}

.legal-card article{
  padding-bottom:34px;
  margin-bottom:34px;
  border-bottom:1px solid #e5e7eb;
}

.legal-card article:last-child{
  border-bottom:none;
  margin-bottom:0;
  padding-bottom:0;
}

.legal-card h2{
  font-family:'Montserrat', sans-serif;
  color:var(--blue);
  font-size:1.55rem;
  margin-bottom:14px;
}

.legal-card p{
  color:#475467;
  line-height:1.85;
  margin-bottom:12px;
}

.legal-card p:last-child{
  margin-bottom:0;
}

/* FOOTER */

.site-footer{
  background:#06101c;
  color:white;
  padding:38px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-inner p{
  color:#cbd5e1;
  margin-top:6px;
}

.footer-inner a{
  color:var(--sand);
  text-decoration:none;
  font-weight:800;
}

/* RESPONSIVE */

@media(max-width:700px){

  .header-inner{
    align-items:flex-start;
    flex-direction:column;
    padding:18px 0;
  }

  .legal-hero{
    padding:65px 0;
  }

  .legal-card{
    padding:28px 22px;
    border-radius:24px;
  }

  .legal-section{
    padding:50px 0;
  }

}