@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--cor-tema);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    display: block;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cor-tema);
    transition: width 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li.active a::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li.active a {
    color: var(--cor-tema);
}

.nav-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.info-item i {
    color: var(--cor-tema);
}

.creci {
    background: var(--cor-tema);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.whatsapp-link {
    text-decoration: none;
    color: #666;
    transition: all 0.3s;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: scale(1.05);
}

.whatsapp-link i {
    color: #25D366;
}

.mobile-only {
    display: none;
}

.info-item-mobile {
    padding: 15px 20px !important;
    border-bottom: 1px solid #eee;
}

.info-item-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    text-decoration: none;
}

.info-item-mobile i {
    color: var(--cor-tema);
    font-size: 18px;
}

.creci-mobile {
    background: var(--cor-tema);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
}

.busca-rapida {
    background: linear-gradient(135deg, var(--cor-tema) 0%, #660000 100%);
    padding: 40px 0;
    margin-bottom: 40px;
}

.busca-rapida h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    letter-spacing: 1px;
}

.form-busca {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.form-grid-compacto {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-group select {
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23990000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 35px;
}

.form-group select:focus {
    outline: none;
    border-color: var(--cor-tema);
    box-shadow: 0 0 0 4px rgba(153, 0, 0, 0.1);
}

.form-group select:hover {
    border-color: #ccc;
}

.form-group input[type="number"] {
    padding: 12px 14px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    background: #fff;
    transition: all 0.3s;
}

.form-group input[type="number"]:focus {
    outline: none;
    border-color: var(--cor-tema);
    box-shadow: 0 0 0 4px rgba(153, 0, 0, 0.1);
}

.form-group input[type="number"]:hover {
    border-color: #ccc;
}

.form-group input[type="number"]::placeholder {
    color: #999;
}

.btn-buscar {
    background: var(--cor-tema);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.btn-buscar:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 0, 0, 0.3);
}

.btn-buscar:active {
    transform: translateY(0);
}

.main-content {
    min-height: 500px;
    padding: 20px 0;
}

.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;
}

ul {
    margin: 0;
    padding: 0;
}

