/* legal.css — Estilos compartidos por las paginas legales de Radiadores Pehuen */

:root {
  --red: #CC1A1A;
  --red-dark: #991111;
  --black: #0a0a0a;
  --dark: #141414;
  --white: #ffffff;
  --gray: #999999;
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--red); color: var(--white) !important; padding: 10px 20px;
  font-size: 13px !important; font-weight: 700 !important; letter-spacing: 0.06em;
  text-transform: uppercase; transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }

/* CABECERA DE LA PAGINA LEGAL */
.legal-hero {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 72px 40px 56px;
  background: var(--dark);
}
.legal-hero-inner { max-width: 860px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: var(--red); }
.legal-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.9; letter-spacing: 0.02em; margin-bottom: 18px;
}
.legal-fecha { font-size: 13px; color: rgba(255,255,255,0.4); }

/* CUERPO */
.legal-body { max-width: 860px; margin: 0 auto; padding: 56px 40px 80px; }
.legal-body h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: 0.03em; line-height: 1.05;
  margin: 48px 0 18px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal-body h3 {
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--white); margin: 28px 0 10px;
}
.legal-body p {
  font-size: 15px; color: rgba(255,255,255,0.6);
  line-height: 1.85; margin-bottom: 16px;
}
.legal-body ul, .legal-body ol {
  margin: 0 0 20px 0; padding-left: 0; list-style: none;
  display: flex; flex-direction: column; gap: 10px;
}
.legal-body li {
  font-size: 14.5px; color: rgba(255,255,255,0.55);
  line-height: 1.7; padding-left: 22px; position: relative;
}
.legal-body li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 9px; height: 2px; background: var(--red);
}
.legal-body a:not(.btn-red) { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:not(.btn-red):hover { color: var(--white); }
.legal-body strong { color: rgba(255,255,255,0.9); font-weight: 600; }

/* Aviso de dato faltante — se elimina cuando se completen los datos reales */
.legal-pendiente {
  background: rgba(204,26,26,0.08);
  border-left: 3px solid var(--red);
  padding: 16px 20px; margin: 24px 0;
  font-size: 13.5px; color: rgba(255,255,255,0.7); line-height: 1.7;
}

/* Tabla de cookies */
.legal-tabla-wrap { overflow-x: auto; margin: 20px 0 28px; }
.legal-tabla { width: 100%; border-collapse: collapse; min-width: 520px; }
.legal-tabla th, .legal-tabla td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 13.5px; line-height: 1.6;
}
.legal-tabla th {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  border-bottom-color: rgba(255,255,255,0.14);
}
.legal-tabla td { color: rgba(255,255,255,0.55); }
.legal-tabla td:first-child { color: var(--white); font-weight: 500; white-space: nowrap; }

.btn-red {
  display: inline-block; background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 15px 30px;
  transition: background 0.2s; margin-top: 8px;
}
.btn-red:hover { background: var(--red-dark); }

/* FOOTER */
footer { background: var(--dark); padding: 32px 40px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 36px; margin-bottom: 10px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; max-width: 260px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 16px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-copy, .footer-location { font-size: 12px; color: rgba(255,255,255,0.2); }

@media (max-width: 768px) {
  nav { padding: 0 20px; height: 60px; }
  .nav-logo img { height: 32px; }
  .nav-links {
    display: none; flex-direction: column; position: fixed; top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.98); padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.08); z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .legal-hero { padding: 48px 20px 36px; }
  .legal-body { padding: 40px 20px 60px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 24px 20px 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
