 body {
      margin: 0;
      font-family: 'Cinzel', serif;
      color: #ffffff;
      background: linear-gradient(120deg, #0f0f0f, #1a1a2e);
    }

    header {
      background-color: #1b6b9606;
      color: white;
      padding: 20px 0;
      text-align: center;
    }

    .logo-area img {
      width: 80px;
      margin-bottom: 10px;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 30px;
      padding: 0;
      margin: 10px 0 0 0;
    }

    nav a {
      color: #ccc;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: white;
    }


.zoom-link img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 10px;
}

.zoom-link:hover img {
  transform: scale(1.2);
  box-shadow: 0 0 15px 5px #FFD700cc; /* brillo dorado */
}


/* Contenedor general */
main {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Header */

header {

  border-bottom: 2px solid #FFD700; /* Dorado */
}

.logo-area img {
      width: 80px;
      margin-bottom: 10px;
    }

header h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #FFD700;
  flex-grow: 1;
  text-align: center;
}



/* Sección de bienvenida */
section {
  margin-bottom: 40px;
  text-align: center;
}

section h1 {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  color: #FFD700;
  margin: 20px 0 15px;
  text-shadow: 0 0 8px #ffd700aa;
}

/* Texto narrativo */
section p {
  max-width: 700px;
  margin: 15px auto;
  font-size: 1.15rem;
  text-align: justify;
  color: #ddd;
}

/* Imágenes centradas */
section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #FFD700aa;
  margin: 20px 0;
}


  /* FOOTER */
.footer-buttons {
  margin-top: 10px;
}

.footer-buttons button {
  margin: 5px;
  padding: 8px 14px;
  background-color: #1e1e1d;
  color: #ffee00;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

footer {
  background-color: #12121f;
  text-align: center;
  padding: 15px 0;
  color: #aaa;
  font-size: 0.9rem;
  border-top: 2px solid #FFD700;
}

/* Modal ya está definido en tu CSS, pero agrego por claridad */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-contenido {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  width: 90%;
  max-width: 600px;
  color: black;
  border-radius: 10px;
  max-height: 80vh;
  overflow: hidden;
  position: relative;
}

.contenido-scrollable {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.cerrar {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.redes-sociales {
  margin-top: 15px;
}

.redes-sociales a {
  color: #f0f0f0;
  text-decoration: none;
  margin: 0 8px;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.redes-sociales a:hover {
  color: #FFD700;
  transform: scale(1.2);
}
