:root{
  --bg:#05010a;
  --gold:#f7c76b;
  --gold-2:#b86b1d;
  --line:rgba(247,199,107,.18);
  --panel:rgba(13,4,22,.9);
  --text:rgba(255,255,255,.82);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Segoe UI,Arial,sans-serif;
  background:
    radial-gradient(circle at 50% 0%,rgba(247,199,107,.16),transparent 24%),
    linear-gradient(180deg,#07020d,#05010a 50%,#030108);
  color:#fff;
}
a{color:#ffe29a}
.legal-shell{width:min(1100px,calc(100% - 32px));margin:0 auto}
.legal-topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:rgba(7,2,13,.84);
  border-bottom:1px solid var(--line);
}
.legal-topbar-inner{
  width:min(1100px,calc(100% - 32px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 0;
}
.legal-brand{
  font-family:Georgia,serif;
  font-size:30px;
  color:var(--gold);
  text-decoration:none;
}
.legal-actions{display:flex;gap:10px;flex-wrap:wrap}
.legal-actions .legal-btn{flex:1 1 180px}
.legal-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:1000;
  border:1px solid rgba(247,199,107,.2);
}
.legal-btn.primary{
  background:linear-gradient(95deg,#fff2bd,var(--gold),var(--gold-2));
  color:#140408;
}
.legal-btn.secondary{
  background:rgba(255,255,255,.06);
  color:#fff2cf;
}
.legal-btn.messenger{
  background:linear-gradient(95deg,#dff5ff,#00b2ff,#7b3dff);
  color:#fff;
  border-color:rgba(0,178,255,.28);
}
.legal-hero{
  padding:72px 0 26px;
  text-align:center;
}
.legal-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:999px;
  border:1px solid rgba(247,199,107,.24);
  background:rgba(247,199,107,.08);
  color:#ffe7a1;
  font-size:12px;
  font-weight:1000;
  letter-spacing:1px;
  text-transform:uppercase;
}
.legal-title{
  margin:18px 0 12px;
  font-family:Georgia,serif;
  font-size:clamp(42px,7vw,78px);
  line-height:.98;
  color:#fff4d2;
}
.legal-subtitle{
  max-width:840px;
  margin:0 auto;
  color:var(--text);
  font-size:18px;
  line-height:1.7;
}
.legal-card{
  margin:28px 0;
  padding:28px;
  border-radius:28px;
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(20,8,29,.92),rgba(8,2,14,.9));
  box-shadow:0 24px 72px rgba(0,0,0,.34);
}
.legal-card h2,.legal-card h3{
  margin:0 0 14px;
  font-family:Georgia,serif;
  color:#fff3d0;
}
.legal-card p,.legal-card li{
  color:var(--text);
  line-height:1.75;
  font-size:16px;
}
.legal-card ul{
  margin:14px 0 0 20px;
  padding:0;
}
.legal-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
}
.legal-info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.legal-info-box{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(247,199,107,.14);
  background:rgba(255,255,255,.04);
}
.legal-info-box strong{
  display:block;
  margin-bottom:8px;
  color:#ffe29a;
}
.legal-form{
  display:grid;
  gap:14px;
}
.legal-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.legal-form .full{grid-column:1/-1}
.legal-form label{
  display:block;
  margin-bottom:7px;
  color:#ffe7a1;
  font-size:13px;
  font-weight:900;
}
.legal-form input,
.legal-form select,
.legal-form textarea{
  width:100%;
  border:1px solid rgba(247,199,107,.2);
  border-radius:18px;
  background:rgba(0,0,0,.28);
  color:#fff;
  padding:14px 15px;
  font:inherit;
}
.legal-form textarea{
  min-height:132px;
  resize:vertical;
}
.legal-form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.legal-form-actions .legal-btn{flex:1 1 220px}
.legal-channel-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}
.legal-note{
  color:rgba(255,255,255,.66);
  font-size:13px;
  line-height:1.6;
}
.legal-footer{
  margin-top:38px;
  padding:26px 0 36px;
  border-top:1px solid rgba(247,199,107,.12);
}
.legal-footer-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr .9fr;
  gap:18px;
}
.legal-footer h4{
  margin:0 0 12px;
  color:var(--gold);
}
.legal-footer p,.legal-footer a{
  color:var(--text);
  line-height:1.7;
  text-decoration:none;
}
.legal-footer-links{
  display:grid;
  gap:8px;
}
.legal-footer-links a:hover{text-decoration:underline}
@media(max-width:900px){
  .legal-grid,.legal-info-grid,.legal-footer-grid,.legal-form-grid,.legal-channel-grid{grid-template-columns:1fr}
}
@media(max-width:640px){
  .legal-topbar-inner{flex-direction:column;align-items:flex-start}
  .legal-actions{width:100%}
  .legal-btn{width:100%}
  .legal-card{padding:22px}
}


/* === Lucía Fer: botones sociales estéticos y uniformes === */
.legal-social-card{margin-top:18px;padding:18px;border-radius:22px;border:1px solid rgba(247,199,107,.22);background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));box-shadow:0 16px 34px rgba(0,0,0,.24)}
.legal-social-title{display:block;margin-bottom:12px;color:#ffe29a;font-size:12px;font-weight:1000;letter-spacing:.14em;text-transform:uppercase}
.legal-social-buttons{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}
.legal-social-btn{display:flex;align-items:center;gap:12px;text-decoration:none!important;border-radius:18px;padding:14px 16px;color:#fff!important;font-weight:1000;line-height:1.22;border:1px solid rgba(255,255,255,.15);box-shadow:0 12px 28px rgba(0,0,0,.18);transition:transform .18s ease,box-shadow .18s ease}
.legal-social-btn img{width:30px;height:30px;flex:0 0 auto}
.legal-social-btn:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(0,0,0,.24)}
.legal-social-facebook{background:linear-gradient(90deg,#dfeaff 0%,#1877f2 48%,#0b4fc4 100%)}
.legal-social-instagram{background:linear-gradient(90deg,#feda75 0%,#fa7e1e 18%,#d62976 48%,#962fbf 73%,#4f5bd5 100%)}
.legal-social-copy{display:flex;flex-direction:column}
.legal-social-copy strong{font-size:15px}
.legal-social-copy small{margin-top:2px;color:rgba(255,255,255,.95);font-size:12px;font-weight:800}
.legal-actions .legal-social-mini{display:inline-flex;align-items:center;gap:8px}
.legal-actions .legal-social-mini img{width:18px;height:18px}
@media(max-width:620px){.legal-social-buttons{grid-template-columns:1fr}.legal-social-btn{text-align:left}.legal-actions .legal-social-mini{justify-content:center}}

/* Redes sociales oficiales añadidas: X y TikTok */
.legal-social-x,.footer-social-x{background:linear-gradient(90deg,#000,#252525,#000)!important;border-color:rgba(255,255,255,.28)!important;color:#fff!important}
.legal-social-tiktok,.footer-social-tiktok{background:linear-gradient(90deg,#010101,#25F4EE 28%,#FE2C55 68%,#010101)!important;border-color:rgba(37,244,238,.35)!important;color:#fff!important}
.legal-social-mini.legal-social-x,.legal-social-mini.legal-social-tiktok{color:#fff!important}


  display:none!important;
  visibility:hidden!important;
  width:0!important;
  height:0!important;
  max-width:0!important;
  max-height:0!important;
  overflow:hidden!important;
}