/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

:root {
    --vermelho-principal: #bb0000;
    --laranja-principal: #e99d06;
    --laranja-principal-rgba: rgb(233, 157, 6);
    --preto-principal: #262525;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn-primary {
    background-color: var(--vermelho-principal);
    border-color: var(--vermelho-principal);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--vermelho-principal);
    border-color: var(--vermelho-principal);
}

/* Header - Mobile First */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    max-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* as barrinhas */
.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--vermelho-principal);
    margin: 2px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* estado ativo — vira o “X” */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn-mobile-account {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 32px;
    text-decoration: none;
    color: var(--vermelho-principal);
}

#text-desktop-user-area {
    display: none;
}

.nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -100vw;
    width: 100%;
    height: calc(100dvh - 100%);
    background-color: rgba(0, 0, 0, 0);
    transition: left 0.5s ease, background-color 0.1s ease 0.2s;
}

.nav.active {
    display: flex;
    flex-direction: column;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: left 0.5s ease, background-color 0.3s ease 0.5s;
}

.nav-list {
    list-style: none;
    padding: 16px 0;
    margin-bottom: 0;
    background: #fff;
    flex: 1;
}

.nav-list li {
    padding: 8px 16px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list a i {
    font-size: 24px;
}

.user-area {
    padding: 16px;
    border-top: 1px solid #eee;
    background: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.login-btn {
    background: var(--vermelho-principal);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
}

@media (min-width: 360px) {
    .nav-list,
    .user-area {
        width: 80%;
    }
}

@media (min-width: 576px) {
    .nav-list,
    .user-area {
        width: 50%;
    }
}

@media (min-width: 1199px) {
    .mobile-menu-toggle {
        display: none;
    }

    .nav {
        display: flex;
        position: static;
        flex-direction: row;
        width: auto;
        background: none;
        box-shadow: none;
        align-items: center;
        gap: 32px;
    }

    .nav-list {
        display: flex;
        padding: 0;
        margin-right: 20px;
    }

    .nav-list li {
        padding: 0 12px;
        display: flex;
        align-items: center;
        color: var(--vermelho-principal);
        border-right: 2px solid var(--vermelho-principal);
    }

    .nav-list li a {
        color: var(--vermelho-principal);
    }

    .nav-list li#last-item-li-contato {
        border: none;
    }

    .nav-list a i {
        display: none;
    }

    .nav-list .desktop-none {
        display: none;
    }

    .user-area {
        display: none;
    }

    .btn-mobile-account {
        display: flex;
        align-items: center;
        position: relative;
        width: 170px;
    }

    #text-desktop-user-area {
        display: block;
        font-size: 16px;
        border: 2px solid var(--vermelho-principal);
        padding: 2px 20px;
        padding-right: 10px;
        border-radius: 10px;
    }

    #text-desktop-user-area p {
        margin-bottom: 0;
    }

    .btn-mobile-account i {
        position: absolute;
        top: -43%;
        right: 85%;
        font-size: 39px;
    }

    .btn-mobile-account i::before {
        background-color: #fff;
        border-radius: 50%;
    }

    .header-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-content .logo {
        order: 1;
        margin-right: auto;
    }

    .header-content .d-flex {
        order: 3;
    }

    .header-content nav {
        order: 2;
        margin-left: auto;
    }
}

