


html, body {
    overflow-x: hidden; /* Remove a rolagem horizontal */
}

/* Cores Primárias */
.bg-primary {
    background-color: #2360A6 !important;
}

.btn-orange {
    background-color: #D4691C;
    color: #fff;
}

.btn-orange:hover {
    background-color: #c15719;
}

/* Banner Personalizado */
.banner {
    background: url('img/banner.jpg') no-repeat center center/cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.banner h1, .banner p {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

/* Cards de Loteamentos */
.card img {
    height: 200px;
    object-fit: cover;
}




.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px); /* Efeito de hover */
}

.card-img-top {
    height: 200px;
    object-fit: cover; /* Ajuste para manter as imagens proporcionais */
}

.btn {
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
}



.text-primary {
    color: #2360A6 !important;
}

.text-orange {
    color: #D4691C !important;
}

footer {
    background-color: #f8f9fa;
}

footer a {
    color: #333;
}

footer a:hover {
    color: #2360A6;
}

footer .btn-primary {
    background-color: #2360A6;
    border: none;
}

footer .btn-primary:hover {
    background-color: #1B4A78;
}

/* Estilização moderna e profissional para ícones de contato */
.inlot-logo {
    max-width: 150px; /* Ajuste o tamanho conforme necessário */
}

.social-icon {
    font-size: 24px;
    color: #2360A6; /* Cor principal do seu site */
    transition: color 0.3s ease, transform 0.3s ease;
    margin-right: 10px;
}

.social-icon:hover {
    color: #1B4A78; /* Cor de hover */
    transform: scale(1.2); /* Efeito de hover */
}

.bi-telephone-fill,
.bi-envelope-fill {
    font-size: 18px;
    color: #2360A6;
    margin-right: 8px;
    vertical-align: middle; /* Centraliza verticalmente com o texto */
}

/* Para mobile */
@media (max-width: 768px) {
    .inlot-logo {
        max-width: 120px;
        margin-bottom: 10px;
    }

    .social-icon {
        font-size: 20px;
    }

    .bi-telephone-fill,
    .bi-envelope-fill {
        font-size: 16px;
    }
}





/* Estilos para modernizar o design */
.list-group-item.active {
    background-color: #D4691C;
    border-color: #D4691C;
}

