﻿@font-face {
    font-family: 'Unimed Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Unimed Sans/UnimedSans-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Sans';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Unimed Sans/UnimedSans-Black.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Slab';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Unimed Slab/UnimedSlab-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Slab';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/Unimed Slab/UnimedSlab-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Slab';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Unimed Slab/UnimedSlab-SemiBold.otf') format('opentype');
}

@font-face {
    font-family: 'Unimed Slab';
    font-style: normal;
    font-weight: bold;
    font-display: swap;
    src: url('../fonts/Unimed Slab/UnimedSlab-Bold.otf') format('opentype');
}

html {
    font-family: 'Unimed Slab';
    --width-circle: 425px;
}

#header {
    width: 100%;
    background: #fff;
    height: 120px;
    font-family: 'Unimed Sans';
    position: fixed;
    top: 0;
    z-index: 3;
}

.containerHeader {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.wrapperHeader {
    display: grid;
    align-items: center;
    justify-content: space-between;
    grid-gap: 45px;
}

#logo a img {
    width: 140%;
    max-width: 450px;
}

.lineDiv {
    position: absolute;
    bottom: 0;
    width: 100%;
}

    .lineDiv img {
        width: 110%;
        position: absolute;
        top: -3px;
        left: -5px;
    }

#banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 120px;
}

.bannerSlider {
    width: 100%;
}

    .bannerSlider img {
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: cover;
    }

.imageText {
    position: absolute;
    margin-left: 3rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 1240px;
    width: 100%;
}

    .imageText h2 {
        color: #941681;
        font-family: 'Unimed Slab';
        font-weight: bold;
        font-size: 4rem;
    }

    .imageText h3 {
        color: #941681;
        font-family: 'Unimed Slab';
        font-size: 3rem;
    }

.imageItemWrapper {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.imageItem {
    max-width: 100px;
    margin-right: 50px;
}

    .imageItem img {
        width: 100px;
        height: 100px;
    }

    .imageItem p {
        color: #636062;
        font-size: 14px;
    }

#body h2 {
    color: #941681;
    font-size: 2rem;
    font-weight: 400;
}

#menuToggle {
    display: block;
    position: relative;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}

    #menuToggle a {
        text-decoration: none;
        color: #232323;
        transition: color 0.3s ease;
    }

        #menuToggle a:hover {
            color: #70428b;
        }

    #menuToggle input {
        display: block;
        width: 40px;
        height: 32px;
        position: absolute;
        top: -7px;
        left: -5px;
        cursor: pointer;
        opacity: 0;
        z-index: 2;
        -webkit-touch-callout: none;
    }

    #menuToggle span {
        display: block;
        width: 33px;
        height: 4px;
        margin-bottom: 5px;
        position: relative;
        background: #a09d98;
        border-radius: 3px;
        z-index: 1;
        transform-origin: 4px 0px;
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
    }

        #menuToggle span:first-child {
            transform-origin: 0% 0%;
        }

        #menuToggle span:nth-last-child(2) {
            transform-origin: 0% 100%;
        }

    #menuToggle input:checked ~ span {
        opacity: 1;
        transform: rotate(45deg) translate(-2px, -1px);
        background: #232323;
    }

        #menuToggle input:checked ~ span:nth-last-child(3) {
            opacity: 0;
            transform: rotate(0deg) scale(0.2, 0.2);
        }

        #menuToggle input:checked ~ span:nth-last-child(2) {
            transform: rotate(-45deg) translate(0, -1px);
        }

#menu {
    display: block;
    position: absolute;
    top: 70px;
    right: 0;
    width: 110px;
    padding: 0 1rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
    border-radius: .2rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    -webkit-font-smoothing: antialiased;
    z-index: 2;
    font-family: 'Unimed Slab';
}

    #menu li {
        padding: 10px 0;
        font-size: 18px;
        display: flex;
        align-items: center;
        background: none;
        width: 100%;
        border: none;
        border-bottom: 1px solid #eee;
        padding: .5rem 0;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        #menu li:hover {
            color: #70428b;
        }

        #menu li.subMenuClick {
            display: none;
            position: relative;
            z-index: 1;
            transition: filter 0.2s;
        }

            #menu li.subMenuClick::after {
                content: '';
                position: absolute;
                width: 105%;
                height: 90%;
                background: #70428b;
                top: 0;
                left: -5px;
                z-index: -1;
                border-radius: 10px;
            }

            #menu li.subMenuClick.cdi::after {
                background: #FDCA09;
            }

            #menu li.subMenuClick:hover {
                filter: brightness(0.8);
            }

            #menu li.subMenuClick a {
                color: white;
            }

