body {
    background-color: #F5F5F5;
    font-family: "Roboto", sans-serif;
}

.home-page {
    background-color: #F0F0F0;
}

.home-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 75vh;
}

.image-pointer{
    cursor: pointer;
}


.logo-container {
    text-align: center;
    height: 80%;
}

img.img-fluid {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.link-container {
    margin-top: 20px;
}

.imoveis-link {
    text-decoration: none;
    color: #363636;
    font-size: 2em;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #363636;
    text-decoration-thickness: 2px;
}

.card-slideHome {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.card-slideHome img.img-fluid {
    width: 100%;
    height: auto;
}

.image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.4s ease-in-out;
}

.image-container:hover {
    background-color: #363636;
}

.img-effect {
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.img-effect:hover {
    opacity: 0.9;
    transform: scale(1.01);
}

/* Estilos padrão para telas maiores */
.titulo-subtitulo-container {
    background-color: #363636;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    height: 15vh;
}

.logo-base{
    background-color: #363636;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 15vh;

}

.titulo-home {
    color: #FFD700;
    font-size: 2.0em;
    text-decoration: underline;
    text-decoration-color: #FFD700;
    text-decoration-thickness: 2px;
}

.subtitulo-home {
    color: white;
    font-size: 1.3em;
}

.link-none {
    text-decoration: none;
}

/* Personalize o card-header */
.custom-card-header {
    background-color: #363636;
    color: #FFD700;
    font-size: 1.2 em !important;
    padding: 6px;
}

/* Personalize o card-body */
.custom-card-body {
    background-color: #363636;
    padding: 10px;
}

.table-infos{
    font-size: 1.0em;
    font-weight: bold;
    font-family: "Arial", sans-serif;
}

.table-infos td:first-child {
    width: 60%;
}

.table-infos td:nth-child(2) {
    width: 40%;
}

/* Tela Imoveis*/
.img-imovel-tela {
    position: relative;
    margin: 0 auto;
    width: auto;
    height: 230px;
}

.img-imovel-tela2 {
    height: 300px;
    cursor: pointer;
}

.card-imoveis {
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

card-imoveis:hover {
    opacity: 0.9;
    transform: scale(1.01);
}


.pagina-imoveis0 {
    font-size: 2em;
    font-weight: bold;
    color: gray;
}

.pagina-imoveis {
    font-size: 2em;
    font-weight: bold;
    color: #FF4500;
}

.pagina-imoveis2 {
    font-size: 2em;
    font-weight: bold;
    color: #008B8B;
}

.pagina-imoveis-1 {
    font-size: 1.2em;
    font-weight: bold;
}

.imovel-vendido{
    text-decoration: line-through;
}

.carousel-item {
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    height: 600px;
    width: auto;
    display: block;
    margin: auto;
}

.border-imagem {
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
    margin: 5px;
    margin-left: 10px;
    color: #800000;
    background-color: white;
}

/* Ajusta o tamanho das setas do carrossel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 2em;
    height: 2em;
    filter: invert(53%) sepia(40%) saturate(3642%) hue-rotate(245deg) brightness(298%) contrast(620%);
}

.carousel-control-prev,
.carousel-control-next {
    font-size: 2em;
    color: green;
}

.cabecalho {
    bottom: 0;
    width: 100%;
    color: white;
    background-color: #363636;
}

.rodape {
    bottom: 0;
    width: 100%;
    color: white;
    background-color: #363636;
}

/* Estilos para telas menores (como smartphones) */
@media (max-width: 768px) {
    .img-mobile {
        max-width: 100%;
        height: auto;
    }

    .titulo-home {
        font-size: 2em;
        text-align: center;
    }

    .subtitulo-home {
        font-size: 1em;
        text-align: center;
        margin-left: 0;
    }

    .table-infos {
        font-size: 0.85em;
    }

    .rodape {
        height: auto;
    }
}