
/* .logo-text {

    font-weight: 700;
    font-size: 20px;
    color: #1d3f6e;

} */

.navbar {
    background-color: #020617 !important; /* mais profundo e elegante */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.navbar img {
    filter: brightness(0) invert(1); /* transforma em branco */
    transition: 0.3s;
}

.navbar img:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 5px #60a5fa);
}

.nav-custom {

    font-weight: 500;
    color: #d8d8d8;

    position: relative;

    transition: 0.3s;

}

.nav-custom:hover {

    color: #2b6cb0;

}

.nav-custom::after {

    content: "";

    position: absolute;

    width: 0%;

    height: 2px;

    background: #2b6cb0;

    left: 0;

    bottom: -3px;

    transition: 0.3s;

}

.nav-custom:hover::after {

    width: 100%;

}

.navbar-toggler-icon {
    filter: invert(1) !important;
}

.btn-orcamento {

    background: #2b6cb0;

    color: white;

    padding: 10px 20px;

    border-radius: 6px;

    font-weight: 600;

    transition: 0.3s;

}

.btn-orcamento:hover {

    background: #1d4f8f;

    color: white;

    transform: translateY(-2px);

}



body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
}



.footer-custom {
    background: #1e293b;
    color: #cbd5e1;
}

.footer-custom p {
    font-size: 14px;
    color: #94a3b8;
}

.footer-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #e2e8f0;
}

.footer-custom a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
}

.footer-custom a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.footer-custom hr {
    border-color: #020617;
}