/* Hero Section - Mobile First */
.hero {
    margin-top: 70px;
    padding: 24px 0;
    padding-top: 8px;
    background-image: url(../images/marca-dagua.png);
    background-size: 500px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-text {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

.hero-text h2 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    margin-top: 25px;
}

.action-buttons {
    display: flex;
    gap: 0px;
    width: 90%;
    margin: auto;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-radio {
    position: relative;
    cursor: pointer;
    width: 100%;
    text-align: center;
}

.btn-radio input {
    display: none;
}

.btn-radio span {
    display: inline-block;
    padding: 6px 8px;
    border: 2px solid var(--vermelho-principal);
    border-radius: 50px;
    color: var(--vermelho-principal);
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 20px;
    line-height: 20px;
    width: 100%;
    -webkit-box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
}

.btn-radio:nth-child(1) span {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-radio:nth-child(2) span {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-radio input:checked + span {
    background-color: var(--vermelho-principal);
    color: white;
}

.btn-comprar {
    background: var(--vermelho-principal);
    color: white;
}

.btn-alugar {
    background: #fff;
    color: #333;
    border: 2px solid #ddd;
}

.btn-comprar.active,
.btn-alugar.active {
    transform: scale(1.05);
}

.property-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    row-gap: 20px;
    margin-bottom: 16px;
}

.property-btn,
button.search {
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 45px;
    border: 1px solid var(--laranja-principal);
    border-radius: 8px;
    width: 100%;
    color: var(--preto-principal);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    -webkit-box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.1);
    background: #fff;
}

button.search {
    padding-top: 5px;
    padding-bottom: 5px;
}

.property-btn.active {
    background-color: var(--laranja-principal);
    color: #fff;
}

.property-btn .icon,
button.search .icon {
    background-color: var(--laranja-principal);
    position: absolute;
    padding: 8px;
    border-radius: 16px;
    left: -5px;
    border: 2px solid white;
}

button.search.full-width,
select.full-width {
    grid-column: 1 / -1;
}

.property-btn .icon img {
    width: 24px;
}

button.search .icon i {
    width: 24px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    color: #fff;
}

.property-btn input,
button.search input {
    display: none;
}

.property-btn input:checked + .icon,
.property-btn input:checked ~ span,
.property-btn input:checked ~ * {
    color: white;
}

.property-btn input:checked + span,
.property-btn input:checked ~ span {
    color: white;
}

.buscar-btn {
    width: 100%;
    padding: 10px;
    background: var(--vermelho-principal);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 20px;
}

.offcanvas.offcanvas-bottom {
    --bs-offcanvas-height: 80dvh;
}

.input-pesquisar-offcanvas,
.input-pesquisar-offcanvas:focus-visible {
    border: none;
    outline: none;
}

.offcanvas.offcanvas-bottom .list-group-item-action.active,
.offcanvas.offcanvas-start .list-group-item-action.active {
    background-color: var(--vermelho-principal);
    border-color: var(--vermelho-principal);
    outline: var(--vermelho-principal);
}

.offcanvas.offcanvas-bottom .placeholder,
.offcanvas.offcanvas-start .placeholder {
    background-color: var(--preto-principal);
}

@media (min-width: 340px) {
    .property-btn,
    button.search {
        font-size: 16px;
    }
}

@media (min-width: 576px) {
    .hero-actions {
        width: 80%;
        margin: auto;
        margin-top: 25px;
    }

    .property-btn,
    button.search {
        font-size: 18px;
    }

    .hero-image {
        width: 80%;
        margin: auto;
    }
}

@media (min-width: 768px) {
    .property-btn,
    button.search {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .hero-actions {
        width: 85%;
        margin: unset;
        margin-right: auto;
    }

    .hero-image {
        width: 100%;
    }

    .action-buttons {
        width: 60%;
        margin-left: unset;
        margin-right: auto;
        justify-content: start;
    }

    .btn-radio {
        width: unset;
    }

    .btn-radio span {
        font-size: 30px;
        border-radius: 12px;
        padding: 8px 8px;
    }

    .property-btn .icon {
        width: 45px;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero {
        padding-top: 24px;
        background-size: 1000px;
    }
}

/* Modal - Solicitação */
button.solicitar-imovel {
    width: 100%;
    margin-top: 5px;
    text-decoration: underline;
    color: var(--vermelho-principal);
}

button.solicitar-imovel:active,
button.btn-close:active,
button.btn-close:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: var(--vermelho-principal);
}

#modal-solicitar-imovel .modal-header img {
    width: 160px;
}

#modal-solicitar-imovel .action-buttons {
    margin: auto;
    width: 80%;
    justify-content: center;
    margin-bottom: 32px;
}

#modal-solicitar-imovel .content-text {
    text-align: center;
}

#modal-solicitar-imovel .content-text h3,
#modal-solicitar-imovel .content-text h6 {
    text-align: center;
    color: var(--preto-principal);
}

#modal-solicitar-imovel .content-text h6 {
    color: #666563;
    font-weight: 400;
}

#modal-solicitar-imovel .form-control,
#modal-solicitar-imovel .form-select {
    border-color: var(--laranja-principal);
    border-width: 2px;
}

#modal-solicitar-imovel .form-control:focus,
#modal-solicitar-imovel .form-select:focus {
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--laranja-principal), transparent 75%);
}

