/* =========================
   GLOBAL RESET & BASE
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  min-height: 100vh;
  background: linear-gradient(
    to bottom,
    #ffffff 0px,
    #ffffff 170px,
    #fcfcfc 200px,
    #f8f8f8 250px,
    #f4f4f4 320px,
    #f0f0f0 400px,
    #ececec 500px,
    #e8e8e8 650px,
    #e4e4e4 800px,
    #e0e0e0
  );
  background-attachment: fixed;
  color: #999999;
  line-height: 1.4;
}

.content-wrapper {
  max-width: 1152px;
  margin: 0 auto;
  background-color: #fff;
}

/* HEADER / NAV / FOOTER */
header {
  background-color: #fff;
}

nav {
  background-color: #990000;
}

nav a {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
}

nav a:hover {
  color: #dea3a3;
}

footer {
  background-color: #fff;
  border-top: 1px solid #efefef;
}

footer img {
  width: 100px;
  height: auto;
}

/* SLIDER */
#slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}

/* TYPOGRAPHY & LINKS */
h1 {
  font-size: 1.875rem;
  font-weight: 400;
  color: #BD2026;
  border-bottom: 1px solid #990000;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  color: #999999;
  margin-bottom: 0.5rem;
}

blockquote {
  font-style: italic;
  color: #999999;
}

/* Links del contenido principal */
main a {
  color: #BD2026 !important;
}
main a:hover {
  color: #990000 !important;
}

/* Footer tipografía más grande */
footer {
  font-size: 0.875rem;   /* 14 px */
  line-height: 1.5;
}