/* ===== LOGO FIX — Moura Cardoso Law Consulting ===== */

/* Desktop: logo na navbar */
.clc-logo-img {
    height: 120px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.35s ease;
    filter: brightness(0) invert(1);
}

/* Navbar com scroll no desktop */
.clc-navbar.scrolled .clc-logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

/* Footer logo */
.clc-footer-logo {
    height: 190px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Tablet / Portátil */
@media (max-width: 991.98px) {
    .clc-logo-img {
        height: 80px;
        max-width: 160px;
    }
    .clc-navbar.scrolled .clc-logo-img {
        height: 42px;
    }
    .clc-footer-logo {
        height: 50px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .clc-logo-img {
        height: 80px;
        max-width: 120px;
    }
    .clc-navbar.scrolled .clc-logo-img {
        height: 38px;
    }
    .clc-footer-logo {
        height: 100px;
    }
}

/* ===== SELECT FIX ===== */
.clc-contact-form .form-select {
    background-color: rgba(255,255,255,0.06) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.12) !important;
}
.clc-contact-form .form-select option[disabled] {
    color: rgba(255,255,255,0.4) !important;
    background-color: #2c3040 !important;
}
.clc-contact-form .form-select option {
    background-color: #2c3040 !important;
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
}