#modal-solicitar-imovel .input-group-text {
    border-color: var(--laranja-principal);
    border-width: 2px;
    background-color: color-mix(
        in srgb,
        var(--laranja-principal),
        transparent 95%
    );
}

#modal-solicitar-imovel hr {
    color: var(--vermelho-principal);
    opacity: 1;
    width: 164px;
    max-width: 100%;
    margin: 10px auto;
    height: 5px;
    border: 2px solid;
    background: var(--vermelho-principal);
    border-radius: 8px;
}

#modal-solicitar-imovel .mensagem-gray {
    background-color: #f1f1f1;
    font-size: 12px;
    margin: 0;
}

#modal-solicitar-imovel .modal-footer .btn-primary {
    background: var(--vermelho-principal);
    border: none;
    width: 100%;
}

#modal-solicitar-imovel .form-check-input {
    border-color: var(--vermelho-principal);
}

#modal-solicitar-imovel .form-check-input:checked {
    background-color: var(--vermelho-principal);
    border-color: var(--vermelho-principal);
}

#modal-solicitar-imovel .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--laranja-principal), transparent 75%);
}

@media (min-width: 992px) {
    #modal-solicitar-imovel .container-main {
        width: 90%;
        margin: auto;
    }

    #modal-solicitar-imovel .btn-radio span {
        font-size: 24px;
        padding: 5px 8px;
    }
}

/* Sections - Mobile First */
.section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

/* Categories */
.categories {
    padding: 48px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
}

.category-card:hover {
    transform: scale(1.05) !important;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 24px 16px 16px;
}

.category-overlay h3 {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

@media (min-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Properties */
.featured-sales,
.featured-rentals {
    padding: 48px 0;
}

.featured-sales .splide__pagination,
.featured-rentals .splide__pagination,
.news .splide__pagination {
    bottom: -0.5em;
}

.featured-sales .splide__pagination .splide__pagination__page.is-active,
.featured-rentals .splide__pagination .splide__pagination__page.is-active,
.news .splide__pagination .splide__pagination__page.is-active {
    background-color: #bb0000;
    opacity: 1;
}

.property-info-icons {
    font-size: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.property-info-icons .box-info-imovel {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.property-info-icons .box-info-imovel .box-icon {
    height: 40px;
    width: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border: 1px solid #fff;
    border-radius: 50px;
}

.property-info-icons .box-info-imovel .box-icon img {
    width: 20px;
}

.properties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.property-card {
    background: white;
    border-radius: 0px;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.property-card:hover {
    transform: translateY(-4px);
}

.property-image {
    position: relative;
    height: 200px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2px 12px;
    padding-right: 22px;
    border-top-right-radius: 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    background: var(--laranja-principal);
}

.property-badge.sale {
    background: var(--vermelho-principal);
}

.property-badge.rental {
    background: var(--laranja-principal);
}

.property-info {
    padding: 16px;
    background-color: var(--vermelho-principal);
}

.property-info h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    color: #fff;
    text-overflow: ellipsis;
}

.property-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.property-price {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.details-btn {
    background: #fff;
    color: var(--vermelho-principal);
    border: 2px solid var(--vermelho-principal);
    padding: 2px 0px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* .details-btn:hover {
    background: var(--vermelho-principal);
    color: white;
} */

@media (min-width: 992px) {
    .property-badge {
        font-size: 14px;
    }

    .content-imoveis-page .property-info-icons {
        zoom: 0.8;
    }
}

@media (min-width: 1400px) {
    .property-badge {
        font-size: 16px;
    }

    .content-imoveis-page .property-info-icons {
        zoom: 0.8;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--vermelho-principal) 0%,
        var(--vermelho-principal) 100%
    );
    color: white;
    padding: 48px 0;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    text-align: center;
}

.cta-text h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-text .highlight {
    color: #f39c12;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 12px;
}

/* News */
.news {
    padding: 48px 0;
}

.news .container {
    padding: 0;
    max-width: 1200px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-image {
    height: 250px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 16px;
}

.news-badge {
    color: var(--preto-principal);
    border-radius: 4px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-date {
    color: #666;
    font-size: 14px;
}

.news-card .btn {
    background-color: var(--vermelho-principal);
    color: #fff;
}

/* Imoveis page */
.content-imoveis-page {
    margin-top: 70px;
}

.content-imoveis-page .container {
    max-width: 1500px;
}

.content-imoveis-page #filtros-imoveis {
    zoom: 0.9;
    background-color: #f0efef;
    border: 5px solid #e3e3e3;
    border-radius: 16px;
    padding: 15px;
    position: sticky;
    top: 80px;
    margin-bottom: 20px;
}

.content-imoveis-page .btn-list-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--vermelho-principal);
    color: var(--vermelho-principal);
    transition: all 0.2s ease;
    font-size: 23px;
    height: 45px;
    background-color: #fff;
    -webkit-box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 5px 15px 1px rgba(0, 0, 0, 0.15);
    display: none;
}

.content-imoveis-page .btn-list-grid:hover {
    transition: all 0.2s ease;
    scale: 1.1;
}

.content-imoveis-page .btn-radio span {
    background-color: #fff;
}

.content-imoveis-page .content-title h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--preto-principal);
}

.content-imoveis-page #filtros-imoveis .property-btn .icon {
    padding: 5px;
    border-radius: 10px;
}

.content-imoveis-page #filtros-imoveis .property-btn {
    padding-left: 33px;
}

