header {
    background-color: #fafafa;
}

header .logo-desktop,
header .logo-mobile-menu {
    width: 160px;
    margin: 1rem 0
}

/* FOOTER */
footer {
    background-color: #F6F6F6;
    margin-top: 3rem;
}

footer .logo-desktop {
    max-width: 200px;
}

footer h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--primary-color);
}

footer .footer__nav li a:not(.btn) {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: var(--dark);
    transition: .3s;
    font-weight: 500;
}

footer .footer__nav li a i {
    font-size: 10px
}

footer .footer__nav li a:hover {
    color: var(--primary-color)
}

footer .address :is(span, a):not(.btn) {
    color: var(--dark);
    font-size: 14px;
    line-height: 25px;
    transition: .3s
}

footer .address a:not(.btn):hover {
    color: var(--primary-color)
}

.copyright-footer .btn.selos {
    min-height: unset;
}

@media screen and (max-width: 992.05px) {
    footer .social {
        justify-content: center;
    }
}

.card.card--23 {
    all: unset;
    display: flex;
    flex-flow: column nowrap;
    gap: 1rem;
    align-items: flex-start;
    justify-content: space-between;
    background-color: var(--dark);
    background-image: linear-gradient(-45deg, var(--dark), var(--grey)), var(--card-background);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-blend-mode: multiply, normal;
    border-radius: 1rem;
    padding: 1rem;
    position: relative;
    float: unset
}

.card.card--23:focus-within,
.card.card--23:hover {
    box-shadow: 0 0 0 2px var(--secondary-color)
}

.card.card--23 .card__title {
    color: #fff;
    font-size: 1.25rem;
    text-shadow: 0 0 .25rem var(--dark);
    margin: 0;
    min-height: calc(1.25rem * 2 * 1.3)
}

.card.card--23 .card__link {
    z-index: 1;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    padding: .5rem .75rem;
    font-size: .875rem;
    text-transform: uppercase;
    transition: var(--transition);
    color: var(--light);
    font-weight: 600;
    border: 2px solid currentColor;
    border-radius: 99px
}

.card.card--23 .card__link>span {
    width: 0;
    max-width: fit-content;
    opacity: 0;
    transition: var(--transition)
}

.card.card--23 .card__link:focus>span,
.card.card--23 .card__link:hover>span {
    width: 100px;
    opacity: 1;
    margin-right: .5rem
}

.card.card--23 .card__link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    backface-visibility: visible
}

.card.card--23 .card__link:focus,
.card.card--23 .card__link:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color)
}

.shadow-19 {
    box-shadow: rgba(50, 50, 93, .25) 0 2px 5px -1px, rgba(0, 0, 0, .3) 0 1px 3px -1px
}

.title-subtitle {
    margin-bottom: 0
}

.title-subtitle span {
    display: block;
    font-size: .9rem;
    color: #000;
    line-height: 1rem;
    letter-spacing: .25rem;
    text-transform: uppercase
}


.institucional__image {
    object-fit: cover;
    border-radius: 16px;
}

.institucional__image--full {
    aspect-ratio: 4/5;
}

