* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* TOPO VERMELHO */
.topbar {
    background: #3aacee;
    color: #fff;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
}

.topbar-left span {
    margin-right: 15px;
}

.topbar-right a {
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
}

.divider {
    margin: 0 10px;
}

/* HEADER */
.header {
    background: #0b2457;
    /* mantém exatamente o fundo */
    width: 100%;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 🔥 chave do alinhamento */
}

.logo img {
    height: 55px;
    /* ajuste fino, se quiser */
}

.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: opacity 0.2s;
}

.menu a:hover {
    opacity: 0.8;
}



/* SEÇÃO DE BUSCA */
.search-section {
    background: #f3f3f3;
    padding: 30px 0;
}

/* ABAS */
.search-tabs {
    display: flex;
}

.tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.tab.active {
    background: #08204f;
}

.tab.red {
    background: #3aacee;
}

.tab.dark-red {
    background: #2e8cc2;
}

/* FORMULÁRIO */
.search-form {
    display: flex;
    background: #fff;
    border: 1px solid #ddd;
}

.search-form select,
.search-form input {
    flex: 1;
    padding: 14px;
    border: none;
    border-right: 1px solid #ddd;
    font-size: 14px;
}

.search-form input {
    flex: 3;
}

.search-btn {
    background: #08204f;
    color: #fff;
    border: none;
    padding: 0 25px;
    font-size: 18px;
    cursor: pointer;
}

/* DESTAQUES */
.featured {
    background: #f5f5f5;
    padding: 70px 0;
    text-align: center;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #666;
    margin-bottom: 40px;
}

.featured-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.featured-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    /* CENTRALIZA */
    overflow: hidden;
    margin: 0 auto;
    /* GARANTE CENTRALIZAÇÃO */
}

.featured-card {
    min-width: 450px;
    min-height: 362px;
    position: relative;
    cursor: pointer;
}

.featured-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    text-align: left;
}

.featured-info h3 {
    margin-bottom: 5px;
}