#menuToggle input:checked ~ ul {
    transition: .3s;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    z-index: 100;
    width: 145px;
}

.containerBody {
    max-width: 1240px;
    height: 100%;
    margin: 1rem auto 0 auto;
    display: grid;
    grid-template-columns: 30% 60%;
    justify-content: center;
}

.columnContent,
.columnLogin {
    padding: 1rem 2rem;
}

.wrapperText h2,
.wrapperAddress ul {
    margin-bottom: 1rem;
}

.wrapperAddress ul {
    display: grid;
}

    .wrapperAddress ul li {
        padding: 2rem 0;
        border-top: 1px solid #70428b;
    }

.wrapperText h2 {
    max-width: 60%;
}

.wrapperText p {
    line-height: 1.2;
    font-size: 18px;
    margin: 2rem 0;
}

.wrapperAddress ul li h3 {
    color: #941681;
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: .2rem;
}

.wrapperAddress ul li h4, .wrapperAddress ul li h4 a {
    color: #941681;
    font-size: 1rem;
    margin-bottom: .2rem;
    text-decoration: none;
}

.wrapperLogin {
    display: grid;
    justify-items: flex-start;
    grid-gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

    .wrapperLogin::after {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: -30px;
        background-color: #70428b;
    }

#body .wrapperLogin h2 {
    color: #70428b;
}

.columnLogin h2 {
    position: relative;
}

.columnLogin .wrapperLogin h2::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    top: 0;
    left: -30px;
    background-color: #70428b;
}

.inputRight {
    padding: 1rem 0.5rem;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #70428b;
}

.inputRight::placeholder,
.wrapperLogin #accessButton, .accessButton {
    color: #70428b;
    font-weight: bold;
    font-size: 0.9rem;
    text-decoration: none;
}

.accessButton {
    color: white;
    padding-top: 1rem;
}

.group {
    position: relative;
    margin-bottom: 1rem;
}

    .group:first-child {
        margin-bottom: 0.8rem;
    }

input {
    padding: 1.3rem 1rem 0.7rem;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    color: #70428b;
    transition: border 0.5s;
}

    input:focus {
        outline: none;
    }

label {
    color: #70428b;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 20px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

input:focus ~ label, input:valid ~ label {
    top: 5px;
    left: 5px;
    font-size: 12px;
    color: #70428b;
}

input:focus, input:valid {
    border: 1px solid #70428b;
}

.wrapperLogin #accessButton, .accessButton {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.wrapperLogin #forgotPassword {
    color: #70428b;
    text-decoration: none;
    font-style: italic;
    font-size: 0.8rem;
    cursor: pointer;
    background-color: transparent;
}

.wrapperVideo {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%;
    margin-bottom: 2rem;
}

.infoItem {
    margin-bottom: 1rem;
}

    .infoItem h3 {
        color: #941681;
        font-size: 1.1rem;
        font-weight: bold;
        margin-bottom: .5rem;
    }

    .infoItem p {
        font-size: 18px;
    }

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.lineDivMobile {
    display: block;
    position: absolute;
    bottom: -3px;
    width: 100%;
}

#lineMobile {
    width: 100%;
}

#footer {
    width: 100%;
    height: 300px;
    display: grid;
    grid-template-columns: 30% 70%;
}

.addressInfo {
    background-color: #622e80;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body #footer h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.localizacao {
    margin-bottom: 1rem;
}

