body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #192C4C;
  overflow-x: hidden;
  background-image: url(img/fondo.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  position: relative; /* Añadido para contexto de posicionamiento */
  z-index: 10; /* Asegura que esté por encima de otros elementos */
}

.logo img {
  height: 60px;
}

/* Navegación */
nav {
  display: flex;
  gap: 20px;
  position: relative; /* Añadido para contexto */
  
}

/* Estilos de enlaces CORREGIDOS */
nav a.enlace {
  position: relative;
  display: inline-block;
  color: #192C4C;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0; /* Espacio para el subrayado */
  transition: all 0.3s ease; /* Transición para todos los cambios */
}

nav a.enlace:hover {
  color: #AD803C;
}

nav a.enlace::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #AD803C;
  transition: width 0.4s ease;
}

nav a.enlace:hover::after {
  width: 100%;
}

/* Imágenes - Asegúrate que no interfieran */
.montaña2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50vw;
  height: auto;
  z-index: 1;
  top: 58%;
}

.iglesia2 {
  position: absolute;
  bottom: -35px;
  width: 100vw;
  height: auto;
  max-height: 107vh;
  z-index: 2;
}