.text-primary {
    color: #2360A6 !important;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

iframe {
    border-radius: 8px;
}



/* Personalizações para o layout */
.text-orange {
    color: #D4691C;
}

.card img {
    object-fit: cover;
    height: 250px;
}

.btn-primary {
    background-color: #2360A6;
    border: none;
}

.btn-primary:hover {
    background-color: #1B4A78;
}

.bg-primary {
    background-color: #2360A6 !important;
}





/* Seção do título */

h1.display-5 {
    font-size: 1px; /* Ajusta o tamanho da fonte */
    margin-bottom: 10px; /* Reduz a margem inferior */
}

.divider {
    width: 40px; /* Diminuir o comprimento da barra laranja */
    height: 3px; /* Ajuste da altura da barra */
    background-color: #D4691C; /* Cor laranja da barra */
    margin: 0 auto; /* Centralizar a barra */
}
/* Estilo da seção de cabeçalho */
.header-section {
    background: url('caminho_para_imagem.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
}

.header-section h1 {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.header-section p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.header-arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #fff;
}

/* Estilo do formulário */
.form-container {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: bold;
}

/* Botão de envio */
.submit-btn {
    background-color: #D4691C;
    color: white;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #B8551A;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-section {
        height: 300px;
    }

    .header-section h1 {
        font-size: 2.5rem;
    }

    .header-section p {
        font-size: 1.2rem;
    }
}


/* Estilos para os botões de filtro */
.btn-filter {
    background-color: #D4691C;
    color: white;
    margin: 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-filter.active {
    background-color: #2270AA;
}

.btn-filter:hover {
    background-color: #B8551A;
}

/* Estilos para os cards de empreendimentos */
.empreendimento-card {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.empreendimento-card.hidden {
    display: none;
    opacity: 0;
    transform: scale(0.9);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-title {
    font-weight: bold;
}

/* Badge de status do empreendimento */
.badge-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

/* Ajuste de layout e espaçamento para responsividade */
@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
}


.social-icons {
    text-align: center; /* Centraliza o ícone */
    margin: 20px 0;
}

.social-icons a {
    font-size: 50px; /* Tamanho maior para o ícone */
    color: #D4691C; /* Cor padrão do ícone */
    margin: 0 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #2270AA; /* Cor ao passar o mouse */
    transform: scale(1.2); /* Aumenta o tamanho ao passar o mouse */
}

.social-icons i {
    transition: transform 0.3s ease;
}




/* Estilização do botão de WhatsApp */
#whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366; /* Cor verde do WhatsApp */
    border-radius: 50%; /* Tornar o botão circular */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

#whatsapp-chat:hover {
    transform: scale(1.1); /* Efeito hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3); /* Aumentar o efeito de sombra ao passar o mouse */
}

/* Ícone do WhatsApp */
.whatsapp-icon {
    font-size: 35px;
    color: white;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    #whatsapp-chat {
        bottom: 10px;
        right: 10px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        font-size: 28px;
    }
}



/* Estilização clean e moderna do modal */
.modal-header {
    padding: 0.5rem;
    border-bottom: none;
}

.btn-close {
    font-size: 1.5rem;
    background: transparent;
    border: none;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
    transform: scale(1.2);
    transition: transform 0.2s, opacity 0.2s;
}

.modal-body {
    padding: 0;
}

/* Estilização do carrossel */
.carousel-item img {
    max-height: 800px;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Hover suave nas setas do carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-item img {
        max-height: 300px;
    }
}
/* Botão estilizado sobre a imagem */
/* Centralizar e estilizar o botão */
.carousel-caption {
    position: absolute;
    bottom: -15%;
    left: 45%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-weight: bold;
}


.btn-custom {
    background-color: white !important; /* Forçar a cor branca */
    color: #FF7F50 !important; /* Cor do texto coral */
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: white !important; /* Mantém a cor de fundo branca */
    color: #E67347 !important; /* Altera a cor do texto no hover */
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}


/* Seta animada indicando o botão */
.arrow-indicator {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    color: #FF7F50; /* A mesma cor do botão */
    animation: bounce 1s infinite;
}

/* Animação de pular */
@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -20%);
    }
    50% {
        transform: translate(-50%, 0);
    }
}

/* Ajustes responsivos para o botão */
@media (max-width: 768px) {
    .btn-custom {
        padding: 10px 20px;
        font-size: 16px;
    }

    .arrow-indicator {
        font-size: 24px;
        top: -40px;
    }
}
/* Seta animada indicando o botão */
.arrow-indicator {
    position: absolute;
    top: -80px; /* Seta mais distante do botão */
    left: 50%;
    transform: translateX(-50%);
    font-size: 50px; /* Aumentar tamanho da seta */
    color: #FF7F50; /* A mesma cor do botão */
    animation: bounce 1s infinite;
    font-weight: bold;
}












/* Centralizar e estilizar o botão para o site da CUB */
.cub-carousel-caption {
    position: absolute;
    top: 85%;
    bottom: 5%; /* Ajustado para estar mais abaixo */
    right: 70%; /* Centralizar o botão */
    transform: translateX(0%);
    text-align: center;
    color: #fff;
    font-weight: bold;
}

/* Estilo personalizado para o botão do carrossel da CUB */
.cub-btn-custom {
    background-color: white !important; /* Mantém a cor de fundo branca */
    color: #E67347 !important; /* Altera a cor do texto no hover */
    transform: scale(1.1);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

.cub-btn-custom:hover {
    background-color: white !important; /* Fundo branco no hover */
    color: #E67347 !important; /* Cor do texto coral mais escuro no hover */
    transform: scale(1.1); /* Aumenta ligeiramente o tamanho no hover */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.4);
}

/* Garantindo que o estilo só seja aplicado às imagens da CUB */
.cub-carousel-img {
    max-height: 500px;
    object-fit: cover;
}

/* Ajustes responsivos para o botão da CUB */
@media (max-width: 768px) {
    .cub-btn-custom {
        padding: 10px 20px;
        font-size: 16px;
    }

    .cub-carousel-caption {
        font-size: 14px;
        bottom: 10%; /* Ajustar a posição para telas menores */
    }
}
