/*FONTS <<< Carregar as fontes no ficheiro fonts.css >>> */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

.openSans {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.openSansSemiBold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

.openSansBold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.openSansExtraBold {
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
}


html {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    color: #232326;
    font-size: 16px;
    line-height: 150%;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    background-color: #F4F4F4;
}

section {
    position: relative;
    width: 100%;
    max-width: 100%;
}

strong,
.bold {
    font-weight: 600;
}

em,
.italic {
    font-style: italic;
}

a {
    text-decoration: none;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.ancora {
    position: absolute;
    top: -120px;
    left: 50%;
    pointer-events: none;
}

.limitador {
    width: 1200px;
    max-width: 100%;
    margin: auto;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.container,
.row>* {
    padding-left: 30px;
    padding-right: 30px;
}

.row {
    margin-left: -30px;
    margin-right: -30px;
}

.stdText iframe {
    max-width: 100% !important;
}

.stdText img {
    max-width: 100%;
    height: auto;
}

.stdText ul,
.stdText ol {
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
}

.stdText ul li {
    list-style: disc;
}

.stdText ol li {
    list-style: decimal;
}

.stdText h1,
.stdText h2,
.stdText h3,
.stdText h4,
.stdText h5,
.stdText h6 {
    margin-bottom: 20px;
}

.stdText h1 {
    font-size: 28px;
    line-height: 130%;
}

.stdText h2 {
    font-size: 26px;
    line-height: 130%;
}

.stdText h3 {
    font-size: 24px;
    line-height: 130%;
}

.stdText h4 {
    font-size: 22px;
    line-height: 140%;
}

.stdText h5 {
    font-size: 20px;
    line-height: 140%;
}

.stdText h6 {
    font-size: 18px;
    line-height: 150%;
}

.stdText p {
    margin-bottom: 20px;
}

.stdText a {
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.stdText a:hover {}

.stdButton {
    position: relative;
    width: 360px;
    max-width: 100%;
    min-height: 60px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 15px;
    background-color: #006FBA;
    overflow: hidden;
    -webkit-transition: all 600ms ease-in-out;
    -moz-transition: all 600ms ease-in-out;
    -o-transition: all 600ms ease-in-out;
    -ms-transition: all 600ms ease-in-out;
    transition: all 600ms ease-in-out;
}

.stdButton:hover {
    background-color: #002341;
}

.stdButton p,
.stdButton i {
    position: relative;
    color: transparent;
    text-shadow: 0 0 0 rgba(255, 255, 255, 1), -50px 0 0 rgba(255, 255, 255, 0);
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
    z-index: 1;
}

.stdButton:hover p,
.stdButton:hover i {
    color: transparent;
    text-shadow: 50px 0 0 rgba(255, 255, 255, 0), 0 0 0 rgba(255, 255, 255, 1);
}

.titulo1 {
    font-size: 32px;
    line-height: 120%;
}

.titulo2 {
    font-size: 20px;
    line-height: 140%;
}

.blue {
    color: #006FBA;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}

.dropShadow {
    -webkit-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 5px 5px 5px 0px rgba(0, 0, 0, 0.15);
}

.textShadow {
    color: transparent;
    text-shadow: 0 0 0 rgba(0, 0, 0, 1), -20px 0 0 rgba(0, 0, 0, 0);
}

.textShadow:hover {
    color: transparent;
    text-shadow: 20px 0 0 rgba(0, 0, 0, 0), 0 0 0 rgba(0, 0, 0, 1);
}

.filtro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 65, 0.45);
    z-index: -1;
    pointer-events: none;
}

.barra {
    position: relative;
    width: 360px;
    max-width: 100%;
    height: 1px;
    background-color: #ffffff;
    margin: auto;
}

.linha {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 1px;
    background-color: #232326;
    margin: auto;
}

.areaPolos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.areaPolos a {
    max-width: 100%;
}

.stdForm .stdInput {
    width: 100%;
    max-width: 100%;
    height: 60px;
}

.stdForm .stdTextArea {
    width: 100%;
    max-width: 100%;
    height: 160px;
    min-height: 120px;
    max-height: 300px;
    resize: none;
}

.stdForm .stdFile {
    cursor: pointer;
}

.stdForm .custom-file {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    cursor: pointer;
}

.stdForm .custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 60px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.stdForm .custom-file-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: .375rem;
    padding: 1rem .75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
}





.stdForm .name3,
.stdForm .department3 {
    display: none;
}

.stdForm #name3,
.stdForm #department3 {
    display: none;
}




.stdRealContact .form-check {
    width: fit-content;
    margin-bottom: 15px;
}

.stdRealContact label {
    font-size: 14px;
}

.stdRealContact .stdPopup {
    font-weight: 600;
}

.popup .popupBox1 {
    border-radius: .375rem;
}

.popup .stdForm .form-floating {
    margin-bottom: 10px;
}

.acceptCookies .acceptCookiesArea .stdButton {
    width: 200px;
}

.slickNav {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.slickNav .slickBtn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0;
    background-color: #7B7B7D;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slickNav .slickBtn:hover {
    background-color: #006FBA;
}

.socialAndShare {
    gap: 15px;
}

.socialAndShare .socialAndShareBtn {
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
    border-radius: .375rem;
    background-color: #7B7B7D;
    border-color: #7B7B7D;
}

.socialAndShare .socialAndShareBtn:hover {
    background-color: #006FBA;
    border-color: #006FBA;
}


/*
.section1 .slick, .section1 .slick-list, .section1 .slick-track, .section1 .slick-slide { height: 100%; }
*/

.section1 {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    color: #ffffff;
}

.section1 .jarallax,
.section1 .slick {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section1 .jarallax::before,
.section1 .slick::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 65, 0.45);
    z-index: 1;
    pointer-events: none;
}

