* {
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-family:'Work Sans', sans-serif;
    vertical-align: baseline;
}

.full-width {
    width: 100%;
}

.d-block {
    display: block !important;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
/* 

body {
    font-family: 'Work Sans', sans-serif
} */

.logo {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    line-height: 1;
    outline: none;
    overflow-x: hidden
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

a {
    text-decoration: none
}

body {
    font-family: var(--font-family-base);
    padding-top: var(--spacing-stack-xl)
}

.containerNew {
    max-width: 1200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* -- NAVBAR -- */

.header {
    background-color: #FFF;
    position: fixed;
    width: 100%;
    z-index: 3;
}

.containerNav {
    max-width: 1200px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    height: 84px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    padding-top: 2vh;
    align-items: flex-end;
    margin: 0 37px;
}

.menu-desktop {
    display: none;
    width: 100%;
}

.menu-desktop .menu {
    display: flex;
    justify-content: space-around;
}

.menu-desktop .menu > li {
    display: inline-block;
    cursor: pointer;
}

.menu-desktop .menu > li > a {
    display: block;
    padding-bottom: 18px;
    font-size: 18px;
    color: #1D1D1B;
}

.menu-mobile {
    display: none;
}

.menu-mobile .menu {
    flex-direction: column;
    margin-top: 5rem;
    width: 100%;
    text-align: center;
}
.menu-mobile .menu > li {
    padding: 20px;
}
.menu-mobile .menu > li > a {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    color: #EF7926;
}

.ativo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    z-index: 9;
}

.select {
    border-bottom: 4px solid #FD8B3A
}

.btn-hamburguer {
    position: relative;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0px;
    cursor: pointer;
    display: none;
    color: #FD8B3A;
}
.btn-hamburguer-left {
    background-color: #FD8B3A;
    position: absolute;
    height: 8px;
    width: 1.875rem;
    top: 1.875rem;
    left: 0px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.btn-hamburguer-left:before {
    background-color: #FD8B3A;
    position: absolute;
    width: 1.875rem;
    height: 8px;
    content: "";
    top: -20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.btn-hamburguer-left:after {
    background-color: #FD8B3A;
    position: absolute;
    width: 1.875rem;
    height: 8px;
    content: "";
    top: 20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
  
.btn-hamburguer-right {
    background-color: #FD8B3A;
    position: absolute;
    height: 8px;
    width: 1.875rem;
    top: 1.875rem;
    left: 1.875rem;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.btn-hamburguer-right:before {
    background-color: #FD8B3A;
    position: absolute;
    width: 1.875rem;
    height: 8px;
    content: "";
    top: -20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
.btn-hamburguer-right:after {
    background-color: #FD8B3A;
    position: absolute;
    width: 1.875rem;
    height: 8px;
    content: "";
    top: 20px;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
  
.active .btn-hamburguer-left {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: transparent;
}
.active .btn-hamburguer-left:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(4px, 4px);
    transform: rotateZ(45deg) scaleX(1.4) translate(4px, 4px);
}
.active .btn-hamburguer-left:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(4px, -4px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(4px, -4px);
}
.active .btn-hamburguer-right {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    background: transparent;
}
.active .btn-hamburguer-right:before {
    -webkit-transform: rotateZ(-45deg) scaleX(1.4) translate(-4px, 4px);
    transform: rotateZ(-45deg) scaleX(1.4) translate(-4px, 4px);
}
.active .btn-hamburguer-right:after {
    -webkit-transform: rotateZ(45deg) scaleX(1.4) translate(-4px, -4px);
    transform: rotateZ(45deg) scaleX(1.4) translate(-4px, -4px);
}


/* --BANNER-- */

.box-img {
    position: relative;
    z-index: 0;
    transform: translate(-20px, -20px);
}

.box-img::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 2px solid black;
    z-index: 2;
}

.box-img > img {
    transform: translate(35px, 35px);
    width: 100%;
}


.box-img-proteger {
    position: relative;
    z-index: 0;
    transform: translate(-20px, -20px);
}

.box-img-proteger::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #FD8B3A;
    z-index: 2;
}

.box-img-proteger > img {
    transform: translate(35px, 35px);
    width: 100%;
}

.banner {
    padding-top: 84px;
    position: relative
}

.banner-img {
    width: 100%;
    display: block;
}

.anchor-box {
    position: absolute;
    width: 100px;
    height: 150px;
    top: -150px;
    left: 0
}

.anchor-box .anchor-int {
    position: relative;
    height: 100%
}

.anchor-box .anchor-int .anchor {
    top: 0;
    position: absolute;
    height: 10px;
    width: 100%
}

/* .banner .container .box-titulo {
    width: 84vw;
    position: absolute;
    top: 30%
} */

.banner .container .box-titulo .titulo {
    color: white;
    font-weight: bold;
    font-size: 3.33vw;
    line-height: 3.7vw;
    text-align: center
}

/* .banner .container .box-campanha-geral {
    width: 84vw;
    position: absolute;
    top: 63%
} */

.banner .container .box-campanha-geral .box-campanha {
    background: #EF7926;
    height: 3.7vw;
    width: 39.69vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.banner .container .box-campanha-geral .box-campanha p {
    color: white;
    font-size: 1.099vw;
    font-weight: bold;
    text-align: center
}

.banner .last-box {
    padding-top: 6.563rem;
    padding-bottom: 5.313rem;
    position: relative;
    width: 100%;
    margin: 0 auto
}

.banner .last-box p {
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px
}

.banner .last-box .detalhe {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #000;
    height: 16px;
    width: 277px
}

.contrair .container {
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 80px
}

.contrair .titulo {
    color: #1D1D1B;
    font-size: 50px;
    line-height: 53px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px
}

.contrair .container-carrosel {
    width: 1300px;
    height: 430px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.contrair .carrosel {
    width: 1750px;
    position: absolute
}

.contrair .carrosel .card {
    visibility: hidden;
    max-width: 584px;
    height: 352px;
    background: #F5F5F5;
    transition: all 300ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column
}

.contrair .carrosel .card img {
    margin-bottom: 30px
}

.contrair .carrosel .card .texto {
    font-size: 20px;
    line-height: 25px;
    text-align: center;
    font-weight: 300;
    color: #1D1D1B
}

.contrair .carrosel .card .box-option {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 503px
}

.contrair .carrosel .card .box-option p {
    width: 220px;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    color: #1D1D1B;
    border-bottom: 1px solid #EF7926;
    padding-bottom: 5px;
    margin-bottom: 20px
}

.contrair .carrosel .card .box-option p span {
    color: #1D1D1B;
    position: absolute;
    width: 100%;
    left: -1.8%;
    top: 89%;
    font-size: 12px;
    font-weight: 300
}

 .contrair .carrosel .slick-active {
    visibility: visible
}

.contrair .carrosel .slick-current {
    background: #fff;
    transform: scale(1.1);
    margin-left: -280px;
    margin-right: -280px;
    box-shadow: 0px -1px 17px -5px #717171
}

.contrair .carrosel .slick-current .box-option p span {
    left: 26%
}

.contrair .carrosel .slick-list {
    padding-top: 35px !important;
    padding-bottom: 35px !important
}

.contrair .carrosel .slick-next:before, .contrair .carrosel .slick-prev:before {
    display: none
}

.contrair .carrosel .slick-arrow {
    z-index: 2;
    /* position: absolute */
}

.contrair .carrosel .slick-prev {
    left: 0 !important;
}

.contrair .carrosel .slick-next {
    right: 31%;
} 

.coqueluche {
    position: relative;
    background: #EF7926
}

.coqueluche .container {
    width: 1200px;
    margin: 0 auto;
    padding-top: 119px
}

.coqueluche .destaque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 391px;
    padding-top: 10vw;
}

.coqueluche .destaque .esquerda .titulo {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    margin: 40px 0 40px 0;
}

.coqueluche .destaque .esquerda .texto {
    color: #fff;
    font-size: 25px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 60px
}

.coqueluche .destaque .esquerda .box-play {
    display: flex;
    align-items: center
}

.coqueluche .destaque .esquerda .box-play p {
    color: white;
    font-weight: bold;
    font-size: 26px;
    margin-left: 15px
}

.coqueluche .destaque .direita {
    position: relative
}

.coqueluche .destaque .direita .borda {
    position: absolute;
    border: 2px solid #000;
    height: 580px;
    width: 558px;
    top: -35px;
    left: -29px
}

.prevencao {
    position: relative
}

.prevencao .container {
    position: relative;
    width: 1230px;
    margin: 0 auto
}

.prevencao .destaque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 65px
}

.prevencao .destaque .direita {
    margin-left: 40px
}

.prevencao .destaque .direita .titulo {
    color: #000;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 34px
}

.prevencao .destaque .direita .texto {
    color: #1D1D1B;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    margin-bottom: 33px
}

.prevencao .destaque .direita .box-play {
    display: flex;
    align-items: center
}

.prevencao .destaque .direita .box-play p {
    color: white;
    font-weight: bold;
    font-size: 26px;
    margin-left: 15px
}

.prevencao .destaque .esquerda {
    /* position: relative */
}

.prevencao .destaque .esquerda .borda {
    position: absolute;
    border: 3px solid #FD8B3A;
    height: 445px;
    width: 586px;
    top: -29px;
    left: -26px
}

.prevencao .detalhe {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #EF7926;
    height: 9px;
    width: 277px
}

.referencia .container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 58px
}

.referencia .titulo {
    color: #EF7926;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px
}

.referencia .box-accondion {
    border: 2px solid #EF7926
}

.referencia .accordion {
    background-color: #FFF;
    color: #EF7926;
    font-size: 24px;
    cursor: pointer;
    padding: 16px 0;
    font-weight: 900;
    height: 55px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #dfdfdf;
    position: relative
}

.referencia .setinha {
    position: absolute;
    right: 16px
}

.referencia .active {
    border-bottom: none
}

.referencia img {
    transition: all 0.4s ease
}

.referencia .active-arrow {
    transform: rotate(180deg)
}

.referencia .panel {
    padding-top: 25px;
    padding-bottom: 40px;
    padding-left: 45px;
    display: none;
    background-color: white;
    overflow: hidden
}

.referencia .panel .option {
    display: flex;
    margin-bottom: 20px
}

.referencia .panel .option .number {
    color: #EF7926;
    font-weight: bold;
    margin-right: 11px
}

.referencia .panel .option p {
    font-size: 15px;
    line-height: 21px;
    color: #5f5f51
}

.referencia .panel .option a {
    color: #5f5f51
}

 .sintomas {
    position: relative;
    margin-top: -300px
}

.sintomas .titulo {
    color: #1D1D1B;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 45px
}

.sintomas .texto {
    color: #fff;
    font-weight: 300;
    text-align: center;
    font-size: 20px;
    line-height: 25px
}

.sintomas .cards {
    display: flex;
    justify-content: space-between;
    margin-top: 40px
}

.sintomas .cards .card {
    width: 277px;
    height: 470px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.sintomas .cards .card .texto {
    color: #fff;
    font-size: 20px;
    font-weight: 300px
}

.sintomas .cards .card .texto b {
    color: #EF7926
}

.sintomas .cards .card .titulo {
    color: #EF7926;
    font-family: 'Bebas Neue', cursive;
    font-size: 101px;
    margin: 0
}

.sintomas .cards .card .margin-top {
    margin-top: 20px
}

.sintomas .cards .card .margin-bottom {
    margin-bottom: 40px
}

.sintomas .cards .card .margin-bottom-menor {
    margin-bottom: 25px
}

.sintomas .last-box {
    padding-top: 70px;
    padding-bottom: 93px;
    position: relative;
    margin: 0 auto
}

.sintomas .last-box p {
    color: #EF7926;
    text-align: center;
    font-weight: bold;
    font-size: 50px;
    line-height: 53px
}

.sintomas .last-box .detalhe {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #000;
    height: 9px;
    width: 277px
} 

footer {
    background: #F5F5F5
}

footer .container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding-top: 70px;
    padding-bottom: 55px
}

footer .conteudo {
    margin-top: 60px;
    display: flex;
    justify-content: space-between
}

footer .conteudo .esquerda {
    display: flex;
    flex-direction: column
}

footer .conteudo .esquerda a {
    color: #1D1D1B;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px
}

footer .conteudo .centro p {
    color: #1D1D1B;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300
}

footer .conteudo .direita .texto {
    color: #1D1D1B;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 27px
}

footer .conteudo .direita .cod {
    font-weight: bold
}

footer .copy {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px
}

footer .copy p {
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    text-align: center
}

@media (max-width: 992px) {
    .referencia .panel {
        margin: 0 20px;
        padding-left: 0;
    }

    .referencia .panel .option p:last-child {
        word-break: break-word;
    }

    .referencia .panel .option .number {
        font-size: 20px;
    }

    footer .container {
        margin: 0 37px;
    }

    footer .container .centro {
        margin-top: 30px
    }

    footer .container .direita {
        margin-top: 30px
    }

    footer .container .cod {
        margin-top: 30px
    }

    footer .copy p {
        margin: 0 37px;
    }
    
    footer .container .conteudo {
        flex-direction: column;

    }

    .referencia {
        margin: 0 37px;
    }

    .referencia .container {
        width: 100%;
    }

    .prevencao .container {
        width: 100%;
    }

    .contrair .container {
        margin: 0 37px;
    }

    .prevencao .detalhe {
        margin: 0 37px;
    }

    .prevencao .destaque .direita {
        margin-top: 60px;
        margin-left: 0;
    }

    .box-img-proteger {
        width: 90vw;
    }
  
    .banner-img {
        height: 386px;
        object-fit: cover;
        object-position: 65%;
        object-position: 20%;
    }

    .btn-hamburguer {
        display: inline-block;
    }
    
    .containerNew {
        margin-left: unset;
        margin-right: unset;
    }

    .box-titulo {
        display: none;
    }

    .banner {
        margin: 0 37px;
    }

    .banner .box-campanha-geral .box-campanha {
        width: 100% !important;
        height: 7rem !important;   
        padding: 0 18px;
    }

    .banner .box-campanha-geral .box-campanha p{
        font-size: 21px !important;
    }

    .banner .last-box {
        padding-top: 3rem;
    }

    /* .coqueluche {
        height: 250vh;
    } */

    .coqueluche .destaque {
        flex-direction: column;
        margin: 0 37px;
    }

    .prevencao .destaque {
        flex-direction: column;
        margin: 0 37px;
    }

    .prevencao .esquerda {
        width: 100%;
    }

    .coqueluche .destaque .direita{
        padding-top: 3rem;
    }

    .coqueluche .destaque .direita .borda {
        height: 350px;
        top: 30px;
        left: -19px
    }

    .sintomas .texto {
        height: 100px;
        margin-bottom: 70px;
    }
    

    .contrair .carrosel .card {
        max-width: 500px;
    }
    
    .sintomas .container {
        margin: 0 37px;
    }

    /* 
    .contrair .carrosel {
        width: 100%;
    }

    .sintomas {
        margin-top: -440px;
    } */
}


@media (max-width: 1300px) {
    .contrair .container-carrosel {
        width: 100%;
        height: 450px;
    }
    .contrair .carrosel {
        width: 100%;
    }
    .contrair .carrosel .card {
        max-width: 360px;
        width: 100%;
        padding: 15px;
    }
    
    .contrair .carrosel .slick-prev {
        /* left: -5%;
        top: 44% */
    }

    .contrair .carrosel .slick-next {
        right: 1%;
        top: 44%
    } 

    .contrair .carrosel .slick-current {
        background: #fff;
        transform: scale(1.1);
        margin-left: 0px;
        margin-right: 0px;
        box-shadow: 0px -1px 17px -5px #717171
    }
    .contrair .carrosel .card .box-option {
        width: auto;
    }
    .contrair .carrosel .card .box-option p {
        width: 49%;
        font-size: 15px;
        padding-bottom: 2px;
        margin-bottom: 5px;
        line-height: 1.2;
    }
    .contrair .carrosel .card .box-option p span {
        width: 100%;
        position: static;
        font-size: 12px;
        font-weight: 300;
    }
    .contrair .carrosel .card .texto {
        font-size: 16px;
        line-height: 18px;
    }
    
}
@media (max-width: 768px) {

    .contrair .carrosel .card {
        max-width: 90%;
        width: 100%;
        padding: 15px;
        box-shadow: unset;
    }
    .contrair .carrosel .slick-prev {
        top: 90%;
        left: 5% !important;
    }

    .contrair .carrosel .slick-next {
        right: 15%;
        top: 90%
    } 
    
}
@media (min-width: 993px) {
    .menu-desktop {
        display: block;
    }

    .banner > .container {
        margin: auto 152px;
        display: flex;
        align-items: flex-end;
        position: relative;
    }

    .box-banner{
        position: absolute;
        width: 100%;
    }

    .box-banner .box-campanha-geral{
        /*padding-top: 80px;*/
    }

    .box-banner .box-campanha {
        transform: translateY(50%);
    }

    .coqueluche .esquerda {
        width: 100%;
    }
    
}

.cards2 {background-color: red;}
.card2 {background-color: blue;padding:20px;}