/* ====== FUENTES GENERALES ====== */
html, body {
  height: 100%;
}

main {
  flex: 1;
}

body {
  font-family: 'Poppins', sans-serif; 
  display: flex;
  flex-direction: column;
  min-height: 100vh;

}

/* Ajustes al header */
header {
  background-color: #fff;
}

header .nav-link {
  text-decoration: none !important;
  color: #000 !important;
}

header .nav-link:hover {
  color: #198754 !important; 
}

/* footer */
footer {
  background-color: #f8f9fa;
}

.social-icons a:hover {
  transform: scale(1.1);
}


h1, h2, h3 {
  font-family: 'Montserrat', sans-serif; 
  font-weight: 700; /* Grosor para texto */
}


p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}


.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font: bold 14px;
}
/* Botones de destino */
.custom-btn {
  font-family: 'Montserrat', sans-serif;  
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 20px;     
  padding: 10px 25px;
  transition: all 0.3s ease;
}

/* Evento: al pasar el mouse */
.custom-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px black;
}

.banner {
  position: relative;
  width: 100%;
  height: 400px; /* Puedes ajustar la altura */
  background-image: url("../img/banner_ayacucho.jpg"); 
  background-size: cover;     /* La imagen cubre todo el espacio */
  background-position: center; /* Centra la imagen */
  display: flex;
  align-items: center;        /* Centra verticalmente el contenido */
  justify-content: center;    /* Centra horizontalmente el contenido */
  color: white;              
  text-align: center;
  overflow: hidden;
}


.hero-banner {
  background-image: url("../img/banner_ayacucho.jpg"); 
  background-size: cover;
  background-position: center;
  min-height: 400px;
  width: 100%;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* oscurece para que resalte el texto */
  z-index: 1;
}

.hero-banner h1,
.hero-banner p {
  position: relative;
  z-index: 2;
}
