:root {
    --brand: #0B4D8B;
    --acc: #167CDA;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.hero {
    position: relative;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(11, 77, 139, 0.85) 0%, rgba(22, 124, 218, 0.9) 55%, rgba(57, 161, 255, 0.95) 100%),
        url('../img/transporte-de-cargas.webp') center/cover no-repeat;
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(2, 6, 23, .12);
}

.badge-soft {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
}

.icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #eef6ff;
    color: #0B4D8B;
}

.menu {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    padding: 15px;
    transition: top 0.3s ease;
    z-index: 999;
    opacity: 0;
}

.menu.show {
    top: 0;
    opacity: 1;
}

.breadcrumb-area {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 150px;
    margin-top: 75px;
}

.bg-overlay {
    position: relative;
    z-index: 2;
    background-position: center center;
    background-size: 65%;
}

.bg-img {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-overlay::after {
    background-color: rgba(0, 0, 0, 0.70);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
}

.jarallax {
    position: relative;
    z-index: 0;
}

.breadcrumb-area .breadcrumb-content h2 {
    color: #ffffff;
    font-size: 30px;
    text-transform: uppercase;
    display: block;
}
.breadcrumb-area .breadcrumb-content .breadcrumb .breadcrumb-item a {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}
.breadcrumb-area .breadcrumb-content .breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.form-control, .form-select {
    height: 40px;
}
.form-select { padding: .375rem 2.25rem .375rem .75rem }
textarea.form-control {
    min-height: 70px;
}

.rotas_mais_buscadas .rota {
    color: #848484;
    text-decoration: none;
}
.rotas_mais_buscadas .rota div {
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #848484;
    border-radius: 5px;
    transition: .2s;
    min-height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1140px !important;
    }
}