/* ========================= */
/* MODAL BASE */
/* ========================= */
.modal-property {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

/* ========================= */
/* MODAL COMPACTO */
/* ========================= */
.modal-property-content.compact {
    background: #fff;
    width: 600px;              /* MAIS PEQUENO */
    max-width: 95%;
    max-height: 80vh;          /* MAIS BAIXO */
    border-radius: 12px;
    overflow-y: auto;
    animation: fadeIn .3s ease;
    position: relative;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    padding-bottom: 10px;
}

/* BOTÃO FECHAR */
.modal-property-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    transition: .3s;
}

.modal-property-close:hover {
    color: #003366;
}

/* ========================= */
/* DUAS COLUNAS */
/* ========================= */
.two-columns {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 15px;
    padding: 15px;
}

/* ========================= */
/* SLIDER PRINCIPAL */
/* ========================= */
.modal-gallery-column {
    display: flex;
    flex-direction: column;
}

.modal-image-slider {
    width: 100%;
}

.modal-slide img {
    width: 100%;
    border-radius: 10px;
    transition: transform .3s ease;
}

/* ZOOM NA IMAGEM */
.zoomable:hover {
    transform: scale(1.05);
}

/* MINIATURAS */
.modal-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.modal-thumbs img {
    width: 30%;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: .6;
    transition: .3s;
}

.modal-thumbs img.active {
    opacity: 1;
    border: 2px solid #003366;
}

/* ========================= */
/* COLUNA DIREITA */
/* ========================= */
.modal-info-column {
    padding-right: 10px;
}

.modal-info-column h2 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #003366;
}

.property-location,
.property-size {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* TAGS */
.property-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0;
}

.property-tags .tag {
    background: #f0f0f0;
    color: #003366;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

/* ========================= */
/* CONTACTO */
/* ========================= */
.modal-property-contact {
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

.modal-property-contact h3 {
    font-size: 16px;
    color: #003366;
    margin-bottom: 10px;
}

.contact-grid.compact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
}

.contact-item i {
    font-size: 18px;
    color: #003366;
    margin-top: 2px;
}

.contact-item strong {
    color: #003366;
    font-weight: 600;
}

.contact-item p {
    margin: 2px 0 0;
    color: #444;
}

/* BOTÃO WHATSAPP */
.contact-whatsapp {
    text-align: center;
    margin-top: 15px;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
    font-size: 15px;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
}

/* ========================= */
/* ANIMAÇÃO */
/* ========================= */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 768px) {
    .modal-property-content.compact {
        width: 95%;
        padding: 0;
    }

    .two-columns {
        grid-template-columns: 1fr;
    }

    .modal-info-column {
        padding: 10px;
    }

    .modal-thumbs img {
        height: 50px;
    }

    .btn-whatsapp {
        width: 100%;
    }
}
/* SELO DE ESTADO DO IMÓVEL */
.property-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    z-index: 10;
    letter-spacing: .5px;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

/* ESTADOS */
.status-venda {
    background: #1dbf4f; /* VERDE */
}

.status-reservado {
    background: #ff8800; /* LARANJA */
}

.status-vendido {
    background: #d62828; /* VERMELHO */
}

/* GARANTIR POSICIONAMENTO */
.carosel-item {
    position: relative;
}





/* ========================= */
/* CONSULTOR SECTION */
/* ========================= */
.consultores-section {
    padding: 60px 0;
}

/* ========================= */
/* CARD HORIZONTAL */
/* ========================= */
.consultor-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: .3s ease;
    height: 250px; /* ALTURA AUMENTADA */
}

.consultor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 25px rgba(189,161,0,0.35); /* DOURADO */
}

/* FOTO */
.consultor-foto {
    flex: 0 0 35%;
    height: 100%;
}

.consultor-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO */
.consultor-info {
    flex: 1;
    padding: 20px 22px;
}

.consultor-nome {
    font-size: 20px;
    font-weight: 700;
    color: #003366;
    margin-bottom: 6px;
}

.consultor-cargo {
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

/* BOTÕES */
.consultor-botoes {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-contacte {
    background: #bda100; /* NOVA COR */
    color: #fff;
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.btn-contacte:hover {
    background: #9c8600; /* DOURADO ESCURO */
}

.btn-icone {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #003366;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.btn-icone:hover {
    background: #0055aa;
}

.btn-icone.whatsapp {
    background: #25D366;
}

.btn-icone.whatsapp:hover {
    background: #1ebe5d;
}

/* CONTACTOS */
.consultor-contatos p {
    font-size: 13px;
    color: #444;
    margin: 4px 0;
}

.consultor-contatos i {
    color: #003366;
    margin-right: 6px;
}

.ver-telefone {
    color: #bda100; /* NOVA COR */
    font-weight: 600;
    cursor: pointer;
}

/* EMPRESA */
.consultor-empresa {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    line-height: 1.4;
}

/* ========================= */
/* SLIDER CONFIG — 3 CARDS */
/* ========================= */
.consultores-slider .carosel-item {
    min-width: 33.33%; /* 3 por linha */
    padding-right: 20px;
}

/* ========================= */
/* NAV BUTTONS */
/* ========================= */
.carosel-root {
    position: relative;
}

.carosel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.carosel::-webkit-scrollbar {
    display: none;
}

.carosel-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #003366;
    color: #fff;
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s;
    z-index: 10;
}

.carosel-nav:hover {
    background: #0055aa;
}

.carosel-nav-left {
    left: -10px;
}

.carosel-nav-right {
    right: -10px;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */
@media (max-width: 992px) {
    .consultores-slider .carosel-item {
        min-width: 50%; /* 2 por linha */
    }
}

@media (max-width: 600px) {
    .consultores-slider .carosel-item {
        min-width: 100%; /* 1 por linha */
    }

    .consultor-card {
        flex-direction: column;
        height: auto;
        text-align: center;
    }

    .consultor-foto {
        width: 100%;
        height: 200px;
    }

    .consultor-info {
        padding: 15px;
    }

    .consultor-botoes {
        justify-content: center;
    }
}