.addressInfo h3, .addressInfo h3 a {
    color: white;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.addressInfo .comoChegar {
    display: none;
    margin: 1rem 0 1.5rem 0;
}

    .addressInfo .comoChegar h4 {
        font-size: 0.8rem;
        color: white;
        margin-bottom: 0.2rem;
        font-weight: 300;
    }

        .addressInfo .comoChegar h4 bold {
            font-size: 0.8rem;
            font-weight: 500;
            color: white;
        }

    .addressInfo .comoChegar .comoChegarLeft div,
    .addressInfo .comoChegar .comoChegarRight div {
        margin-bottom: 0.5rem;
        padding-left: 0.5rem;
    }

.comoChegarLeft {
    margin-right: 25px;
}

.addressInfo .comoChegar span {
    color: #622e80;
    background-color: white;
    font-weight: bold;
    font-size: 0.8rem;
    padding: 3px 5px;
    border-radius: 10px;
    margin-top: 1rem;
}

.icons {
    display: flex;
    align-items: center;
}

    .icons span {
        display: flex;
        align-items: center;
        border: 2px solid #fff;
        padding: 5px;
        border-radius: 50%;
        cursor: pointer;
    }

    .icons a + a {
        margin-left: 1rem;
    }

.linkInfo {
    background-color: #693985;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2rem 6rem;
    grid-gap: 2rem;
}

.siteMap {
    border-right: 2px solid white;
}

.linkInfo .siteMap {
    display: grid;
}

.linkInfo h2 {
    color: white;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.linkInfo .siteMap a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0.5rem 0;
    font-size: 1.0rem;
    font-weight: 500;
}

.telInfo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

    .telInfo .telItem {
        margin-bottom: 1rem;
    }

        .telInfo .telItem h3 {
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 0.2rem;
        }

        .telInfo .telItem span {
            color: white;
            font-weight: 400;
        }

.rights p {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
    color: white;
    font-weight: 300;
}

    .rights p bold {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        color: white;
        font-weight: 400;
    }

.rights a img {
    filter: brightness(1) grayscale(1);
    width: 100px;
    margin-top: 0.5rem;
}

.bannerSlider {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 48px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    color: #941681;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
}

    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.2);
    }

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

.parallax_imgLAC {
    min-height: 500px;
    background-image: url('../images/laboratorio/AdobeStock_3799694802.jpg');
    background-attachment: fixed;
    background-position: 65% 25%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.parallax_imgCDI {
    min-height: 500px;
    background-image: url('../images/laboratorio/CDI_Banner.jpg');
    background-attachment: fixed;
    background-position: 65% 25%;
    background-repeat: no-repeat;
    background-size: 100%;
}

.containerModal {
    position: fixed;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5)
}

.wrapperModal {
    background: white;
    max-width: 600px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Unimed Sans", sans-serif;
    padding: 0 5rem;
    text-align: center;
    border-radius: 12px;
}

    .wrapperModal h1 {
        font-size: 2rem;
        font-weight: 600;
        color: #622e80;
        padding-bottom: 2rem;
    }

    .wrapperModal p {
        padding-bottom: 1rem;
        line-height: 1.2;
    }

        .wrapperModal p a {
            color: #622e80;
            text-decoration: none;
        }

            .wrapperModal p a:hover {
                text-decoration: underline;
            }

    .wrapperModal #closeModal {
        background-color: transparent;
        height: 45px;
        font-size: 1rem;
        width: 260px;
        border: 1px solid #622e80;
        color: #622e80;
        border-radius: 12px;
        transition: 0.3s ease;
    }

        .wrapperModal #closeModal:hover {
            background-color: #622e80;
            color: white;
        }

.buttonHeader {
    background-color: #7C7C7B;
    padding: 1rem 2rem;
    border: 0;
    color: white;
    border-radius: 24px;
    font-family: 'Unimed Sans';
    cursor: pointer;
    transition: 0.2s;
}

    .buttonHeader:hover {
        filter: brightness(90%);
    }

@-webkit-keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
/*content: url('../images/laboratorio/prevArrow.svg');*/
/*content: url('../images/laboratorio/nextArrow.svg');*/

#localizacaoContainer, .lineDivMobile, .footerMobile, .addressInfo .rights, #imgMobile {
    display: none;
}

.hidden {
    display: none !important;
}

.coleta {
    margin-top: 5px;
}

.error, .naoLocalizado {
    color: red;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}

.radioGroup {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
}

.checkClient {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 50px;
    top: 0;
    left: 0;
    pointer-events: all;
}

    .checkClient input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .checkClient:hover input ~ .checkmark {
        background-color: #ccc;
    }

    .checkClient input:checked ~ .checkmark.cdi {
        background-color: #FDCA09;
        color: white;
    }

    .checkClient input:checked ~ .checkmark.lac {
        background-color: #70428b;
        color: white;
    }

        .checkClient input:checked ~ .checkmark:after {
            display: block;
        }

    .checkClient .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: #eee;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        transition: 0.3s ease;
    }

        .checkClient .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

