.servicio-alojamiento {
    width: 100%;
    min-height: 100vh;
    background-color: #1C3049;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 70px;
    box-sizing: border-box;
}

#alojamiento header {
    background-color: #1C3049;
}

.fotos-aloja {
    width: 40%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fotos-aloja img:first-child {
    position: relative;
    width: 250px;
    height: 250px;
    box-sizing: border-box;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 10px;
}

.fotos-aloja img:last-child {
    position: relative;
    margin-left: 250px;
    width: 250px;
    height: 250px;
    box-sizing: border-box;
    object-fit: cover;
    border-radius: 10px;
}

.texto-aloja {
    width: 60%;
    padding: 5%;
    box-sizing: border-box;
}
.texto-aloja h1{
    font-size: 2rem;
    color: white;
    font-weight: bold;
}

.texto-aloja p{
    color: rgb(175, 174, 174);
    font-size: 1.1rem;
}

/*Estilos que solo se aplican a dispositivos móviles*/
@media only screen and (max-width: 765px) {
    .servicio-alojamiento {
        flex-direction: column-reverse;
    }
    .fotos-aloja {
        width: 80%;
        margin: 30px 0;
        align-items: start;
    }
    .texto-aloja {
        width: 100%;
        padding: 0 10%;
        box-sizing: border-box;
    }
    .fotos-aloja img:first-child {
        position: relative;
        width: 50%;
        height: 200px;
        box-sizing: border-box;
        object-fit: cover;
        margin-bottom: 10px;
        border-radius: 10px;
    }
    
    .fotos-aloja img:last-child {
        position: relative;
        margin-left: 50%;
        width: 50%;
        height: 200px;
        box-sizing: border-box;
        object-fit: cover;
        border-radius: 10px;
    }
}