.slider-wrapper {
    margin-bottom: 40px;
}

.destaque-principal {
    padding: 50px 0;
    background: #fff;
}

.imovel-principal-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.imovel-principal-imagem {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.imovel-principal-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.imovel-badge-grande {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--cor-tema);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.imovel-principal-info {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.imovel-principal-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.tipo-principal {
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
}

.valor-principal {
    font-size: 40px;
    font-weight: 800;
    color: var(--cor-tema);
    margin-bottom: 30px;
}

.detalhes-principal {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.detalhe-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detalhe-item i {
    font-size: 24px;
    color: var(--cor-tema);
}

.detalhe-item span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.btn-ver-imovel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--cor-tema);
    color: #fff;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-ver-imovel:hover {
    background: #660000;
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(153, 0, 0, 0.3);
}

.secao-cards {
    padding: 40px 0;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    padding: 0 20px;
}

.card-lateral {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-lateral:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.card-header {
    background: var(--cor-tema);
    color: #fff;
    padding: 15px 20px;
    text-align: center;
}

.card-header h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.card-logo-link {
    display: block;
    margin-bottom: 15px;
}

.card-logo-link img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s;
}

.card-logo-link img:hover {
    transform: scale(1.05);
}

.card-body p {
    color: #666;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-card {
    display: inline-block;
    background: var(--cor-tema);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-card:hover {
    background: #660000;
    transform: scale(1.05);
}

.card-principal {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-principal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.conheca-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.conheca-banner {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cor-tema) 0%, #660000 100%);
}

.conheca-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.conheca-link:hover .conheca-banner img {
    transform: scale(1.1);
}

.conheca-texto {
    padding: 30px;
    text-align: center;
}

.conheca-texto h2 {
    font-size: 26px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.conheca-texto p {
    color: #666;
    font-size: 15px;
}

.secao-imoveis {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.secao-header {
    text-align: center;
    margin-bottom: 40px;
}

.secao-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.separador {
    width: 80px;
    height: 3px;
    background: var(--cor-tema);
    margin: 0 auto;
    border-radius: 2px;
}

.imoveis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.imovel-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.imovel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.imovel-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.imovel-imagem {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

.imovel-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.imovel-card:hover .imovel-imagem img {
    transform: scale(1.1);
}

.imovel-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--cor-tema);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.imovel-info {
    padding: 20px;
}

.imovel-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.imovel-tipo {
    color: #888;
    font-size: 14px;
    margin-bottom: 10px;
}

.imovel-valor {
    font-size: 22px;
    font-weight: 700;
    color: var(--cor-tema);
    margin-bottom: 15px;
}

.imovel-detalhes {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.imovel-detalhes span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.imovel-detalhes i {
    color: var(--cor-tema);
}

.ver-mais {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cor-tema);
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s;
}

.imovel-card:hover .ver-mais {
    gap: 12px;
}

.btn-voltar-container {
    text-align: center;
    margin-bottom: 30px;
}

.btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f0f0f0;
    color: #333;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-voltar:hover {
    background: var(--cor-tema);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(153, 0, 0, 0.2);
}

.mensagem-vazia {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 15px;
    margin: 0 20px;
}

.mensagem-vazia i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.mensagem-vazia h3 {
    color: #555;
    font-size: 22px;
    margin-bottom: 10px;
}

.mensagem-vazia p {
    color: #888;
    font-size: 16px;
}