/** CDI */
#banner.cdi .imageText {
    max-height: var(--width-circle);
    height: 100%;
}

#banner.cdi .prev, #banner.cdi .next {
    color: #FDCA09;
}

#banner.cdi .circle {
    background-color: rgba(0,0,0,0.5);
    max-width: var(--width-circle);
    max-height: var(--width-circle);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle div {
    display: flex;
    flex-direction: column;
    max-width: 70%;
    justify-content: center;
    align-items: flex-start;
}

.circle .firstColor {
    color: #FDCA09;
    font-size: 5rem;
}

.circle .secondColor {
    color: white;
    font-size: 5rem;
}

.circle p.firstColor {
    font-size: 2rem;
}

#buttonCDI {
    display: none;
}

#body.cdi h2,
#body.cdi input,
#body.cdi label,
#body.cdi input::placeholder,
#body.cdi .wrapperLogin #accessButton,
#body.cdi .accessButton,
#body.cdi .wrapperLogin #forgotPassword,
#body.cdi input:focus ~ label,
#body.cdi input:valid ~ label {
    color: #7C7C7B;
}

#body.cdi .columnLogin .wrapperLogin h2, #body.cdi .infoWrapper .infoItem h4 {
    color: #606060;
}


    #body.cdi .columnLogin .wrapperLogin h2::after {
        background-color: #FDCA09;
        z-index: 1;
    }

#body.cdi .wrapperLogin::after {
    background-color: #7C7C7B;
}

#body.cdi input:focus, input:valid {
    border: 1px solid #7C7C7B;
}

#body.cdi .wrapperAddress h2 {
    font-size: 1.5rem;
    max-width: 70%;
}

    #body.cdi .wrapperAddress h2::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 100%;
        top: 0;
        left: -30px;
        background-color: #FDCA09;
    }

#body.cdi .wrapperAddress ul li {
    border-top: 0;
    padding: 1rem 0;
}

#body .lightPurple {
    color: #70428b !important;
    font-weight:bold;
}

#body.cdi .columnLogin .wrapperLogin h2.lightPurple::after {
    background-color: #70428b;
    z-index: 1;
}

#body .botaoCTA {
    background-color: #70428b;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
}

    #body .botaoCTA:hover {
        background-color: #885ca2;
    }

#body.cdi .wrapperAddress ul li h3 {
    font-family: 'Unimed Slab';
    font-weight: bold;
    color: #7c7c7b;
    position: relative;
}

        #body.cdi .wrapperAddress ul li h3::after {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            top: 3px;
            left: -20px;
            background-color: #FDCA09;
        }

.cdi .wrapperInformation {
    position: relative;
}

    .cdi .wrapperInformation::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 100%;
        top: 0;
        left: -30px;
        background-color: #FDCA09;
    }

    .cdi .wrapperInformation p {
        font-size: 1.2rem;
        max-width: 75%;
    }

    .cdi .wrapperInformation span {
        font-family: 'Unimed Slab';
        font-weight: bold;
        font-size: 1.8rem;
        margin-top: 1rem;
    }

#body.cdi .wrapperText h2 {
    max-width: 100%;
    font-size: 2.25rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #606060;
}

#body.cdi .wrapperText p {
    font-size: 1.25rem;
    margin: 1rem 0 2rem;
}

#body.cdi .infoWrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem 2rem;
}

    #body.cdi .infoWrapper .infoItemGridWrapper {
        align-content: space-between;
        display: grid;
    }

    #body.cdi .infoWrapper .infoItem h3 {
        color: #FDCA09;
        font-size: 1.3rem;
    }

        #body.cdi .infoWrapper .infoItem h3:nth-child(2) {
            margin-bottom: 1rem;
        }

    #body.cdi .infoWrapper .infoItem h4 {
        font-family: 'Unimed Slab';
        font-weight: bold;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    #body.cdi .infoWrapper .infoItem p {
        font-size: 1.15rem;
        line-height: 1.4;
    }

#body.cdi .wrapperAddress ul li p {
    line-height: 1.2;
}

#localizacaoContainer.cdi .titleServicos {
    display: none;
}

#image-slider {
    margin-bottom: 1rem;
}