.mvv {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mvv__icon svg {
    height: 60px;
}

.mvv__title {
    margin: 16px 0 8px 0;
}

.clientes__item {
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientes__image {
    object-fit: contain;
}

/* ORGANIC TABS E NAV */
.nav-localizacao {
    justify-content: center;
}

.nav-localizacao.nav-pills .nav-link {
    position: relative;
    border-radius: 0;
    color: var(--dark);
}

.nav-localizacao.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--primary-color) !important;
    background-color: transparent !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

/* ================= ACCORDION ====================== */
.accordion-1 {
    width: 100%;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
}

.accordion-1 .accordion__item {
    margin: 10px 0;
}

.accordion-1 .accordion__button {
    width: 100%;
    text-align: left;
    padding: 16px;
    background-color: #ebecec;
    color: var(--primary-color, #000);
    border: none;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease-in;
    border-radius: 16px;
}

.accordion-1 .accordion__button:hover,
.accordion-1 .accordion__button[aria-expanded="true"] {
    color: var(--primary-color, #0096dd);
    border-radius: 16px 16px 0 0;
}

.accordion-1 .accordion__icon {
    transition: transform 0.5s ease;
}

.accordion-1 .accordion__button[aria-expanded="true"] .accordion__icon {
    transform: rotate(45deg);
    color: var(--secondary-color);
}



.accordion-1 .accordion__content {
    transition: all 0.5s ease;
}

.accordion-1 .accordion__content p {
    color: var(--grey, #777);
    font-size: 0.83rem;
}

.accordion-1 .accordion__button[aria-expanded="false"]+.accordion__content {
    max-height: 0;
    padding: 0 16px;
    overflow: hidden;
    background: #fff;
}


.accordion-1 .accordion__button[aria-expanded="true"]+.accordion__content {
    max-height: 400px;
    padding: 16px;
    overflow: hidden;
}


/* ========================================== BOX ==========================================  */
.box--base {
    background-color: var(--background);
    padding: 16px 24px;
    border-radius: 16px;
    border: 2px solid #EBECEC;
    position: relative;
}

.box--base .box__btn {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--dark);
}

.box--base .box__btn:hover {
    background-color: var(--secondary-color);
    color: var(--light);
}

.box--base .box__title {
    position: relative;
}

.box--base svg {
    margin-right: 8px;
    height: 40px;
    object-fit: contain;
}

.box--base .box__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 4px;
    background-color: #C2C3C3;
    transition: all 0.4s ease;
}

.box--base:hover .box__title::after {
    width: 120px;
    background-color: var(--primary-color);
}

/* ========================================== CARDS ==========================================  */

.card--thumb {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* imagem ocupa o espaço inicial */
.card--thumb .card__image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

/* body começa sobreposto embaixo */
.card--thumb .card__body {
    position: absolute;
    bottom: 0;
    /* escondido fora do card */
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 16px;
    transition: bottom 0.6s ease;
}

/* título + ícone */
.card--thumb .card__title {
    max-width: 90%;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.card--thumb .card__icon {
    color: var(--primary-color);
    font-size: 30px;
    cursor: pointer;
    transition: all 0.6s ease;
}

/* conteúdo escondido */
.card--thumb .card__content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
}

.card--thumb .card__button {
    padding: 8px 16px;
    width: 100%;
    border-radius: 30px;
}

/* efeito no hover */
.card--thumb:hover .card__body {
    bottom: 0;
}

.card--thumb:hover .card__content {
    opacity: 1;
    max-height: 500px;
}

.card--thumb:hover .card__image {
    transform: translateY(-50%);
    /* imagem sobe junto */
}

.card--thumb:hover .card__icon {
    transform: rotateZ(180deg);
}


.card--base {
    border-radius: 0 0 16px 16px;
    border: 1px solid #EFEFEF;
    background: #FFF;
    padding: 16px;
}

.card--base .card__icon svg {
    width: unset;
    height: 80px;
}

.card--base .card__text {
    font-size: 14px;
}

.card--base .card__btn {
    padding: 8px 16px;
    border-radius: 30px;
}

/* LOCALIZAÇÃO */
.button-back {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.button-back:hover {
    background-color: #e3e8ef;
}


/* =====================BANNER=======================*/
.banner {
    background: var(--background);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.line {
    position: absolute;
    z-index: 0;
    opacity: .6;
}

.line-top-left {
    top: 0;
    left: 0;
}

.line-top-right {
    top: 0;
    right: 0;
}

.line-bottom-left {
    bottom: -40px;
    left: 0;
}

.line-bottom-right {
    bottom: -40px;
    right: 0;
}

/* CTA */
.cta-default {
    background: linear-gradient(0deg, rgba(127, 169, 221, 0.10) 0%, rgba(25, 75, 136, 0.10) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-default .container {
    position: relative;
    z-index: 2;
}

.cta-default::before {
    content: '';
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 450px;
    height: 450px;
    background: url('../imagens/marca-agua.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 0;
}

/* ===================== CONTATO ========================= */

.box-contact {
    background-color: var(--background);
    border-radius: 16px;
    border: 1px solid #E1E2E2;
    padding: 40px 24px;
}

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

.contact__icon {
    width: 67px;
    height: 67px;
    border-radius: 16px;
    background-color: var(--secondary-color);
    color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
}

.contact :is(span, a) {
    color: var(--dark);
}

.contact__content {
    width: 90%;
}

.social-itens .social__icon {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.social-itens .social__icon:hover {
    color: var(--light);
}

.form--contato :is(input, textarea, select) {
    border-radius: 16px;
    border: 1px solid #D1D1D1;
    background-color: #FAFAFA;
    padding: 16px;
}

.form--contato :is(input, textarea, select)::placeholder {
    color: #D1D1D1;
}

.box-contact label {
    color: #888;
    font-weight: 500;
}

/* ======================== FOOTER ============================ */
footer address.address :is(span, a) {
    font-size: 16px !important;
    padding: 8px 0;
}

footer address.address i {
    color: var(--secondary-color);
    font-size: 20px;
    margin-right: 8px;
}

footer .social__icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--dark);
}

footer .social__circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* =============================== FIXED SOCIAL MEDIA GROUP =============================== */
.fixed-social-group {
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    left: 0;
    z-index: 999;
    width: max-content;
}

.fixed-social-group .share__button {
    display: block;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    color: #fff;
    width: 65px;
    height: 65px;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.fixed-social-group .share__button.facebook {
    background-color: #4267B2;
}

.fixed-social-group .share__button.twitter {
    background-color: #1DA1F2;
}

.fixed-social-group .share__button.youtube {
    background-color: #FF0000;
}

.fixed-social-group .share__button.linkedin {
    background-color: #4267B2;
}

.fixed-social-group .share__button.instagram {
    background: linear-gradient(#405DE6, #5B51D8, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45, #FFDC80);
}

.card--base{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ======================== HEADER ============================ */
@media (min-width: 992px) {
    header .nav-link {
        color: var(--dark);
        font-weight: 500;
        font-size: 1.125rem;
        margin-left: 6px !important;
        margin-right: 6px !important;
        position: relative;
    }

    header .nav-link.active {
        color: var(--primary-color) !important;
    }

    header .nav-link::after {
        position: absolute;
        content: '';
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px !important;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        opacity: 0;
        border: 0 !important;
    }

    header .nav-link.active::after,
    header .nav-link:hover::after {
        width: 100%;
        opacity: 1;
    }
}

/* UTILS */
.bg {
    background: var(--background);
    position: relative;
}

.bg .container,
.banner .container,
.bread .container {
    position: relative;
    z-index: 3;
}

.bg-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.my-8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.fs-12 {
    font-size: 0.75rem;
}

.fs-13 {
    font-size: 0.8125rem;
}

.fs-14 {
    font-size: 0.875rem;
}

.fs-15 {
    font-size: 0.9375rem;
}

.fs-16 {
    font-size: 1rem;
}

.fs-17 {
    font-size: 1.0625rem;
}

.fs-18 {
    font-size: 1.125rem;
}

.fs-20 {
    font-size: 1.25rem;
}

.fs-23 {
    font-size: 1.4375rem;
}

.fs-24 {
    font-size: 1.5rem;
}

.fs-28 {
    font-size: 1.75rem;
}

.fs-30 {
    font-size: 1.875rem;
}

.fs-32 {
    font-size: 2rem;
}

.fs-38 {
    font-size: 2.375rem;
}

.fs-40 {
    font-size: 2.5rem;
}

.pt-30 {
    padding-top: 30px;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.my-8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.py-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bg {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.bg-cta {
    background: var(--background);
    border-radius: 16px;
}

.bg-center {
    background-position: center center;
}

.bg-cover {
    background-size: cover;
}

.bg-no-repeat {
    background-repeat: no-repeat;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-900 {
    font-weight: 900;
}

.title-1 {
    padding-left: 10px;
    position: relative;
    line-height: 2rem;
}

.title-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
}

.title-line-center,
.title-line-left {
    position: relative;
}

.title-line-center::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--lineColor, var(--secondary-color));
}

.title-line-left::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--lineColor, var(--secondary-color));
}

.btn {
    padding: 11px 16px;
    font-weight: 500;
}

.btn-secondary {
    color: var(--light);
}

.btn-secondary:hover {
    background-color: var(--secondary-color-dark);
    color: var(--light);
}


.btn-rounded {
    border-radius: 32px;
}

body {
    background-color: #fafafa;
}

@media (min-width: 992px) {
    .slider-serv__navigation {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
    }

    .slider-serv .splide__arrow {
        position: unset;
        transform: translateY(0);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: transparent;
        border: 2px solid var(--primary-color);
    }

    .slider-serv .splide__arrow svg {
        fill: var(--primary-color);
    }
}