.content-imoveis-page .property-btn .icon img {
    width: 20px;
}

.content-imoveis-page .filtros-especificos {
    margin-bottom: 10px;
    margin-top: 30px;
}

.content-imoveis-page .filtros-especificos h3 {
    margin-bottom: 0;
    color: var(--laranja-principal);
    font-weight: 700;
}

.content-imoveis-page .filtros-especificos span {
    background-color: var(--laranja-principal);
    font-weight: 600;
    cursor: pointer;
    padding: 8px 6px;
    border-radius: 4px;
}

.content-imoveis-page .filtros-especificos span img {
    width: 26px;
}

.content-imoveis-page .filtros-especificos .radios-inputs-filtro {
    margin-top: 10px;
}

.content-imoveis-page .filtros-especificos .form-check-label {
    color: var(--preto-principal);
    font-weight: 600;
}

.content-imoveis-page .filtros-especificos .form-check-input:checked {
    background-color: var(--laranja-principal);
    border-color: var(--laranja-principal);
}

.content-imoveis-page .filtros-especificos .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem
        color-mix(in srgb, var(--laranja-principal), transparent 75%);
}

.content-imoveis-page .property-item-list {
    margin-bottom: 40px;
}

.content-imoveis-page .property-item-list .img-section {
    aspect-ratio: 1/1;
    max-height: 325px;
    border-radius: 78px;
    border-bottom-right-radius: 0px;
    overflow: hidden;
    border: 2px solid var(--vermelho-principal);
}

.content-imoveis-page .card-list {
    display: flex;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
    max-width: 950px;
    width: 100%;
    position: relative;
    margin-bottom: 40px;
    border: 2px solid #d1cbcb;
    padding: 0;
    zoom: 0.8;
}

.content-imoveis-page .card-image-list {
    position: relative;
    overflow: hidden;
    width: 300px;
    height: 300px;
    aspect-ratio: 1 / 1;
    scale: 1.15;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    box-shadow: 6px 2px 8px 0px rgba(0, 0, 0, 0.1);
}

.content-imoveis-page .card-image-list img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.content-imoveis-page .card-content-list {
    flex: 1;
    padding: 20px 20px;
    padding-left: 40px;
    position: relative;
}

.content-imoveis-page .badge-list {
    display: inline-block;
    padding: 4px 8px;
    border: 2px solid #fff;
    border-radius: 12px;
    color: #fff;
    background-color: var(--laranja-principal);
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 26px;
    line-height: 20px;
    -webkit-box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
}

.content-imoveis-page .heart-list {
    position: absolute;
    top: 35px;
    right: 40px;
    width: 35px;
    height: 35px;
    background: #ff0000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.content-imoveis-page .heart-list:hover {
    transform: scale(1.1);
}

.content-imoveis-page .heart-list::before {
    content: "❤";
    color: white;
    font-size: 18px;
}

.content-imoveis-page .location-list {
    color: var(--preto-principal);
    font-size: 15px;
    margin-bottom: 0px;
    font-weight: 600;
}

.content-imoveis-page .title-list {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0px;
    line-height: 1;
}

.content-imoveis-page .address-list {
    color: var(--preto-principal);
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0px;
}