#secondary-slider {
    margin-bottom: 2rem;
}

.splide__arrow--prev {
    left: -2em !important;
}

.splide__arrow--next {
    right: -2em !important;
}

.splide__arrow {
    background: transparent !important;
}

    .splide__arrow svg {
        fill: #FDCA09 !important;
    }

.splide--nav > .splide__track > .splide__list > .splide__slide {
    border: 2px solid transparent !important
}

    .splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
        border-color: #FDCA09 !important;
    }

#body.cdi .splide__slide img {
    width: 100%;
    height: auto;
}

#footer.cdi .addressInfo {
    background-color: #858387;
}

#footer.cdi .linkInfo {
    background-color: #8C8C8C;
}

@media (max-width: 1440px), (pointer: coarse) {
    .lineDiv img {
        width: 200%;
    }

    .imageText {
        width: 90%;
    }

    .parallax_imgLAC, .parallax_imgCDI {
        background-position: 65% 25%;
        background-size: 120%;
    }
}

@media (max-width: 1300px), (pointer: coarse) {
    .parallax_imgLAC, .parallax_imgCDI {
        background-position: 65% 25%;
        background-size: 120%;
    }
}

@media (max-width: 1060px), (pointer: coarse) {
    #banner {
        max-height: 400px;
    }

    .parallax_imgLAC, .parallax_imgCDI {
        min-height: 400px;
        background-position: 70% 20%;
        background-size: 150%;
    }

    .bannerSlider img {
        max-height: 400px;
    }

    .imageText {
        width: 85%;
        left: 45%;
    }

    .imageItem {
        margin-right: 25px;
    }

    .imageText h2 {
        font-size: 3rem;
    }

    .imageText h3 {
        font-size: 2rem;
    }

    .imageItem img {
        width: 75px;
        height: 75px;
    }

    .containerBody {
        grid-template-columns: 35% 65%;
    }

    .wrapperText h2 {
        max-width: inherit;
    }

    #footer {
        grid-template-columns: 1fr;
    }

    .addressInfo {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .icons {
        grid-column: 2/3;
    }

    /** CDI */

    html {
        --width-circle: 325px;
    }

    .circle .firstColor, .circle .secondColor {
        font-size: 3rem;
    }

    .circle p.firstColor {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px), (pointer:coarse) {
    .buttonHeader {
        display: none;
    }

    .containerHeader {
        padding: 0 1rem;
    }

    .lineDivMobile {
        display: block;
        position: absolute;
        bottom: -3px;
        width: 100%;
    }

    #lineMobile {
        width: 100%;
    }

    #body h2 {
        font-size: 1.5rem;
    }

    #logo a img {
        width: 100%;
    }

    .containerBody {
        display: flex;
        flex-direction: column;
    }

    .columnContent {
        max-width: inherit;
        padding: 1rem 0;
    }

    .wrapperText, .infoWrapper {
        padding: 0 2rem;
    }

    .addressInfo {
        display: flex;
        padding: 2rem;
    }

    .linkInfo {
        padding: 2rem;
        grid-gap: 1rem;
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }

    .logoFooter img {
        max-width: 300px;
        width: 100%;
    }

    .localizacao {
        margin: 1rem 0;
    }

    .icons {
        margin-bottom: 1rem;
    }

    .linkInfo .siteMap {
        border-right: 0;
        border-bottom: 2px solid white;
        padding-bottom: 0.5rem;
        align-items: center;
    }

    .addressInfo .comoChegar {
        flex-direction: column;
    }

    .comoChegarLeft {
        margin-right: inherit;
        margin-bottom: 25px;
    }

    .wrapperAddress ul {
        flex-direction: column;
    }

    .imageItemWrapper {
        display: none;
    }

    .imageText {
        bottom: 20%;
    }

    .wrapperLogin {
        margin-bottom: 1rem;
    }

        .wrapperLogin h2 {
            width: 30%;
        }

        .wrapperLogin::after {
            display: none;
        }

    .columnLogin {
        padding: 0 3rem;
    }

        .columnLogin .wrapperLogin h2::after {
            width: 30px;
            left: -52px;
        }

    .footerMobile, .addressInfo .rights {
        display: block;
    }

    #localizacaoContainer {
        display: flex;
        background: #921580;
        padding: 0 2rem;
    }

        #localizacaoContainer ul li {
            padding: 2rem 0;
        }

            #localizacaoContainer ul li:not(:first-child) {
                border-top: 1px solid white;
            }

            #localizacaoContainer ul li h3 {
                color: white;
                font-size: 1.1rem;
                font-weight: bold;
                margin-bottom: .3rem;
            }

            #localizacaoContainer ul li h4, #localizacaoContainer ul li h4 a {
                color: white;
                font-size: 1rem;
                margin-bottom: .3rem;
                text-decoration: none;
            }

            #localizacaoContainer ul li p {
                color: white;
                margin-bottom: 0.3rem;
            }

    #imgMobile {
        display: block;
    }

    #imgWeb {
        display: none;
    }

    .parallax_imgLAC, .parallax_imgCDI {
        min-height: 300px;
        background-position: 100% 21%;
        background-size: 170%;
    }

    /** CDI */

    #body.cdi .wrapperText h2 {
        font-size: 1.5rem;
    }

    #body.cdi .infoWrapper {
        grid-template-columns: 1fr;
    }

        #body.cdi .infoWrapper .infoItemGridWrapper:last-child {
            border-bottom: 1px solid #807e7f;
            grid-row: 1;
        }

    #body.cdi .wrapperItemTitle {
        display: flex;
    }

    #body.cdi .infoWrapper .infoItem h4 {
        display: none;
    }

    #body.cdi .wrapperItemTitle h3:first-child {
        margin-right: 6px;
    }

    #body.cdi .wrapperText p {
        font-size: 1.15rem;
    }

    #localizacaoContainer.cdi .titleServicos {
        display: block;
        font-size: 1.8rem;
        font-weight: bold;
        position: relative;
        z-index: 1;
    }

        #localizacaoContainer.cdi .titleServicos::after {
            content: '';
            background: #FDCA09;
            width: 130%;
            height: 170%;
            position: absolute;
            top: -15px;
            left: -35px;
            z-index: -1;
        }

    #localizacaoContainer.cdi {
        background: white;
        flex-direction: column;
        align-items: flex-start;
    }

        #localizacaoContainer.cdi ul li {
            padding: 1rem 0;
        }

            #localizacaoContainer.cdi ul li:not(:first-child) {
                border-top: 1px solid #878787;
            }

            #localizacaoContainer.cdi ul li h3 {
                color: #878787;
            }

            #localizacaoContainer.cdi ul li p {
                color: #878787;
            }

        #localizacaoContainer.cdi .wrapperInformation {
            display: none;
        }


    .splide__arrow {
        display: none !important;
    }

    html {
        --width-circle: 250px;
    }

    .circle .firstColor, .circle .secondColor {
        font-size: 2.8rem;
    }

    .circle p.firstColor {
        font-size: 1.5rem;
    }
}