.section1 .slick,
.section1 .slick-list,
.section1 .slick-track,
.section1 .slick-slide {
    height: 100%;
}

.section1 .slickNav {
    display: none;
}

.section1 .slick .image {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.section1 .row {
    min-height: 100vh;
}

.section1 .box {
    position: relative;
    max-width: 100%;
    text-align: center;
    margin: 175px auto;
}

.section1 .box .logo {
    width: 225px;
    max-width: 70%;
}

.section1 .box .barra {
    margin-bottom: 20px;
}

.section2 {
    padding: 120px 0 60px 0;
    text-align: center;
}

.section2 .box {
    position: relative;
    width: 500px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 60px;
}

.section2 .box1::before {
    content: "";
    position: absolute;
    top: 120px;
    left: 50%;
    width: calc(100% + 60px);
    height: 1px;
    background-color: #232326;
}

.section2 .box3::before {
    content: "";
    position: absolute;
    top: 120px;
    right: 50%;
    width: calc(100% + 60px);
    height: 1px;
    background-color: #232326;
}

.section2 .destaqueIcon {
    position: relative;
    width: 90px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin: auto;
    margin-bottom: 20px;
}

.section2 .linhaVertical {
    position: relative;
    width: 1px;
    height: 15px;
    background-color: #232326;
    margin: auto;
    margin-bottom: 20px;
}

.section2 .areaCertificacoes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.section2 .logoCertificacao {
    position: relative;
    width: 90px;
    height: 90px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section3 {
    padding: 120px 0;
}

.section3 .slick {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section3 .slick::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    pointer-events: none;
}

.section3 .slick,
.section3 .slick-list,
.section3 .slick-track,
.section3 .slick-slide {
    height: 100%;
}

.section3 .slickNav {
    display: none;
}

.section3 .slick .image {
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.section3 .slideText {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.section3 .slideText h6 {
    font-size: 72px;
    line-height: 72px;
    writing-mode: vertical-rl;
}

.section3 .linha {
    margin-bottom: 30px;
}

.section3 .openSlide {
    position: relative;
    width: 90px;
    height: 90px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0;
}

.section3 .openSlide:hover img {
    transform: rotate(360deg);
}

.section4 {
    padding: 60px 0 120px 0;
    text-align: center;
}

.section4 .areaDestaques {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.section4 .areaDestaques .box {
    position: relative;
    width: 33.333%;
    max-width: 100%;
    color: #ffffff;
    padding: 60px;
    margin-bottom: 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section4 .areaDestaques .box .texto {
    position: relative;
    z-index: 2;
}

.section4 .areaDestaques .box .detalhes strong {
    font-size: 20px;
    line-height: 140%;
}

.section4 .areaDestaques .box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.section4 .areaDestaques .box1::before {
    background-color: rgba(0, 35, 65, 0.75);
}

.section4 .areaDestaques .box2::before {
    background-color: rgba(0, 111, 186, 0.75);
}

.section4 .areaDestaques .box3::before {
    background-color: rgba(3, 78, 162, 0.75);
}

.section5 {
    padding: 120px 0;
    text-align: center;
    background-color: #E9E9E9;
}

.section5 a:hover {
    opacity: 0.6;
}

.section5 .noticia {
    color: #232326;
}

.section5 i {
    font-size: 12px;
}

.section5 .data {
    color: #7B7B7D;
}

.section6 {
    padding: 120px 0;
}

.section6 .stdForm {
    position: relative;
}

.section6 .stdForm .form-floating,
.section6 .stdForm .stdFile {
    display: inline-block;
    vertical-align: middle;
    width: calc(50% - 15px);
    max-width: 100%;
    margin-bottom: 15px;
}

.section6 .stdForm .form-floating:nth-child(odd),
.section6 .stdForm .stdFile {
    margin-left: 15px;
}

.section6 .stdForm .form-floating:nth-child(even) {
    margin-right: 15px;
}

.section6 .stdForm .textarea {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
    margin-left: 0 !important;
    margin-bottom: 15px;
}

.section6 .subject0 {
    display: none !important;
}

.section6 #checkForRealContact0 {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 100%;
}

.section6 .stdButton {
    margin-left: 0;
}

.section7 {
    padding: 120px 0;
    color: #ffffff;
    background-color: #002341;
}

.section7 a {
    color: #ffffff;
    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}

.section7 a:hover {
    color: #48BCEC;
}

.section7 .form-floating>label {
    color: #232326;
}

.section7 .formNewsletter {
    position: relative;
    margin-bottom: 60px;
}

.section7 .formNewsletter #emailNewsletter {
    margin-bottom: 10px;
    padding-right: 72px;
}

.section7 #submitNewsletter {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 1;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .375rem;
    background-color: transparent;
}

.section7 #submitNewsletter i {
    font-size: 16px;
    line-height: 100%;
    font-weight: 300;
    text-shadow: 0 0 0 rgba(0, 111, 186, 1), -50px 0 0 rgba(255, 255, 255, 0);
}

.section7 #submitNewsletter:hover {
    background-color: #006FBA;
}

.section7 #submitNewsletter:hover i {
    text-shadow: 50px 0 0 rgba(0, 111, 186, 0), 0 0 0 rgba(255, 255, 255, 1);
}

