﻿.title {
    font-weight: 600;
    font-size: 25px;
}

#lista-de-imoveis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.title.associe {
    margin-left: 4px;
}

.subtitle {
    font-weight: 600;
    max-width: 450px;
    text-transform: uppercase;
    font-size: 53px;
    line-height: 50px;
    color: var(--secondary-color);
}


.containeru {
    width: 100%;
    min-height: 55vh;
    padding: 40px 30px;
}

    .containeru .topic {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .containeru .content {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .containeru .content-menu {
        width: 30%;
        position: relative;
    }

.content-menu h4 {
    font-size: 20px;
    margin: 0 0 20px;
}

.containeru .content .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .containeru .content .list li {
        height: 50px;
        display: flex;
        align-items: center;
        cursor: pointer;
        padding-left: 25px;
        transition: all 0.5s ease;
        color: #333;
        z-index: 12;
        border-radius: 12px;
    }

.content .fav-contentu {
    width: 80%;
    height: 100%;
    padding: 0 20px;
}

.content .fav-count {
    padding: 20px 30px;
    background: var(--primary-color);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.content .fav-result {
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

    .content .fav-result span {
        font-size: 16px;
    }

    .content .fav-result i {
        font-size: 18px;
    }


.content .fav-count p,
.content .fav-count span,
.content .fav-count i {
    color: white;
}

.content .fav-count i {
    font-size: 18px;
}


.containeru .content .list li:hover a {
    color: var(--primary-color);
}

.containeru .content .list li:hover {
    background: #ededed;
}

.containeru .content .list li.active a {
    color: var(--primary-color);
    font-weight: bolder;
}

.list .line {
    width: 90%;
    height: 1px !important;
    background: #dbdbdb52;
    position: relative;
    left: 15px;
}

.list li a {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    height: 100%;
    color: dimgrey;
}

    .list li a i {
        font-size: 20px;
    }

.content .text-content {
    width: 80%;
    height: 100%;
    border-radius: 12px;
}

.content .text {
    display: none;
}

    .content .text .title {
        font-size: 25px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .content .text p {
        /*width: 75%;*/
    }

.content .text-content .home {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.title-img {
    margin-top: 30px;
}

    .title-img svg {
        width: 90%;
        height: fit-content;
        margin-top: 5px;
        position: relative;
        right: 15px;
    }

@media (max-width: 1080px) {
    .containeru {
        min-height: 55vh;
        padding: 35px 20px;
    }

        .containeru .content-menu {
            width: 40%;
        }

    .content .text .title {
        font-size: 20px;
    }

    .content .text p {
        text-align: center;
    }

    .containeru .content {
        gap: 20px;
    }

    .list .line {
        width: 100%;
        left: 0;
    }

    .containeru .content .list {
        gap: 3px;
    }

    .content .text-content {
        width: 100%;
    }

    .containeru .topic {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .title-img svg {
        right: 0px;
    }
}

@media (max-width: 768px) {
    .containeru .content .list {
        display: none;
    }

    .content .fav-result span {
        font-size: 14px;
    }

    .content-menu h4 {
        margin: 15px 10px 0;
    }

    .content .fav-contentu {
        width: 100%;
        padding: 0 10px;
    }

    .containeru .content-menu {
        width: 50%;
        position: relative;
    }

    .containeru {
        min-height: 55vh;
        padding: 20px;
    }

    .content .text-content {
        padding: 25px 0px;
    }

    .containeru .content-menu {
        width: 100%;
        position: relative;
    }

    .content .text p br {
        display: none;
    }

    .containeru .content {
        gap: 20px;
        flex-direction: column;
    }
}
