/* ==== Marcus Vinicius Imóveis de Luxo — ajustes específicos ==== */

/* Botão flutuante de WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: block;
    width: 60px;
    height: 60px;
    transition: transform .3s ease;
}
.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .25));
}
.whatsapp-float:hover {
    transform: scale(1.08);
}

/* Cards de imóveis — imagem uniforme */
.property-card .position-re {
    height: 260px;
}
.property-card .position-re img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-card .price {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-top: 5px;
}

/* Campo de busca da home */
.search-hero {
    background: #f7f7f7;
    padding: 40px 0;
}
.search-hero form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.search-hero input[type="text"] {
    flex: 1 1 auto;
    min-width: 240px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    background: #fff;
}
.search-hero button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 14px 34px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
}

/* Filtro lateral da listagem */
.filter-sidebar {
    background: #f7f7f7;
    padding: 30px;
    margin-bottom: 30px;
}
.filter-sidebar h5 {
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.filter-sidebar label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 6px;
    display: block;
}
.filter-sidebar input,
.filter-sidebar select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    background: #fff;
    margin-bottom: 18px;
}
.filter-sidebar .range-row {
    display: flex;
    gap: 10px;
}
.filter-sidebar .btn-filter {
    width: 100%;
    border: 0;
    background: #111;
    color: #fff;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

/* Formulário Imóvel dos Sonhos */
.dream-section {
    background: #111;
    color: #fff;
}
.dream-section .section-title {
    color: #fff;
}
.dream-section input,
.dream-section select,
.dream-section textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 18px;
    background: #1c1c1c;
    border: 1px solid #333;
    color: #fff;
}
.dream-section .btn-dream {
    border: 0;
    background: #fff;
    color: #111;
    padding: 14px 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}
.alert-success-inline {
    background: #1e7e34;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 25px;
}
.field-error {
    color: #ff6b6b;
    font-size: 13px;
    margin: -12px 0 15px;
}

/* Detalhe do imóvel */
.property-meta p {
    margin-bottom: 8px;
}
.property-price-big {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}
