/* ESTILOS GERAIS DA SEÇÃO */
.secao-destaques-locacao {
    padding: 80px 0;
    background-color: #f9fafc;
}

.cabecalho-secao {
    margin-bottom: 50px;
}

.cabecalho-secao__titulo {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cabecalho-secao__titulo-principal {
    display: block;
}

.cabecalho-secao__titulo-sublinhado {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #4a5568;
    margin-top: 8px;
}

.cabecalho-secao__descricao {
    font-size: 1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ESTILOS DOS CARDS MODERNOS */
.padding-card {
    padding: 10px;
    min-height: 555px;
    max-height: 555px;
    height: auto;
}

.card-imovel-moderno {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid #e2e8f0;
}

.card-imovel-moderno:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e0;
}

/* TAG DE STATUS */
.card-imovel__tag-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #38a169;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* CONTAINER DA IMAGEM */
.card-imovel__imagem-container {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.card-imovel__imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-imovel__overlay-imagem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-imovel-moderno:hover .card-imovel__overlay-imagem {
    opacity: 1;
}

.card-imovel-moderno:hover .card-imovel__imagem {
    transform: scale(1.03);
}

/* TAG MOBILIADO */
.card-imovel__tag-mobiliado {
    background-color: #edf2f7;
    color: #2d3748;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-imovel__tag-mobiliado i {
    font-size: 0.9rem;
}

/* CORPO DO CARD */
.card-imovel__corpo {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* INFORMAÇÕES DE LOCALIZAÇÃO */
.card-imovel__info-local {
    margin-bottom: 15px;
}

.card-imovel__bairro {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.3;
}

.card-imovel__cidade {
    margin: 0;
    font-size: 0.85rem;
    color: #718096;
    line-height: 1.4;
}

/* DETALHES DO IMÓVEL */
.card-imovel__detalhes {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
}

.card-imovel__tipo {
    display: inline-block;
    color: var(--cor-site-1);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0px;
}

.card-imovel__caracteristicas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card-imovel__caracteristica {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #4a5568;
}

.card-imovel__caracteristica svg {
    color: #719675;
    font-size: 0.9rem;
}

/* VALORES */

.card-imovel__valor-principal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.card-imovel__valor-adicional {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.card-imovel__valor-label {
    font-size: 0.85rem;
    color: #718096;
}

.card-imovel__valor {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
}

.card-imovel__valor-principal .card-imovel__valor {
    color: var(--cor-site-1);
    font-size: 1.3rem;
}

/* AÇÕES */
.card-imovel__acoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card-imovel__botao-detalhes {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: var(--cor-site-1);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-imovel__botao-detalhes:hover {
    background-color: var(--cor-site-2);
    transform: translateY(-2px);
}

.card-imovel__botao-detalhes i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.card-imovel__botao-detalhes:hover i {
    transform: translateX(3px);
}

.card-imovel__acoes-rapidas {
    display: flex;
    gap: 10px;
}

.card-imovel__acao {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cor-site-2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: none;
}
.card-imovel__acao.visualizado{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 27px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cor-site-2);
    transition: all 0.3s ease;
    border: none;
}
.card-imovel__acao.favorito.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--cor-site-1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.card-imovel__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 5px;
}
.card-imovel__acao:hover {
    background-color: #e2e8f0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    color: var(--cor-site-3);
    transform: translateY(-2px);
}

.card-imovel__acao svg {
    font-size: 0.9rem;
}

/* CÓDIGO DO IMÓVEL */
.card-imovel__codigo {
    padding: 10px 20px;
    background-color: #f8fafc;
    border-top: 1px solid #edf2f7;
    font-size: 0.75rem;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .secao-destaques-locacao {
        padding: 60px 0;
    }
    
    .cabecalho-secao__titulo {
        font-size: 1.8rem;
    }
    
    .cabecalho-secao__titulo-sublinhado {
        font-size: 1rem;
    }
    
    .padding-card {
        padding: 8px;
    }
    
    .card-imovel__corpo {
        padding: 16px;
    }
    
    .card-imovel__bairro {
        font-size: 1rem;
    }
    
    .card-imovel__valor-principal .card-imovel__valor {
        font-size: 1.1rem;
    }
}

/* ESTILOS DO CARROSSEL (MANTIDOS COMO ESTAVAM) */
.carrossel-imoveis {
    position: relative;
    padding: 0px;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 30px !important;
    height: 27px !important;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
    background: var(--cor-site-3);
    color: white;
    outline: none;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}

.slick-prev::before,
.slick-next::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 30px !important;
    line-height: 1;
    opacity: 1;
    color: var(--cor-site-3) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: color 0.3s ease;
}

.slick-prev:hover::before,
.slick-next:hover::before {
    color: var(--cor-site-3);
}

.slick-prev::before {
    content: "\f104";
}

.slick-next::before {
    content: "\f105";
}

@media (max-width: 991px) {
    .carrossel-imoveis {
        padding: 0 20px;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }
}

@media (min-width: 1600px) {
  .resultado .padding-card {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 1599px) and (min-width: 1321px) {
  .resultado .padding-card {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 1320px) and (min-width: 601px) {
  .resultado .padding-card {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 600px) {
  .resultado .padding-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}