/* Ajuste para o carrossel */
.carousel-item img {
    max-height: 500px;
    /* Limita a altura máxima da imagem */
    width: 100%;
    /* Garante que a imagem ocupe 100% da largura do contêiner */
    object-fit: cover;
    /* Faz a imagem cobrir o contêiner, cortando as bordas se necessário */
}

.card-amenities .list-group-item i {
    width: 25px;
}

.amenity-icon {
    color: #0d6efd;
    /* Cor azul do Bootstrap */
}

.hero-section {
    background-image: url('../images/colibri.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-content {
    z-index: 1;
    padding: 20px;
}

.card-img-container {
    height: 250px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-container {
    height: 250px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.imovel-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
}

.imovel-card:hover {
    transform: translateY(-5px);
}

.carousel-item img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}


.service-card {
    transition: transform 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
}


.card-img-container {
    height: 200px;
    overflow: hidden;
}

.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.photo-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin: 5px;
}


.card-menu {
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.card-menu:hover {
    transform: translateY(-5px);
}

.bg-dark {
    padding-top: 5px;
    /* Altura do topo */
    padding-bottom: 5px;
    /* Altura do fundo */
}