.sobre-hotel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    padding: 50px;
    max-width: 1200px;
    margin: auto;
}

.imagen-hotel {
    flex: 1;
}

.imagen-hotel img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px; 
}

.info-hotel {
    flex: 1;
    text-align: left;
    padding: 20px;
}

.info-hotel h2 {
    font-size: 36px;
    color: blue; 
    margin-bottom: 15px;
}

.info-hotel p {
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sobre-hotel {
        flex-direction: column;
        text-align: center;
    }

    .imagen-hotel img {
        max-height: 300px;
    }
}