.content-imoveis-page .price-list {
    color: var(--vermelho-principal);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.content-imoveis-page .features-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.content-imoveis-page .feature-list,
.container-show-single-imovel .feature-list {
    text-align: center;
}

.content-imoveis-page .feature-icon-list,
.container-show-single-imovel .feature-icon-list {
    width: 45px;
    height: 45px;
    background-color: var(--laranja-principal);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 24px;
    padding: 8px;
}

.content-imoveis-page .feature-icon-list img,
.container-show-single-imovel .feature-icon-list img {
    width: 100%;
}

.content-imoveis-page .feature-text-list,
.container-show-single-imovel .feature-text-list {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

.content-imoveis-page .feature-value-list {
    font-weight: 600;
    color: #333;
}

.content-imoveis-page #imoveis-container-list {
    display: none;
}

@media (min-width: 360px) {
    .content-imoveis-page .property-btn .icon img {
        width: 24px;
    }

    .content-imoveis-page #filtros-imoveis .property-btn {
        padding-left: 36px;
    }

    .content-imoveis-page .filtros-especificos .form-check-label {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .content-imoveis-page .property-btn,
    .content-imoveis-page button.search {
        font-size: 16px;
    }

    .content-imoveis-page .property-btn .icon {
        width: 35px;
        height: 37px;
        font-size: 16px;
    }

    .content-imoveis-page .filtros-especificos h3 {
        font-size: 22px;
    }
}

@media (min-width: 1199px) {
    .content-imoveis-page .btn-list-grid {
        display: flex;
    }

    .content-imoveis-page .property-btn,
    .content-imoveis-page button.search {
        font-size: 20px;
    }

    .content-imoveis-page #filtros-imoveis .property-btn {
        padding-left: 45px;
    }

    .content-imoveis-page .property-btn .icon {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .content-imoveis-page #filtros-imoveis {
        padding: 35px;
        zoom: 0.6;
    }

    .content-imoveis-page .filtros-especificos h3 {
        font-size: 25px;
    }

    .content-imoveis-page .property-types {
        gap: 20px;
    }

    .content-imoveis-page .filtros-especificos .form-check-label {
        font-size: 20px;
    }

    .content-imoveis-page #imoveis-container-list {
        display: flex;
    }
}

@media (min-width: 1400px) {
    .content-imoveis-page #filtros-imoveis {
        padding: 35px;
        zoom: 0.85;
        margin-right: 20px;
    }

    .content-imoveis-page .card-list {
        zoom: 1;
    }

    .container-show-single-imovel .feature-icon-list {
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    .container-show-single-imovel .feature-text-list {
        font-size: 15px;
    }

    .container-show-single-imovel .feature-value {
        font-size: 15px;
    }
}

/* Footer */
.footer {
    color: white;
    padding: 48px 0 24px;
    padding-bottom: 0;
    background-image: url(../images/marca-dagua.png);
    background-position: right;
    background-size: 800px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo img {
    height: 55px;
    width: auto;
}

.footer-menu {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-column h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f39c12;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul a {
    color: var(--preto-principal);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column p {
    color: var(--preto-principal);
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-column p i {
    background-color: var(--laranja-principal);
    color: #fff;
    padding: 5px;
    border-radius: 8px;
}

.footer-copy {
    margin-top: 35px;
    text-align: center;
}

.footer-copy p {
    color: var(--preto-principal);
}

.footer-copy span:nth-of-type(1) {
    display: block;
}

.footer-copy span:nth-of-type(2) {
    display: none;
}

.footer-copy span:nth-of-type(3) {
    display: block;
}

.footer-copy a {
    color: var(--vermelho-principal);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-links a {
    display: inline-block;
    font-size: 20px;
    text-decoration: none;
    background-color: var(--laranja-principal);
    color: #fff;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.2);
}

.bar-red {
    background-color: var(--vermelho-principal);
    height: 10px;
}

@media (min-width: 768px) {
    .footer-column ul {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .footer-menu {
        display: flex;
        gap: 90px;
    }

    .footer-logo img {
        height: 95px;
        width: auto;
    }

    .social-links a {
        font-size: 25px;
    }

    .footer {
        background-size: 1000px;
        background-repeat: no-repeat;
        background-position: top center;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
    }

    .hero-image {
        flex: 1;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }

    .properties-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-menu {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content {
        flex-direction: row;
        text-align: left;
    }

    .cta-text {
        flex: 1;
    }

    .cta-image {
        flex: 1;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero-text h2 {
        font-size: 24px;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-menu {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-text h2 {
        font-size: 32px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}
