html, body {
    height: 100%;
    background-color: black;
}
.hero-bg {
    width: 100%;
    min-height: 100vh; /* NO height fija */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0px !important;
}

.hero-bg-overlay {
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.938);
    padding: 40px;
}
@media (max-width: 991px) {
    .hero-bg-overlay {
        padding: 25px;
    }
}
.hero-img {
    width: 100%;
    max-width: 900px;
    height: 60vh;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

/* Mobile ajustes */
@media (max-width: 991px) {
    .hero-img {
        height: 40vh;
    }
}

a{
    font-family: "Plus Jakarta Sans", sans-serif;
    color: white !important;
    text-decoration: none !important;
    list-style: none !important;
}
.navbar{
    text-decoration: none !important;
    list-style: none !important;
}
p{
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase;
    color: white !important;
    font-size: 20px !important;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-item{
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.178);
    border-radius: 500px !important;
    border: 0px solid;
    display: flex;
    align-items: center;
    justify-content: center;   
    transition: background-color 0.3s ease-in-out;
}
@media (max-width: 991px) {
    .nav-item {
        width: 45px;
        height: 45px;
    }
}
.nav-item:hover{
    background-color: rgba(255, 255, 255, 0.274);
    transition: background-color 0.5s ease-in-out;
}
.nav-icon{
    width: 35px;
}
@media (max-width: 991px) {
    .nav-icon {
        width: 25px;
        height: 25px;
    }
}
.dropdown-menu{
    font-size: 14px !important;
}
.dropdown-menu-dark{
    background-color: black !important;
    
}