/* ── PALETA DAMENOV ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --navy: #0d1b2a;
  --navy-mid: #162032;
  --gold: #b8955a;
  --gold-l: #d4b07a;
  --cream: #ede3d0;
  --text-light: #e8e0d4;
  --text-muted: #8a8070;
}

/* Fondo general */
body { background: var(--navy) !important; color: var(--text-light) !important; }

/* Navbar */
header, nav, .navbar {
  background: rgba(13,27,42,0.96) !important;
  border-bottom: 1px solid rgba(184,149,90,0.2) !important;
  backdrop-filter: blur(12px);
}
.nav-link, .navbar-nav .nav-link {
  font-family: 'Lato', sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  color: var(--text-light) !important;
  font-size: .82rem !important;
}
.nav-link:hover { color: var(--gold) !important; }

/* Títulos */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif !important;
  color: #ffffff !important;
}

/* Párrafos */
p { font-family: 'Lato', sans-serif !important; font-weight: 300 !important; color: var(--text-muted) !important; line-height: 1.75 !important; }

/* Botones */
.btn, button[type="submit"] {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border: none !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  font-size: .8rem !important;
  border-radius: 1px !important;
}
.btn:hover { background: var(--gold-l) !important; }

/* Secciones / bloques */
section, .section, [class*="block"], [class*="section"] {
  background: var(--navy) !important;
}

/* Footer */
footer {
  background: #080f18 !important;
  border-top: 1px solid rgba(184,149,90,0.2) !important;
  color: var(--text-muted) !important;
}
footer a { color: var(--text-muted) !important; }
footer a:hover { color: var(--gold) !important; }

/* Links generales */
a { color: var(--gold) !important; }
a:hover { color: var(--gold-l) !important; }
/* ── FRANJA VERDE (footer Sitiosimple) ── */
footer,
footer > footer,
.footer-custom-background-color,
[class*="footer"],
.bg-dark,
.bg-secondary,
section:last-child,
div[class*="footer"] {
  background-color: #080f18 !important;
  background: #080f18 !important;
}

/* Links y texto del footer */
footer *,
[class*="footer"] * {
  color: #8a8070 !important;
}

footer a:hover,
[class*="footer"] a:hover {
  color: #b8955a !important;
}

/* Borde superior dorado */
footer,
footer > footer {
  border-top: 1px solid rgba(184,149,90,0.2) !important;
}