.section7 .stdRealContact .form-check {
    margin-left: auto;
    margin-right: auto;
}

.section7 .legal {
    font-size: 12px;
    line-height: 150%;
}

.section7 .moradaPolos .titulo2 {
    margin-bottom: 5px;
}

.section7 .department1,
.section7 .subject1 {
    display: none;
}

.section7 .contactForm {
    margin-bottom: 30px;
}

.section7 .contactForm .form-floating {
    margin-bottom: 10px;
}

.section7 .stdButton:hover {
    background-color: #48BCEC;
}

.section7 .socialAndShare {
    margin-top: 60px;
    margin-bottom: 30px;
}

.section7 .socialAndShareBtn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: .375rem;
    background-color: #ffffff;
}

.section7 .socialAndShareBtn i {
    text-shadow: 0 0 0 rgba(0, 35, 65, 1), -50px 0 0 rgba(255, 255, 255, 0);
}

.section7 .socialAndShareBtn:hover {
    background-color: #006FBA;
}

.section7 .socialAndShareBtn:hover i {
    text-shadow: 50px 0 0 rgba(0, 35, 65, 0), 0 0 0 rgba(255, 255, 255, 1);
}

.section7 .apoios {
    position: relative;
    text-align: center;
}

.section7 .imgApoios {
    margin: auto auto 30px auto;
    max-width: 100%;
}

.section7 .imgApoios:hover {
    opacity: 0.5;
}

.section7 .areaRodape {
    text-align: center;
}

.section7 .areaRodape p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0px 30px;
    margin-bottom: 5px;
}

.section7 .utd {
    text-align: center;
}

.section7 #micrositeUTD {
    width: 45px;
    margin: auto;
}

.section8 {
    min-height: initial;
}

.section8 .imgFundo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section8 .imgFundo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 65, 0.45);
    z-index: 1;
    pointer-events: none;
}

