.modal-inicio {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Asegura que esté encima de todo */
}

.modal-inicio .modal-contentInicio {
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.modal-inicio img {
    width: 400px;
    height: auto;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 400px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

