.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    
}


.hotel-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(70, 70, 70, 0.5);
    margin: 15px;
    padding: 15px;
    width: 400px;
    height: 450px; /* Altura fixa para os cartões */
    text-align: center;
    box-sizing: border-box; /* Inclui padding e borda no cálculo da largura */
}
.hotel-card h2{
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #007bff;
}
.hotel-card p {
    font-size: 1rem;
}

.hotel-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
    transition: transform 0.2s;
    transition: all 0.3s ease;
}

.hotel-image {
    background: #007bff61;
    padding: 2px;
    width: auto;
    height: 8rem;
    border-radius: 10px;
    object-fit: contain;
}

.search-icon {
    
    width: 1rem;
    height: 1.1rem; 
    margin-right: 0.2rem;
}

@media screen and (min-width: 768px) {
    .hotel-image:hover {
        transform: scale(1.3);
        transition: all 0.3s ease;
    }
}

.hotel-info {
    margin-top: 10px;
}

.view-button {
    background-color: #007bff;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    margin: 10px 0;
    width: 95%;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.view-button:hover {
    background: linear-gradient(to right, #0f55a6 37%, #a6a6ed 89%);
    color: #ffffff;
    font-weight: bolder;
}
#buttonTopo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ceddee;
    color: rgb(0, 0, 0);
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#buttonTopo i {
    font-size: 18px; /* Tamanho da seta */
}

#buttonTopo:hover {
    background-color: #0f55a6;
    background-color: #ceddee;
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #007bff;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #4896e8;
}

@media (max-width: 768px) {
    .hotel-card {
        width: 100%; /* Ajusta os cards para ocupar toda a largura em telas menores */
        height: auto;
        margin: 10px 0; /* Margem vertical para espaçamento entre os cartões */
    }

    .hotel-image {
        height: auto; /* Ajusta a altura da imagem em telas menores */
    }

    .hotel-card p {
        font-size: 1rem; /* Tamanho da fonte menor em telas menores */
    }
}