@media (max-width: 630px) {
    .lineDiv img {
        width: 305%;
    }

    .imageText h2 {
        font-size: 2rem;
    }

    .imageText h3 {
        font-size: 1.5rem;
    }

    .wrapperLogin h2 {
        width: 45%;
    }

        .wrapperModal h1 {
            padding-bottom: 1rem;
            font-size: 1.7rem;
        }

        .wrapperModal p {
            padding-bottom: 0.7rem;
            line-height: 1.1;
        }

    /** CDI */
    #body.cdi .infoWrapper {
        grid-gap: 1rem 1rem;
    }

        #body.cdi .infoWrapper .infoItem p {
            line-height: 1.2;
        }

        #body.cdi .infoWrapper .infoItem h3 {
            font-size: 1.2rem;
        }

    #localizacaoContainer.cdi ul {
        width: 100%;
    }

    html {
        --width-circle: 175px;
    }

    .circle .firstColor, .circle .secondColor {
        font-size: 2rem;
    }

    .circle p.firstColor {
        font-size: 1rem;
    }
}

@media (max-width: 425px) {
    .imageText {
        width: 75%;
        left: 30%;
    }

    form {
        width: 100%;
    }

    .parallax_imgLAC, .parallax_imgCDI {
        min-height: 200px;
        background-position: 90% 18%;
    }

    /** CDI */

    html {
        --width-circle: 125px;
    }

    .circle .firstColor, .circle .secondColor {
        font-size: 1.5rem;
    }

    .circle p.firstColor {
        font-size: 0.8rem;
    }
}
