body{
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.fondoBody {
    min-height: 100vh;
    background-image: url('../img/fondo.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Esto evita que la imagen se mueva al hacer scroll */
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Contenedor principal */
.container.h-100 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ajustes para el hero section */
.hero {
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semitransparente para mejor legibilidad */
    border-radius: 10px;
    margin: 1rem;
}

/* Asegurar que el navbar no afecte el layout */
.navbar {
    z-index: 1000;
    position: relative;
}
.navbar-brand{
    width: 150px;
}
.nav-link{
    font-size: 1.2rem;
}
/* Ajustes para el título y párrafo */
h1 {
    font-size: 2.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    font-size: 1.2rem;
    color: white;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Media queries para responsividad */
@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    p {
        font-size: 1.5rem;
    }
    .hero {
        padding: 1rem;
    }
    a{
        text-align: center;
    }
    .navbar-collapse{
        background: #fff;
    }
    .dropdown-item{
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }
    p {
        font-size: 0.9rem;
    }
    a{
        text-align: center;
    }
    .navbar-collapse{
        background: #fff;
    }
    .dropdown-item{
        text-align: center;
    }
}