.section8 .row {
    min-height: initial;
}

.section8 .box {
    margin: 250px auto 100px auto;
}

.section8 .titulo {
    font-size: 64px;
    line-height: 120%;
}

.section9 {
    padding: 120px 0 0 0;
    text-align: center;
}

.section9 .stdButton {
    margin-top: 30px;
}

.section10 {
    padding: 120px 0 0 0;
}

.section10 .areaTitulo {
    position: relative;
    padding: 30px 0;
    border-bottom: 1px solid #BDBDBE;
}

.section10 .areaTitulo .linha {
    position: absolute;
    bottom: 5px;
    left: 0;
    background-color: #BDBDBE;
}

.section10 .areaServico {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 50px;
    padding: 20px 0 20px 50px;
    border-bottom: 1px solid #BDBDBE;
    overflow: hidden;
}

.section10 .areaServico .area1 {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 0px;
    cursor: pointer;
}

.section10 .areaServico .area1 .zonaIcon {
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.section10 .areaServico .area1 .resumo {
    position: relative;
    width: 100%;
    max-width: 100%;
    /*min-height:24px;*/
}

.section10 .areaServico .area1 .resumo .curto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.section10 .areaServico .area1 .resumo .curto * {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.section10 .areaServico .area1 .resumo .completo {
    padding-top: 10px;
}

.section10 .areaServico .area2 .stdButton {
    width: 250px;
}

.section10 .areaServico .area1.expandido .zonaIcon i {
    transform: rotate(180deg);
}

.section10 .areaServico .area1.expandido .resumo .curto {
    opacity: 0;
}

.section11 {
    padding: 60px 0;
}

.section11 .slick-slide {
    margin: 0 27px;
}

.section11 .slick-list {
    margin: 0 -27px;
}

.section11 .areaTecnico {
    width: 450px;
    max-width: 100%;
    margin: auto;
    text-align: center;
    margin-bottom: 30px;
}

.section11 .areaTecnico .imagemTecnico {
    position: relative;
    width: 175px;
    max-width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section12 {
    padding: 120px 0;
    background-color: #E9E9E9;
}

.section12 a,
.section12 .morada {
    color: #006FBA;
}

.section12 a:hover {
    color: #48BCEC;
}

.section12 .legal {
    font-size: 12px;
    line-height: 150%;
}

.section12 .stdForm {}

.section12 .stdForm .form-floating {
    width: calc(50% - 18px);
}

.section12 .stdForm .department2,
.section12 .stdForm .subject2 {
    display: none;
}

.section12 .stdForm .message2 {
    width: 100%;
    max-width: 100%;
}

.section13 {
    padding: 120px 0;
    text-align: center;
}

.section14 {
    padding: 120px 0;
    text-align: center;
}

.section14 .form-floating>label {
    display: none;
}

.section14 #widgetsTitle,
.section14 #widgetsPromotionDate {
    display: none !important;
}

.section14 #loadAllPosts,
.section14 #loadMorePosts {
    margin-top: 30px;
}

.section14 #dynamicPostsList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0px;
}

.section14 .blogWidget {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 30px 0;
    border-bottom: 1px solid #ced4da;
}

.section14 .blogWidget:hover {
    opacity: 0.5;
}

.section14 .blogWidget a {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    cursor: pointer;
}

.section14 .blogWidget i {
    font-size: 12px;
}

.section14 .blogWidget .data {
    color: #7B7B7D;
}

.section14 .blogWidget .imgBlog {
    width: 750px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 10px;
}

.section15 .imgFundo {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/800;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section15 .imgFundo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 35, 65, 0.45);
    z-index: 1;
    pointer-events: none;
}

.section16 {
    padding: 60px 0;
}

.section16.section16noPhoto {
    padding-top: 180px;
}

.section16 .shareThis {
    margin: 30px auto 60px 0;
}

.section16 .linha {
    margin-bottom: 60px;
}

.section16 .likeThisArticle .stdButton {
    margin: 0 auto 60px 0;
}

.section16 .likePost i {
    display: none;
}

.section16 .likePost .contagem {
    color: #ffffff;
}

.section16 .commentsForm {
    margin-bottom: 30px;
}

.section16 .commentsForm .form-floating {
    margin-bottom: 10px;
}

.section16 .commentsForm .stdButton {
    margin-left: 0;
}

