body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

.content {
    flex: 1;
}

.nav-item {
    cursor: pointer;
}

.nav-item:hover {
    background-color: #6e8f5981;  
    color: #fff;  
    box-shadow: 0 0 10px #6e8f5981; 
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: rgba(0, 113, 119);
    z-index: 1000;
    color: white; /* 👈 Agrega esta línea */
}
.dropdown-item {
    color: white !important;
}

.dropdown.show .dropdown-menu {
    display: block;
}

.dropdown-item:hover {
    background-color: #6e8f5981; 
    color: #fff; 
    box-shadow: 0 0 10px #6e8f5981; 
}

.carousel-inner img {
    width: 100%;  
    height: auto; 
    object-fit: cover; 
    margin: auto; 
}

.carousel-item img {
    width: auto;  
    height: auto; 
    max-width: 100%; 
    object-fit: contain; 
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
    background-color: #000000a1;
    width: 45px;
    height: 70px;
    border-radius: 25%;
}


.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.requisitos-container {
    max-height: 400px; 
    overflow-y: auto; 
    position: absolute; 
    right: 20px; 
    width: 300px;
}

.requisitos-parent {
    position: relative;
}

.hidden {
    display: none;
    position: absolute;
    background-color: white;
    z-index: 10;
    width: max-content;
    padding: 10px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

