/* =========================
   GERAL
========================= */
body{
    font-family:'Segoe UI',sans-serif;
    margin:0;
    background:#0C0D61;
}

/* =========================
   LOGO
========================= */
.logo-area{
    display:flex;
    align-items:center;
}

.logo-link img{
    height:46px;
    margin-right:12px;
}

.logo-text{
    color:white;
    font-size:32px;
    font-weight:700;
    margin:0;
    text-decoration:none;
    letter-spacing:0.5px;
}

.logo-text:hover{
    text-decoration:none;
}

.logo-site{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-site img{
    height:42px;
    margin-right:10px;
}

.nome-logo{
    color:white;
    font-size:22px;
    font-weight:600;
}

/* =========================
   TOPO / MENU
========================= */
.topo{
    background:#0C0D61;
    color:white;
    padding:20px;
}

.topo nav a{
    color:white;
    margin-right:20px;
    text-decoration:none;
}

.header-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu{
    display:flex;
    align-items:center;
}

.menu a{
    color:white;
    margin-left:20px;
    text-decoration:none;
    font-size:15px;
}

.menu a:hover{
    opacity:0.8;
}

/* botão destaque */
.btn-cadastro{
    background:#1e6bd6;
    padding:8px 15px;
    border-radius:6px;
    color:white;
    font-weight:500;
}

/* =========================
   CONTAINER
========================= */
.container{
    max-width:1200px;
    width:100%;
    margin:auto;
}

/* =========================
   BANNER
========================= */
.banner{
    background:url('../img/corretor-cliente.jpg');
    height:450px;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-text{
    background:rgba(0,0,0,0.4);
    padding:40px;
    color:white;
    text-align:center;
}

/* =========================
   BUSCA
========================= */
.busca input,
.busca select{
    padding:10px;
    margin-right:10px;
    border-radius:5px;
    border:none;
}

.busca button{
    background:#ff385c;
    color:white;
    padding:10px 20px;
    border:none;
    border-radius:5px;
}

/* =========================
   GRID / CARDS
========================= */
.grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

.card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.card-body{
    padding:20px;
}

.preco{
    color:#0a2540;
    font-size:20px;
    font-weight:bold;
}

/* =========================
   FOOTER
========================= */
.footer{
    background:#0C0D61;
    color:white;
    margin-top:50px;
    padding:40px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer a{
    color:white;
    text-decoration:none;
}

.copyright{
    text-align:center;
    margin-top:20px;
    font-size:14px;
}

/* =========================
   BOTÕES
========================= */
.btn-primary{
    background:#0C0D61;
    border-color:#0C0D61;
}

.btn-primary:hover{
    background:#123b6b;
    border-color:#123b6b;
}

/* =========================
   MENU MAPA
========================= */
.navbar .nav-link.menu-mapa-texto{
    color:#FFFF33 !important;
    font-size:1.15rem;
    font-weight:600;
}

/* =========================
   ORDENAR (NOVO)
========================= */
select.select-ordenar{
    color: #dc3545 !important;
}
.select-ordenar{
    color: #dc3545 !important;
    font-weight: 600;
}

/* quando tiver valor selecionado */
.select-ordenar option{
    color: black;
}