*{
    list-style: none;
    box-sizing: border-box;
}

body{
    height: 145vh;
    position: relative;
    background-image: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)),
        url(/assets/images/Callao_Monumental.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Arial, Helvetica, sans-serif;    
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 100px;
    z-index: 1000;
}


main {
    margin-top: 100px; /* Ajusta el valor según la altura de tu header */
}

.logo{
    height: 50px;
}

.menu{
    display: flex;
    justify-content: center;
    align-items: center;
}

.item{
    margin: 0 15px;
    font-size: 18px;
    font-weight: 600;
    cursor:pointer;
    color: #F2F2F2;
}

.item:hover{
    color: #FF2258;
}

#menu{
    display: none;
}

.menu-icono{
    width: 25px;
}

label{
    cursor: pointer;
    display: none;
}

.btn{
    padding: 10px 24px;
    border-radius: 30px;
    background-color: #FF2258;
    color: #F2F2F2;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover{
    background-color: #880c2b;
}

@media(max-width:991px){
    .menu{
        padding: 50px;
        margin: 0;
    }

    .logo{
        visibility: hidden;
    }

    label{
        display: initial;
    }

    .menu{
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #323337;
        display: none;
        text-align: center;
        height: 100vh;
    }

    .item{
        margin: 0 0 20px 0;
        width: 100%;
    }

    .btn{
        width: 100px;
    }

    #menu:checked ~ .menu{
        display: initial;
    }

}



#banner {
    text-align: center;
    padding: 50px;
    background-color: #3498db; /* Color de fondo del banner */
    color: #fff; /* Color del texto del banner */
}

#openModalBtn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #2ecc71; /* Color de fondo del botón */
    color: #fff; /* Color del texto del botón */
    border: none;
    cursor: pointer;
    border-radius: 30px;
    margin-top: 10px;
}

#openModalBtn:hover{
    background-color: #323337;
}

/* Estilos del Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7); /* Fondo semi-transparente para el modal */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}


