/* ─────────────────────────────────────────────
   site.css — estilos compartidos
   nav-legal, footer global, banner de cookies
   ───────────────────────────────────────────── */

:root {
  --pink:         #FF44CC;
  --pink-dark:    #DD22AA;
  --pink-light:   #FF88DD;
  --pink-pale:    rgba(255,68,204,.10);
  --pink-border:  rgba(255,68,204,.22);
  --gray-dark:    #2F2F2F;
  --gray-mid:     #6B7280;
  --text-primary: #111827;
  --text-secondary:#6b7280;
  --text-tertiary: #9ca3af;
  --border:       #e5e7eb;
}

/* ─── FOOTER GLOBAL ─── */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.6);
  padding: 3.5rem 2.5rem 1.5rem;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
.site-footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.site-footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1rem;
}
.site-footer-col ul { list-style: none; padding: 0; margin: 0; }
.site-footer-col li { margin-bottom: .55rem; }
.site-footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.site-footer-col a:hover { color: rgba(255,255,255,.95); }
.site-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: .85rem;
  text-decoration: none;
}
.site-footer-brand-icon {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.site-footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--pink);
}
.site-footer-brand-sub {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: rgba(255,255,255,.45);
}
.site-footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  margin-bottom: .85rem;
  max-width: 280px;
}
.site-footer-mail {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.site-footer-mail:hover { color: var(--pink); }
.site-footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: .5px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.site-footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,.4);
}
.site-footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  line-height: 1.6;
  text-align: left;
  width: 100%;
  padding-top: 1.25rem;
  border-top: .5px solid rgba(255,255,255,.06);
}

@media (max-width: 768px) {
  .site-footer { padding: 2.5rem 1.25rem 1.25rem; }
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .site-footer-grid { grid-template-columns: 1fr; }
}

/* ─── BANNER DE COOKIES ─── */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--gray-dark);
  color: rgba(255,255,255,.85);
  border: .5px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 1.1rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  line-height: 1.55;
  z-index: 999;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner-text { margin-bottom: .9rem; }
.cookie-banner-text a {
  color: var(--pink-light);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  padding: 11px 18px;
  cursor: pointer;
  border: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.cookie-btn-primary {
  background: var(--pink);
  color: #fff;
}
.cookie-btn-primary:hover { background: var(--pink-dark); }
.cookie-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.75);
  border: .5px solid rgba(255,255,255,.25);
}
.cookie-btn-ghost:hover {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.cookie-btn-link {
  background: transparent;
  color: rgba(255,255,255,.55);
  text-decoration: underline;
  padding: 9px 12px;
}
.cookie-btn-link:hover { color: #fff; }