.footer-section {
    background: #151414;
    position: relative;
    color: #fff;
    margin-top: 60px;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-xl-4,
.col-lg-4,
.col-md-4,
.col-md-6,
.col-xl-12 {
    padding: 0 15px;
}

.col-xl-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-xl-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-lg-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-lg-2 {
    flex: 0 0 16.666%;
    max-width: 16.666%;
}

.col-md-4 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.single-cta {
    display: flex;
    gap: 15px;
}

.single-cta i {
    color: var(--cor-tema);
    font-size: 30px;
    margin-top: 8px;
    min-width: 30px;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.pt-5 {
    padding-top: 3rem;
}

.pb-5 {
    padding-bottom: 3rem;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-25 {
    margin-bottom: 25px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 200px;
}

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon {
    margin-top: 20px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
    transition: transform 0.3s;
    display: inline-block;
}

.footer-social-icon a:hover {
    transform: translateY(-3px);
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.whatsapp-bg {
    background: #25D366;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

.footer-widget-heading h3::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -15px;
    height: 2px;
    width: 50px;
    background: var(--cor-tema);
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #878787;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget ul li a:hover {
    color: var(--cor-tema);
}

.footer-widget.mb-30 {
    margin-bottom: 30px;
}

.copyright-area {
    background: #0d0d0d;
    padding: 25px 0;
}

.copyright-text {
    margin: 0;
}

.copyright-text p {
    color: #878787;
    margin: 0;
}

.text-center {
    text-align: center;
}

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

.conteudo-pagina {
    padding: 0 20px;
}

.localizacao-info {
    text-align: center;
    margin-bottom: 40px;
}

.localizacao-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--cor-tema);
    margin-bottom: 20px;
}

.nome-empresa {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.endereco {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.mapa-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contato-info h3,
.contato-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-item-contato {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item-contato:last-child {
    border-bottom: none;
}

.info-item-contato i {
    font-size: 24px;
    color: var(--cor-tema);
    min-width: 30px;
}

.info-item-contato strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
    font-size: 14px;
}

.info-item-contato p {
    color: #666;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.imovel-consultado {
    background: linear-gradient(135deg, var(--cor-tema) 0%, #660000 100%);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    color: #fff;
}

.imovel-consultado h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.imovel-consultado .imovel-titulo {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.imovel-consultado .imovel-valor {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
}

.btn-ver-imovel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-ver-imovel-link:hover {
    background: rgba(255,255,255,0.3);
    transform: translateX(5px);
}

.form-contato {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.mensagem-sucesso,
.mensagem-erro {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.mensagem-sucesso {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.mensagem-erro {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.mensagem-sucesso i,
.mensagem-erro i {
    font-size: 20px;
}

.form-group-contato {
    margin-bottom: 20px;
}

.form-group-contato label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group-contato input,
.form-group-contato textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group-contato input:focus,
.form-group-contato textarea:focus {
    outline: none;
    border-color: var(--cor-tema);
    box-shadow: 0 0 0 4px rgba(153, 0, 0, 0.1);
}

.form-group-contato textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background: var(--cor-tema);
    color: #fff;
    padding: 14px 35px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

.btn-enviar:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 0, 0, 0.3);
}

.detalhes-imovel {
    padding: 30px 0 50px;
}

.detalhes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.detalhes-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.detalhes-titulo {
    flex: 1;
}

.detalhes-titulo h1 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.codigo-badge {
    background: #f0f0f0;
    color: #666;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

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

.detalhes-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.galeria-principal {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: #f0f0f0;
    aspect-ratio: 16/10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.galeria-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.galeria-nav:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-50%) scale(1.1);
}

.galeria-nav.prev {
    left: 20px;
}

.galeria-nav.next {
    right: 20px;
}

.galeria-contador {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.galeria-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px 0;
}

.galeria-thumbs img {
    width: 100px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    flex-shrink: 0;
}

.galeria-thumbs img:hover {
    border-color: #ccc;
    transform: scale(1.05);
}

.galeria-thumbs img.active {
    border-color: var(--cor-tema);
}

.sem-imagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: #f0f0f0;
    border-radius: 15px;
    color: #999;
}

.sem-imagem i {
    font-size: 60px;
    margin-bottom: 15px;
}

.info-card-imovel {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.info-card-imovel h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.info-preco {
    font-size: 36px;
    font-weight: 800;
    color: var(--cor-tema);
    margin-bottom: 25px;
}

.info-lista {
    margin-bottom: 25px;
}

.info-item-imovel {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item-imovel:last-child {
    border-bottom: none;
}

.info-item-imovel i {
    font-size: 20px;
    color: var(--cor-tema);
    min-width: 24px;
}

.info-item-imovel strong {
    display: block;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-item-imovel span {
    display: block;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.btn-contato-imovel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cor-tema);
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

.btn-contato-imovel:hover {
    background: #660000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 0, 0, 0.3);
}

.detalhes-descricao {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.detalhes-descricao h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.detalhes-descricao p {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .imovel-principal-card {
        grid-template-columns: 1fr;
    }

    .imovel-principal-imagem {
        height: 350px;
    }

    .imovel-principal-info {
        padding: 40px;
    }

    .imovel-principal-info h2 {
        font-size: 30px;
    }

    .valor-principal {
        font-size: 34px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .card-lateral {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .col-xl-4,
    .col-lg-4,
    .col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-menu li a::after {
        display: none;
    }

    .mobile-only {
        display: list-item !important;
    }

    .nav-info {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-container {
        position: relative;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid-compacto {
        grid-template-columns: repeat(3, 1fr);
    }

    .imoveis-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .col-xl-4,
    .col-lg-4,
    .col-md-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .logo img {
        height: 50px;
    }

    .busca-rapida h3 {
        font-size: 22px;
    }

    .form-grid-compacto {
        grid-template-columns: 1fr;
    }

    .imovel-principal-imagem {
        height: 300px;
    }

    .imovel-principal-info {
        padding: 30px;
    }

    .imovel-principal-info h2 {
        font-size: 26px;
    }

    .valor-principal {
        font-size: 28px;
    }

    .detalhes-principal {
        flex-direction: column;
        gap: 15px;
    }

    .secao-header h2 {
        font-size: 26px;
    }

    .imoveis-grid {
        grid-template-columns: 1fr;
    }

    .footer-social-icon {
        text-align: center;
    }

    .footer-widget-heading h3::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-widget ul li {
        text-align: center;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detalhes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .detalhes-header {
        flex-direction: column;
        gap: 15px;
    }

    .detalhes-titulo h1 {
        font-size: 24px;
    }

    .info-preco {
        font-size: 28px;
    }

    .info-card-imovel {
        position: static;
    }

    .galeria-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .galeria-nav.prev {
        left: 10px;
    }

    .galeria-nav.next {
        right: 10px;
    }
}