.featured-info span {
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.featured-info strong {
    font-size: 18px;
}

.arrow {
    background: #fff;
    border: 1px solid #ccc;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 20px;
}

.arrow.left {
    margin-right: 15px;
}

.arrow.right {
    margin-left: 15px;
}

/* SOBRE NÓS */
.about {
    background: #fff;
    padding: 90px 0;
    text-align: center;
}

.about-header {
    margin-bottom: 40px;
}

.about-tag {
    display: inline-block;
    background: #ee3a43;
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.about-header h2 {
    font-size: 34px;
    color: #08204f;
    margin-bottom: 10px;
}

.about-line {
    width: 80px;
    height: 4px;
    background: #ee3a43;
    margin: 15px auto 0;
}

.about-text {
    max-width: 900px;
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text strong {
    color: #08204f;
}

.about {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

/* RODAPÉ */
.footer {
    background: #f4f4f4;
    color: #333;
    font-size: 14px;
}

/* TOPO */
.footer-top {
    background: #08204f;
    color: #fff;
    padding: 15px 0;
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

/* CONTEÚDO */
.footer-main {
    padding: 60px 0 40px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: start;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #08204f;
    text-decoration: none;
}

.footer-col h4 {
    color: #08204f;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: #333;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

/* ENDEREÇO */
.footer-address {
    text-align: center;
    margin-top: 50px;
    color: #555;
}

/* BASE */
.footer-bottom {
    background: #e6e6e6;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #333;
    text-decoration: none;
}

.footer-credit {
    margin-top: 8px;
    color: #777;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: #08204f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: #3aacee;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #08204f, #0c2f6b);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #3aacee;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: #2e8cc2;
    transform: translateY(-2px);
}

/* LISTAGEM */
.listing {
    padding: 50px 0;
}

.listing-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

/* FILTROS */


/* RESULTADOS */
.results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* CARD */
.property-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* IMAGEM */
.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO */
.property-info {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.property-info h3 {
    font-size: 18px;
    margin-bottom: 6px;
    color: #111;
}

.property-location {
    font-size: 13px;
    color: #777;
}

/* DETALHES */
.property-details {
    display: flex;
    gap: 20px;
    margin-top: 14px;
    font-size: 14px;
    color: #444;
}

/* PREÇO */
.property-price {
    text-align: right;
    min-width: 200px;
}

.property-price strong {
    font-size: 22px;
    color: #000;
}

.property-price p {
    font-size: 14px;
    margin: 4px 0;
}

.property-price .total {
    color: #3aacee;
    font-weight: bold;
    margin-bottom: 12px;
}

/* BOTÃO */
.property-btn {
    display: inline-block;
    background: #08204f;
    color: #fff;
    padding: 12px 26px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.property-btn:hover {
    background: #061a3f;
}


/* TOPO */
.topbar {
    background: #3aacee;
    color: #fff;
    font-size: 14px;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
}

.topbar a {
    color: #fff;
    margin-left: 10px;
    text-decoration: none;
}

.divider {
    margin: 0 10px;
}

/* HEADER */
.header {
    background: #0b2457;
    /* mantém exatamente o fundo atual */
}

.navbar {
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 🔥 ESSENCIAL */
    
}

.logo {
    height: 75px;
    margin: -10px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.navbar-menu li a:hover {
    opacity: 0.8;
}


/* CABEÇALHO DA LISTAGEM */
.listing-top {
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.listing-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.listing-header-left h2 {
    font-size: 20px;
    font-weight: normal;
}

.listing-header-left strong,
.listing-header-left span {
    color: #08204f;
    font-weight: bold;
    text-transform: uppercase;
}

.listing-header-left p {
    font-size: 13px;
    color: #777;
    margin-top: 5px;
}

.listing-header-right select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
}

/* ===== LAYOUT GERAL ===== */
.listing {
    padding: 40px 0;
    background: #f6f6f6;
}

.listing-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* ===== FILTROS ===== */
.filters {
    background: #ffffff;
    border-radius: 6px;
    padding: 25px;
    border: 1px solid #e1e1e1;
}

.filter-tabs {
    display: flex;
    margin-bottom: 20px;
    border-radius: 4px;
    overflow: hidden;
}

.filter-tabs button {
    flex: 1;
    padding: 12px;
    font-size: 13px;
    font-weight: bold;
    border: none;
    background: #f0f0f0;
    cursor: pointer;
}

.filter-tabs .active {
    background: #08204f;
    color: #fff;
}

.filters select,
.filters input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.filters h4 {
    margin: 20px 0 10px;
    font-size: 14px;
    color: #333;
}

.filter-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.filter-options button {
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    background: #f7f7f7;
    border-radius: 4px;
    cursor: pointer;
}

.filter-options button:hover {
    background: #08204f;
    color: #fff;
}

.filter-submit {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #08204f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

/* ===== RESULTADOS ===== */
.results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ===== CARD DO IMÓVEL ===== */
.property-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    transition: box-shadow 0.3s ease;
}

.property-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== INFO ===== */
.property-info {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.property-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111;
}

.property-info span {
    font-size: 14px;
    color: #555;
}

.property-info small {
    font-size: 12px;
    color: #999;
}

/* ===== DETALHES ===== */
.property-details {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    font-size: 14px;
    color: #444;
}

/* ===== PREÇO ===== */
.property-price strong {
    font-size: 20px;
    color: #000;
}

.property-price p {
    font-size: 14px;
    margin: 3px 0;
}

.property-price .total {
    color: #ee3a43;
    font-weight: bold;
}

/* ===== BOTÃO ===== */
.property-btn {
    margin-top: 15px;
    align-self: flex-start;
    background: #08204f;
    color: #fff;
    padding: 12px 28px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.property-btn:hover {
    background: #061a3f;
}

/* GALERIA DO IMÓVEL */
.property-gallery {
    padding: 40px 0;
    background: #f6f6f6;
}

.gallery-main {
    width: 100%;
    height: 480px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MINIATURAS */
.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.gallery-thumbs img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.7;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active {
    opacity: 1;
    border-color: #08204f;
}

/* HEADER DO IMÓVEL */
.property-header {
    background: #fff;
    padding: 30px 0 20px;
    border-bottom: 1px solid #e1e1e1;
}

.property-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.property-header-left h1 {
    font-size: 26px;
    color: #111;
    margin-bottom: 6px;
}

.property-subtitle {
    font-size: 15px;
    color: #666;
}

.property-code {
    margin-left: 12px;
    font-size: 14px;
    color: #999;
}

/* FAVORITO */
.favorite-btn {
    background: #fff;
    border: 1px solid #ddd;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.favorite-btn:hover {
    background: #ee3a43;
    border-color: #ee3a43;
    color: #fff;
}

/* LAYOUT IMÓVEL */
.property-layout {
    padding: 40px 0;
    background: #f6f6f6;
}

.property-layout-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: flex-start;
}

/* COLUNA CTA */
.property-cta {
    position: relative;
}

.property-cta-box {
    position: sticky;
    top: 100px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    padding: 25px;
}

/* TIPO */
.property-type {
    display: inline-block;
    background: #08204f;
    color: #fff;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* PREÇO */
.property-price {
    font-size: 28px;
    margin-bottom: 10px;
    color: #000;
}

/* EXTRA */
.property-extra {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.property-extra strong {
    color: #ee3a43;
}

/* BOTÕES */
.cta-whatsapp {
    display: block;
    text-align: center;
    background: #25d366;
    color: #fff;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 12px;
}

.cta-visit {
    display: block;
    text-align: center;
    background: #08204f;
    color: #fff;
    padding: 14px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

/* TOPO DO IMÓVEL */
.property-top {
    background: #f6f6f6;
    padding: 40px 0;
}

.property-top-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
    align-items: flex-start;
}

/* GALERIA */
.property-gallery {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
}

.gallery-main {
    height: 380px;
    /* DIMINUI A IMAGEM */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
}

.gallery-thumbs img {
    width: 90px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 4px;
    opacity: 0.7;
    border: 2px solid transparent;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
    opacity: 1;
    border-color: #08204f;
}

/* CTA */
.property-cta-box {
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    padding: 25px;
}

.property-type {
    display: inline-block;
    background: #08204f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 15px;
}

.property-price {
    font-size: 28px;
    margin-bottom: 10px;
}

.property-extra {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.property-extra strong {
    color: #ee3a43;
}

/* BOTÕES */
.cta-whatsapp {
    display: block;
    background: #25d366;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 12px;
}

.cta-visit {
    display: block;
    background: #08204f;
    color: #fff;
    padding: 14px;
    text-align: center;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}

/* DETALHES DO IMÓVEL */
.property-details-section {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    padding: 25px;
    margin-bottom: 30px;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-icon {
    font-size: 26px;
}

.detail-item strong {
    font-size: 16px;
    color: #111;
}

.detail-item p {
    font-size: 13px;
    color: #777;
    margin: 0;
}

/* DESCRIÇÃO DO IMÓVEL */
.property-description {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-bottom: 30px;
}

.property-description h2 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #08204f;
}

.property-description p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

/* IMÓVEIS SEMELHANTES */
.similar-properties {
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    padding: 30px;
    margin-bottom: 40px;
}

.similar-properties h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #08204f;
}

/* GRID */
.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

/* CARD */
.similar-card {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    background: #fff;
}

.similar-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.similar-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* INFO */
.similar-info {
    padding: 15px;
}

.similar-info h3 {
    font-size: 15px;
    margin-bottom: 4px;
    color: #111;
}

.similar-info span {
    font-size: 13px;
    color: #777;
    display: block;
    margin-bottom: 8px;
}

.similar-info strong {
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.similar-info a {
    font-size: 13px;
    text-decoration: none;
    color: #08204f;
    font-weight: bold;
}

@media (max-width: 768px) {

    .property-top-grid {
        grid-template-columns: 1fr;
    }

    .gallery-main {
        height: 240px;
    }

    .gallery-thumbs {
        justify-content: center;
    }

    .gallery-thumbs img {
        width: 70px;
        height: 50px;
    }

    .property-cta-box {
        position: relative;
        top: auto;
        margin-top: 20px;
    }

    .cta-whatsapp,
    .cta-visit {
        font-size: 16px;
        padding: 16px;
    }

    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

.property-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: stretch;
    /* 🔥 chave do ajuste */
}

.property-cta {
    height: 100%;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .navbar-menu {
    gap: 20px;
  }
}

.tipos-text {
    text-align: center;
    margin-bottom: 20px;
}

/* SELO DE STATUS */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.status-badge.vendido {
    background: #dc2626;
    color: #fff;
}

.status-badge.alugado {
    background: #2563eb;
    color: #fff;
}

/* ==================================================
   MOBILE REAL – CORREÇÃO TOTAL
   ================================================== */
@media (max-width: 768px) {

  /* RESET MOBILE */
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  /* ================= HEADER ================= */
  .header {
    width: 100%;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
  }

  .logo {
    max-width: 130px;
  }

  .navbar-menu {
    display: none; /* depois podemos criar menu hamburguer */
  }

  /* ================= LISTAGEM (IMOVEIS) ================= */
  .listing-layout {
    display: flex;
    flex-direction: column;
  }

  .filters {
    width: 100%;
    margin-bottom: 20px;
  }

  .filters select,
  .filters input,
  .filter-submit {
    width: 100%;
  }

  .results {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .property-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
  }

  .property-image {
    width: 100%;
  }

  .property-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .property-info {
    padding: 16px;
  }

  .property-info h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  .property-location {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
  }

  .property-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .property-price strong {
    font-size: 20px;
  }

  .property-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* STATUS BADGE */
  .status-badge {
    align-self: flex-start;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 6px;
  }

  /* ================= PÁGINA DO IMÓVEL ================= */
  .property-top-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .property-gallery {
    width: 100%;
  }

  .gallery-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
  }

  .gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .gallery-thumbs img {
    min-width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
  }

  /* CTA MOBILE */
  .property-cta {
    width: 100%;
  }

  .property-cta-box {
    width: 100%;
    position: relative;
    top: 0;
    padding: 18px;
  }

  .property-type {
    font-size: 14px;
  }

  .property-price {
    font-size: 22px;
  }

  .cta-whatsapp,
  .cta-visit {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
  }

  /* ================= DETALHES ================= */
  .property-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .detail-item {
    justify-content: flex-start;
  }

  /* ================= DESCRIÇÃO ================= */
  .property-description {
    padding: 20px 16px;
  }

  .property-description h2 {
    font-size: 20px;
  }

  .property-description p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* ================= FOOTER ================= */
  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

}

/* =====================================================
   RESPONSIVO – HOME IMOBILIÁRIA JV
   (BASEADO NO HTML ENVIADO)
   ===================================================== */
@media (max-width: 768px) {

  /* RESET GERAL */
  body {
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    height: auto;
  }

  .container {
    padding: 0 16px;
  }

  /* ================= HEADER ================= */
  .header .header-content {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .logo {
    max-width: 140px;
  }

  /* MENU DUPLO → ESCONDE NO MOBILE */
  .navbar-menu {
    display: none;
  }

  /* ================= SEARCH SECTION ================= */
  .search-section {
    padding: 30px 0;
  }

  .tipos-text {
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  /* ABAS */
  .search-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }

  .search-tabs .tab {
    text-align: center;
    font-size: 13px;
    padding: 10px;
  }

  /* FORMULÁRIO */
  .search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .search-form select,
  .search-form input {
    width: 100%;
    height: 44px;
  }

  .search-btn {
    width: 100%;
    height: 46px;
    font-size: 16px;
  }

  /* ================= DESTAQUES ================= */
  .featured {
    padding: 40px 0;
  }

  .featured h2 {
    font-size: 20px;
    text-align: center;
  }

  .featured .subtitle {
    font-size: 14px;
    text-align: center;
  }

  .featured-wrapper {
    position: relative;
  }

  .featured-list {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .featured-card {
    min-width: 80%;
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
  }

  .featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .featured-info {
    padding: 14px;
  }

  .featured-info h3 {
    font-size: 16px;
  }

  .featured-info span {
    font-size: 13px;
  }

  .featured-info strong {
    font-size: 18px;
  }

  /* ESCONDE SETAS NO MOBILE */
  .arrow {
    display: none;
  }

  /* ================= SOBRE ================= */
  .about {
    padding: 40px 0;
  }

  .about-header h2 {
    font-size: 22px;
    text-align: center;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
  }

  /* ================= CTA ================= */
  .cta {
    padding: 40px 0;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
    padding: 14px;
    font-size: 16px;
  }

  /* ================= FOOTER ================= */
  .footer-top-content,
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-columns {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: 13px;
    line-height: 1.5;
  }

}

/* ===============================
   DESTAQUES – MOBILE (COLUNA)
   =============================== */
@media (max-width: 768px) {

  .featured-wrapper {
    position: relative;
  }

  /* lista vira coluna */
  .featured-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: visible;
  }

  /* card ocupa 100% */
  .featured-card {
    width: 100%;
    min-width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  /* imagem ajustada */
  .featured-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* texto mais limpo */
  .featured-info {
    padding: 16px;
  }

  .featured-info h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .featured-info span {
    font-size: 13px;
    display: block;
    margin-bottom: 8px;
  }

  .featured-info strong {
    font-size: 18px;
  }

  /* remove setas no mobile */
  .featured-wrapper .arrow {
    display: none;
  }
}

/* ===============================
   RODAPÉ – FUNDO BRANCO PROFISSIONAL
   =============================== */

.footer {
  background: #ffffff;
  color: #1f2937;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
}

/* FAIXA SUPERIOR */
.footer-top {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 14px 0;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: #374151;
}

/* CONTEÚDO PRINCIPAL */
.footer-main {
  padding: 40px 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: flex-start;
}

/* COLUNAS */
.footer-col h4 {
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #0b1f3a;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
}

.footer-col ul li a:hover {
  color: #0b1f3a;
  text-decoration: underline;
}

/* REDES SOCIAIS */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1f3a;
  font-size: 15px;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: #0b1f3a;
  color: #ffffff;
}

/* FAIXA FINAL */
.footer-bottom {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 14px 10px;
  text-align: center;
  font-size: 12px;
  color: #6b7280;
}

.footer-bottom a {
  color: #0b1f3a;
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-credit {
  margin-top: 6px;
  color: #9ca3af;
}

/* ===============================
   RODAPÉ – MOBILE
   =============================== */
@media (max-width: 768px) {

  .footer-columns {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }

  .footer-col h4 {
    margin-top: 10px;
  }
}