.section16 .commentWidget {
    margin: auto;
}

.section16 .commentWidget .linha {
    margin-bottom: 30px;
}

.section16 .commentWidget:last-of-type .linha {
    display: none;
}

.section17 {
    padding-bottom: 120px;
    text-align: center;
}

.section17 .areaLogoParceiro {
    width: 300px;
    max-width: 100%;
    aspect-ratio: 3/2;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.section17 .slick-slide {
    margin: 0 30px;
}

.section17 .slick-list {
    margin: 0 -30px;
}


.node1 {
    display: flex;
    justify-content: space-between;
}

.section3 {
    padding: 60vh 0 0 0;
}

.section3 .slick::before {
    display: none;
}

.node2 {
    padding: 30px 0 0 0;
}

.node3 {
    padding: 0 0 30px 0;
}

.node4 {
    margin-bottom: 10px;
}


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    .ancora {
        top: -80px;
    }

    .section4 .areaDestaques .box {
        padding: 60px 30px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

    .section2 .box1::before,
    .section2 .box3::before {
        display: none;
    }

    .section2 .linhaVertical {
        display: none;
    }

    .section3 .slideText {
        position: absolute;
        height: auto;
        bottom: 0;
        left: 0;
        justify-content: center;
    }

    .section3 .slideText h6 {
        font-size: 120px;
        line-height: 120px;
        writing-mode: inherit;
        opacity: 0.35;
    }

    .section4 .areaDestaques .box {
        width: 100%;
        margin-bottom: 15px;
        padding: 60px;
    }

    .section4 .areaDestaques .box:last-of-type {
        margin-bottom: 60px;
    }

    .section5 .noticia {
        margin-bottom: 60px;
    }

    .section5 .col-lg-4:last-of-type .noticia {
        margin-bottom: 0px;
    }

    .section7 {
        text-align: center;
    }

    .section7 .formNewsletter,
    .section7 .contactForm {
        width: 650px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .section7 .contactForm {
        margin-bottom: 60px;
    }

    .section7 .socialAndShare {
        justify-content: center;
        margin-bottom: 60px;
    }

    .section7 .moradaPolos:last-of-type {
        margin-bottom: 60px;
    }

    .section7 .imgApoios {
        margin-bottom: 60px;
    }

    .section8 .titulo {
        font-size: 55px;
        line-height: 120%;
    }

    .section10 .areaServico {
        flex-direction: column;
        gap: 20px;
        padding-left: 40px;
    }

    .section10 .areaServico .area1 .zonaIcon {
        left: -40px;
        width: 40px;
    }

    .section12 {
        text-align: center;
    }

    .section12 .box {
        margin-bottom: 60px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .section3 .slideText h6 {
        font-size: 70px;
        line-height: 70px;
    }

    .section6 .stdForm .form-floating,
    .section6 .stdForm .stdFile {
        width: 100%;
    }

    .section6 .stdForm .form-floating:nth-child(odd),
    .section6 .stdForm .stdFile {
        margin-left: 0;
    }

    .section6 .stdForm .form-floating:nth-child(even) {
        margin-right: 0;
    }

    .section6 .stdRealContact .form-check {
        margin-left: auto;
        margin-right: auto;
    }

    .section6 .stdButton {
        margin-left: auto;
    }

    .section15 .imgFundo {
        aspect-ratio: 16/9;
    }

    /* Extra Small Devices, Phones */
    @media only screen and (max-width : 576px) {
        .titulo1 {
            font-size: 28px;
            line-height: 120%;
        }

        .container,
        .container-fluid,
        .container-lg,
        .container-md,
        .container-sm,
        .container-xl,
        .container-xxl,
        .container,
        .row>* {
            padding-left: 15px;
            padding-right: 15px;
        }

        .row {
            margin-left: -15px;
            margin-right: -15px;
        }

        .section1 .box {
            margin: 125px auto;
        }

        .section2 .destaqueIcon {
            width: 75px;
            height: 75px;
        }

        .section3 .slideText h6 {
            font-size: 50px;
            line-height: 50px;
        }

        .section4 .areaDestaques .box {
            padding: 60px 30px;
        }

        .section8 .box {
            margin: 200px auto 125px auto;
        }

        .section8 .titulo {
            font-size: 40px;
            line-height: 120%;
        }

        .node1 {
            display: block;
        }
    }