/* Estilos para a página de agradecimento de visita */

.agradecimento-visita-section {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
}

.agradecimento-titulo {
    color: #5C53A3;
    font-size: 2.2rem;
    margin-bottom: 30px;
    font-family: 'circular-bold', sans-serif;
    text-align: center;
}

.agradecimento-subtitulo {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.compartilhamento-social {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.compartilhamento-social h3.compartilhe-titulo {
    color: #e82561;
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    font-family: sans-serif; /* Fonte sem serifa */
    font-weight: 500;
}

.addtoany-container {
    text-align: center;
    margin: 20px 0;
}

/* Estilo para os botões de compartilhamento */
.a2a_kit a {
    margin: 0 5px;
}

/* Ajuste para o tamanho dos ícones */
.a2a_svg {
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    border-radius: 50% !important;
}

/* Seção "Você também pode gostar" */
#relacionados-imoveis {
    padding: 60px 0;
    background-color: #fff;
}

#relacionados-imoveis .text-52 {
    color: #333;
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
}

.imovel-card {
    margin-bottom: 30px;
}

.imovel-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.imovel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.imovel-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.imovel-status.lancamento {
    background-color: #e82561;
}

.imovel-status.em-construcao {
    background-color: #5C53A3;
}

.imovel-status.pronto-para-morar {
    background-color: #28a745;
}

.imovel-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.imovel-localizacao {
    padding: 10px 15px;
    color: #e82561;
    font-size: 0.9rem;
}

.imovel-titulo {
    padding: 0 15px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.imovel-titulo a {
    color: #333;
    text-decoration: none;
}

.imovel-titulo a:hover {
    color: #5C53A3;
}

.imovel-preco {
    padding: 0 15px;
    color: #5C53A3;
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.imovel-detalhes {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.85rem;
}

/* Responsividade */
@media (max-width: 767px) {
    .agradecimento-titulo {
        font-size: 1.8rem;
    }

    .agradecimento-subtitulo {
        font-size: 1rem;
    }

    .compartilhamento-social {
        padding: 20px;
    }

    .voce-tambem-pode-gostar h2 {
        font-size: 1.6rem;
    }
}
