@font-face {
    font-family: 'arialvisicomfina';
    src: url(font/ArialNova-Light.ttf);
}

@font-face {
    font-family: 'arialvisicomgrossa';
    src: url(font/ArialNova-Bold.ttf);
}

* {
    padding: 0;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif
}

body::-webkit-scrollbar {
    width: 15px;
}

body::-webkit-scrollbar-track {
    background: #ffff;
}

body::-webkit-scrollbar-thumb {
    background-color: #214a6a;
    border-radius: 20px;
    border: 3px solid #ffff;
}

nav {
    width: 100%;
    height: 10vh;
    background-color: #214a6a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.espacamentoNav {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

nav ul li {
    font-size: 20px;
    margin-inline: 20px;
    list-style-type: none;
    letter-spacing: 1px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.5s;
    font-weight: bold;
}

nav ul li a:hover {
    font-size: 22px;
}

.logoNav {
    width: 50%;
    transition: 1s;
}

.logoNav img {
    width: 22%;
    cursor: pointer;
}

.bandeiraBr {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bandeiraBr img {
    width: 30%;
}

.bandeiraBr p {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-items: center;
    font-size: 21px;
    margin-left: 5px;
}

.bandeiraBr select {
    background-color: #214a6a;
    border: none;
    color: #ffffff;
}

.bandeiraBr img:hover {
    cursor: pointer;
}

.idioma {
    width: 60px;
    position: absolute;
    /* margin-left: 34px; */
    margin-top: 240px;
    z-index: 1;
    align-items: center;
    display: none;
    /* background-color: #e9e9e9; */
}

.selecioneIdioma {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    animation: abrirBandeirinhas normal 0.5s;
}

.idioma-container {
    display: none;
    /* Inicialmente escondido */
}

@keyframes abrirBandeirinhas {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fecharBandeirinhas {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.selecioneIdioma div a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.selecioneIdioma img {
    width: 50px;
    margin: 10px;
}

.imgInicial {
    /* height: 100%; */
    /* background-image: url('img/teste/banner\ 1.webp'); */
    /* background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
    background-color: #f8f8f8;
    font-family: Arial, Helvetica, sans-serif;
    /* z-index: -1px; */
    /* padding-top: -50px; */
}

.imgInicial img {
    width: 100%;
}

.dizeresInicial {
    position: absolute;
    right: 0;
    display: flex;
    width: 50%;
    height: 100%;
    margin-right: 5%;
    flex-wrap: wrap;
    align-content: center;
    justify-content: end;
}

.dizeresInicial h1 {
    text-align: end;
    width: 100%;
    font-size: 41px;
    margin-bottom: 5px;
    color: #214a6a;
}

.dizeresInicial:nth-child(1) {
    transition-delay: 200ms;
}

.dizeresInicial p {
    width: 100%;
    font-size: 26px;
    text-align: right;
    margin-bottom: 10px;
    color: #214a6a;
}

.dizeresInicial hr {
    width: 50px;
    height: 4px;
    background-color: #258cd4;
}

/* Segundo menu*/

#menuHamb {
    display: none;
    width: 10%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#menuHamb svg {
    width: 50%;
    height: 60%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#menu2 {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: #0000009f;
    display: none;
    z-index: 6;
    transition: 0.5s;
}

#menu2 ul {
    width: 40%;
    height: 100vh;
    background-color: #f8f8f8;
    transition: 0.3s;
    z-index: 7;
}

#menu2 ul p {
    text-align: center;
    padding-top: 20px;
    color: #214a6a;
}

#menu2 ul svg:hover {
    color: #258cd4;
    cursor: pointer;
}

#menu2 ul p svg {
    width: 40px;
    height: 30px;
}

#menu2 ul li {
    text-align: center;
    padding: 20px;
    margin: 20px;
    list-style-type: none;
    border-radius: 5px;
}

#menu2 ul li a {
    text-decoration: none;
    color: #214a6a;
    font-weight: bold;
    transition: 0.3s;
}

#menu2 ul li a:hover {
    font-size: 17px;
    color: #258cd4;
}

/* Corpo */

.show {
    opacity: 1;
    transition: all 0.5s;
    filter: blur(0px);
    transform: translateX(0%);
}

.hidden {
    opacity: 0;
    filter: blur(15px);
    transition: all 1s;
    transform: translateX(-10%);
}

.sobre {
    /* height: 100%; */
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sobre div:nth-child(2) {
    transition-delay: 600ms;
}

.dizeresSobre {
    /* margin-bottom: 50px; */
    width: 42%;
    margin-right: 100px;
    font-family: Arial, Helvetica, sans-serif;
}

.dizeresSobre h1 {
    color: #214a6a;
    font-size: 43px;
}

.dizeresSobre h2 {
    font-size: 28px;
    font-weight: lighter;
    margin-top: 10px;
    line-height: 35px;
    font-family: 'arialvisicomfina';
}

.dizeresSobre p {
    color: #000000c5;
    margin-top: 40px;
    line-height: 33px;
    font-size: 22px;
    font-weight: lighter;
    font-family: 'arialvisicomfina';
}

.imgSobre {
    /* margin-bottom: 40px; */
    height: 700px;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bordaLeft {
    width: 20px;
    height: 20px;
    border: 4px solid #258cd4;
    border-right: none;
    border-bottom: none;
    top: 0;
    margin-left: -30px;
}

.imgSobre img {
    margin: 0 auto;
    width: 100%;
}

.bordaRight {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-right: -30px;
    margin-top: 95%;
    border: 4px solid #258cd4;
    border-left: none;
    border-top: none;
    right: 0;
}

.saiba {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: 100px;
}

.dizeresSaiba {
    width: 100%;
    text-align: center;
}

.dizeresSaiba h1 {
    text-align: center;
    font-size: 40px;
    color: #000000ce;
    margin-inline: 5%;
}

.dizeresSaiba p {
    font-size: 25px;
    margin-top: 10px;
}

.icons {
    margin-top: 60px;
    margin-bottom: 110px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.saibaIcon:nth-child(1) {
    transition-delay: 100ms;
}

.saibaIcon:nth-child(2) {
    transition-delay: 200ms;
}

.saibaIcon:nth-child(2) img {
    margin-bottom: 25px;
}

.saibaIcon:nth-child(3) {
    transition-delay: 300ms;
}

.saibaIcon:nth-child(3) img {
    margin-bottom: 23px;
}

.saibaIcon:nth-child(4) {
    transition-delay: 400ms;
}

.saibaIcon:nth-child(4) img {
    margin-bottom: 12px;
}

.saibaIcon:nth-child(5) {
    transition-delay: 500ms;
}

.saibaIcon:nth-child(5) img {
    margin-bottom: 12px;
}

.saibaIcon {
    width: 210px;
    height: 100px;
    margin-inline: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.saibaIcon:hover {
    transform: translateY(-5px);
    cursor: pointer;
    transition-delay: 0ms;
}

.saibaIcon img {
    width: 40%;
    margin-bottom: 10px;
}

.saibaIcon p {
    font-weight: bold;
    color: #214a6a;
    text-align: center;
    height: 50px;
    width: 100%;
    font-size: 20px;
}

.produtos {
    display: flex;
    height: 850px;
    background-color: #e9e9e9;
    overflow: hidden;
}

.dizeresProduto {
    position: absolute;
    width: 900px;
    height: 850px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 40px;
    z-index: 3;
}

.dizeresProduto h1 {
    font-size: 45px;
    margin-bottom: 5px;
    color: #000000ce;
}

.dizeresProduto p {
    width: 75%;
    margin-bottom: 5px;
    color: #000000ce;
    font-family: 'arialvisicomfina';
}

.dizeresProduto p:nth-child(2) {
    width: 70%;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: bold;
}

.dizeresProduto p:nth-child(3) {
    width: 70%;
    line-height: 30px;
    font-size: 23px;
    color: #000000d3;
}

.corProduto {
    width: 40%;
    /* z-index: 1; */
}

.imgProduto div {
    position: absolute;
    width: 25%;
    height: 850px;
    background-image: linear-gradient(to right, #e9e9e9, #00000000);
    z-index: 2;
}

.imgProduto {
    width: 60%;
    background-image: url('img/teste/banner2.webp');
    background-size: cover;
    background-position: center;
    z-index: 2;
}

.imgProduto img {
    width: 110%;
}

.produtoTeste {
    position: relative;
    overflow: hidden;
}

.produtoTeste h1 {
    font-size: 40px;
    text-align: center;
    margin-top: 100px;
    margin-bottom: -50px;
    color: #000000ce;
}

.produtos3-container {
    margin: 0 auto;
    overflow: hidden;
    width: 90%;
    display: flex;
    justify-content: center;
    /* background-color: #258cd4; */
}

.produtos3 {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    /* Movido para cá */
    height: 50%;
    margin: 100px auto 0;
}

.slide-item {
    flex: 0 0 calc(100% / 3);
    /* Mostra 3 itens por vez */
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.anterior,
.proximo {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: 1.7%;
    color: #258cd4;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    /* background-color: rgb(0, 0, 0); */
    padding: 0.4%;
    text-align: center;
    transition: 0.6s;
    border-radius: 50%;
    z-index: 1;
}

.proximo {
    margin-right: 20px;
    right: 0;
    /* border-radius: 3px 0 0 3px; */
}

.anterior {
    margin-left: 20px;
    left: 0;
}

.anterior:hover,
.proximo:hover {
    background-color: #258cd4;
    color: #e9e9e9;
    font-size: 22px;
}

.produtos3 img {
    width: 110%;
    margin: 0 auto;
    transition: 0.5s;
}

.produtos3 img:hover {
    transform: translateY(-5px);
    width: 111%;
    margin-bottom: -1px;
}

.produtos3 p {
    border: 1px solid #214a6a;
    padding: 15px;
    text-align: center;
    margin-top: 10px;
    width: 280px;
    /* height: 20px; */
    font-size: 21px;
}

.buttonPort {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.buttonPort button {
    margin-top: 100px;
    padding: 7px;
    padding-inline: 20px;
    background-color: #258cd4;
    border: none;
    color: #ffffff;
    font-size: 28px;
    border-radius: 18px;
    transition: 0.5s;
    cursor:pointer;
}

.buttonPort button:hover {
    font-size: 29px;
    margin-top: 99px;
    margin-bottom: -2px;
    /* margin-top: -1px; */
    box-shadow: 0px 0px 5px #258bd470;
}

.downloads {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.inovacao {
    margin-top: 100px;
    width: 90%;
    height: 80vh;
    display: flex;
    align-items: center;
}

.inovacao div:nth-child(2) {
    transition-delay: 1s;
}

.imgInovacao {
    width: 50%;
    height: 80%;
    /* margin-inline: 10px; */
    transition: 1s;
}

.imgInovacao img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dizeresInovacao {
    width: 50%;
    margin-inline: 50px;
}

.dizeresInovacao h1 {
    font-size: 43px;
    color: #000000ce;
}

.dizeresInovacao hr {
    height: 5px;
    background-color: #258cd4;
    border: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dizeresInovacao p {
    font-size: 24px;
    color: #000000cc;
    margin-bottom: 30px;
}

.baixePortifolio {
    width: 90%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.imgPortifolio {
    width: 50%;
    height: 65%;
    /* margin-inline: 20px; */
}

.imgPortifolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dizeresPortifolio {
    width: 50%;
    margin-inline: 50px;
}

.dizeresPortifolio h1 {
    font-size: 43px;
    color: #000000ce;
}

.dizeresPortifolio hr {
    height: 4px;
    background-color: #258cd4;
    border: none;
    margin-top: 30px;
    margin-bottom: 30px;
}

.dizeresPortifolio p {
    font-size: 24px;
    color: #000000cc;
    margin-top: 30px;
    margin-bottom: 30px;
}

.localizacao h1 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 40px;
    font-size: 45px;
    color: #000000ce;
}

.mapas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    position: relative;
    /* Importante para conter o .mapa2 */
    width: 100%;
    margin-bottom: 40px;
}

.mapa1 {
    width: 100%;
}

.mapa1 img {
    width: 100%;
    display: block;
}

.mapa2 {
    width: 3%;
    position: absolute;
    top: 0;
    overflow: hidden;
    transform-origin: top;
    margin-left: 70px;
}

.particaoMapa {
    height: 25.5%;
    width: 100%;
    /* background-color: #258cd4; */
    position: absolute;
    bottom: 0;
    display: flex;
    transform-style: preserve-3d;
}

.particoes {
    height: 100%;
    width: 11.8%;
    /* background-color: aqua; */
    margin: 10px;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; */
}

.teste{
    /* background-color: aqua; */
    /* margin: 10px; */
}
/* Estilos base dos elementos */
.dot {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #000;
  transition: 
    width 0.2s linear,
    height 0.2s linear;
}

.line {
  margin-top: -1px;
  margin-left: 2px;
  width: 0;
  height: 0;
  background: #000;
  transition: 
    margin-top 0.3s linear 0.3s,
    margin-left 0.3s linear 0.3s,
    width 0.3s linear 0.3s,
    height 0.3s linear 0.3s;
}

.textoMapa {
  display: none;
  transition: opacity 0.3s ease;
}

/* Classes para ativar as animações */
.dot.active {
  width: 7px;
  height: 7px;
}

.line.active {
  margin-top: -8px;
  margin-left: 32px;
  width: 2px;
  height: 70px;
}


/* .indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 230px;
}

.line {
    width: 2px;
    height: 0px;
    transform: rotate(0.92turn);
    background: #214a6a;
    /* padding-top: -30px; */
    /* margin-top: -8px;  */
    /* margin-left: 32px; */
    /* transform: scaleY(0); */
/* } */

.dot {
    width: 0;
    height: 0;
    background: #214a6a;
    border-radius: 50%;
} */

.textoMapa {
    margin-top: -11%;
    margin-left: 36%;
    color: #214a6a;
    display: none;
    /* opacity: 0; */
    /* transition: 5s; */
    animation: textoSeta2 0.2s normal;
}

.textoMapa p {
    font-size: 19px;
}

@keyframes textoSeta3 {
    0%{
        transform: scale(0.0);
    }
    100%{
        transform: scale(1);
    }
}

@keyframes textoSeta2 {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes textoSeta {
    0%{
        transform: translate(-5px, -5px);
    }
    50%{
        transform: translate(-3px, -3px);
    }
    100%{
       transform: translate(0px, 0px);

    }
}

/* Reeber noticias da Visicom */

.receberNoticias {
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.receberNoticias p {
    width: 580px;
    margin-inline: 20px;
    font-size: 25px;
}

.receberNoticias form {
    width: 640px;
    display: flex;
    margin-inline: 20px;
    align-content: center;
    align-items: center
}

.receberNoticias form input {
    padding: 20px;
    width: 60%;
    height: 40px;
    background-color: #ffffff;
    border: none;
    outline: 0;
    transition: 0.5s;
    font-size: 20px;
    border: 2px solid #ffffff;
}

.receberNoticias form input:hover {
    box-shadow: 0px 0px 5px #258bd470;
    border: 2px solid #258cd4;
}

#enviarEmail {
    background-color: #258cd4;
    color: #ffffff;
    padding: 15px;
    border: none;
    width: 30%;
    height: 85px;
    font-size: 16px;
    margin-left: -4px;
    cursor: pointer;
}

.faleVisicom {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.faleVisicom h1 {
    width: 100%;
    text-align: center;
    font-weight: lighter;
    font-size: 40px;
}

.faleVisicom form {
    width: 80%;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.faleVisicom form .inputNome,
.inputSobrenome,
.inputEmail,
.inputAssunto {
    width: 37%;
}

.faleVisicom form label {
    color: #214a6a;
    font-weight: bold;
    font-size: 21px;
}

.faleVisicom form input {
    width: 91%;
    height: 20px;
    border: 1px solid #33333365;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: 0;
    margin-bottom: 30px;
    padding: 20px;
    font-size: 17px;
}

.inputMensagem {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.inputMensagem label {
    text-align: left;
}

.inputMensagem textarea {
    font-size: 17px;
    width: 97%;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: 0;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.faleVisicom input:hover {
    border: 2px solid #33333365;
    border-top: none;
    border-left: none;
    border-right: none;
}

.btnEnviar {
    width: 200px;
    margin: 0 auto;
    padding: 15px;
    background-color: #258cd4;
    border: none;
    color: #ffff;
    border-radius: 3px;
    margin-top: 30px;
    margin-bottom: 60px;
    font-size: 18px;
    transition: 0.2s;
}

.btnEnviar:hover {
    padding: 16px;
    width: 201px;
    margin-bottom: 58px;
    cursor: pointer;
}

footer {
    background-color: #214a6a;
    color: white;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.coluna {
    display: flex;
}

.coluna1 {
    margin-top: 80px;
    margin-left: 80px;
}

.dizeresFooter {
    width: 60%;
    margin-bottom: 10px;
}

.dizeresFooter p {
    margin-bottom: 10px;
    line-height: 27px;
    font-size: 21px;
}

.bandeira img {
    width: 27%;
}

.logoFooter img {
    width: 20%;
    margin-bottom: 10px;
}

.coluna2 {
    margin-top: 60px;
}

.redesSociais {
    margin-top: 15px;
    margin-bottom: 15px;
}

.redesSociais a {
    margin-right: 15px;
    width: 10%;
}

.redesSociais img {
    width: 80%;
}

.coluna2 p:nth-child(1) {
    font-weight: bold;
    font-size: 22px;
}

.redesSociais {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.coluna2 p img {
    width: 5%;
}

.rodape {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 80px;
    margin-inline: 80px;
    margin-bottom: 50px;
}

.flexEmail {
    display: flex;
    align-items: center;
    align-content: center;
}

.flexEmail p {
    font-size: 20px;
}

.flexEmail img {
    width: 5%;
    margin-right: 8px;
}

.rodape {
    font-size: 22px;
}

.rodape p a {
    color: #f8f8f8;
    text-decoration: none;
}

.cookies {
    width: 100%;
    height: 15vh;
    background-color: #258cd4;
    position: absolute;
    position: fixed;
    bottom: 0;
    align-items: center;
    justify-content: center;
    z-index: 4;
    display: none;
}

.cookies.mostrar {
    display: flex;
}

.botoesCookies {
    width: 20%;
    height: 100px;
    display: flex;
    justify-content: center;
    /* background-color: #77ff00; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.botoesCookies button {
    width: 40%;
    height: 50%;
    padding: 10px;
    border: none;
    flex-wrap: nowrap;
    margin-right: 10px;
    cursor: pointer;
    font-size: 18px;
}

.dizerescookies {
    font-size: 15px;
    margin-left: 20px;
}

.dizerescookies a {
    color: #f8f8f8;
    font-weight: bold;
    font-size: 18px;
}

.dizerescookies p {
    margin-bottom: 5px;
    font-size: 18px;
    color: #f8f8f8;
}

#aceitarCookies {
    background-color: #f8f8f8;
    color: #214a6a;
    font-weight: bold;
}

#recusarCookies {
    background-color: #214a6a;
    font-weight: bold;
    color: #f8f8f8;
}

/* Página dos cookies*/

.navCookies a {
    color: #f8f8f8;
    font-weight: bold;
    text-decoration: none;
}

.mainCookie {
    margin-top: 5%;
    margin-inline: 5.5%;
    margin-bottom: 5%;
    color: #214a6a;
}

.mainCookie h1 {
    font-size: 35px;
    margin-top: 5%;
    margin-bottom: 20px;
}

.mainCookie h2 {
    margin-top: 3%;
    margin-bottom: 10px;
    font-weight: lighter;
}

.mainCookie p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #000000ce;
    line-height: 28px;
}

.mainCookie ul {
    margin-top: 2%;
    margin-inline: 20px;
}

.mainCookie ul li {
    color: #000000ce;
    font-weight: bold;
    padding-left: 10px;
    font-size: 18px;
    font-size: 18px;
}

.mainCookie ul li::marker {
    color: #214a6a;
    font-size: 15px;
}

.mainCookie ul p {
    margin-top: 5px;
    padding-left: 10px;
    margin-bottom: 30px;
    font-size: 17px;
}

.cookiesTerceiro ul li {
    font-weight: lighter;
    color: #000000ce;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 28px;
}

.CompromissoDoUsuario ul li {
    font-weight: lighter;
    color: #000000ce;
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 28px;
}

/* Responsividade */

@media (max-width: 1920px) {
    .imgSobre {
        margin-bottom: 40px;
        height: 700px;
        width: 40%;
    }
}

@media (max-width: 1620px) {

    .dizeresProduto {
        width: 750px;
    }

    .botoesCookies button {
        width: 40%;
        height: 50%;
        padding: 10px;
        font-size: 15px;
    }

    .dizerescookies p {
        font-size: 15px;
    }

    .dizerescookies a {
        font-size: 15px;
    }

}

@media (max-width: 1540px) {

    .imgSobre {
        margin-bottom: 00px;
        height: 700px;
        width: 40%;
    }

    nav {
        width: 100%;
        height: 10vh;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    .espacamentoNav {
        width: 90%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    nav ul {
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }

    nav ul li {
        font-size: 15px;
        margin-inline: 20px;
        list-style-type: none;
        letter-spacing: 1px;
    }

    nav ul li a {
        color: #ffffff;
        text-decoration: none;
        transition: 0.5s;
    }

    nav ul li a:hover {
        font-size: 16px;
    }

    .logoNav {
       width: 44%;
        transition: 1s;
    }

    .logoNav img {
        width: 25%;
        cursor: pointer;
    }

    .bandeiraBr {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .bandeiraBr img {
        width: 20%;
    }

    .bandeiraBr p {
        display: flex;
        align-items: center;
        justify-content: center;
        align-content: center;
        justify-items: center;
        font-size: 17px;
        margin-left: 5px;
    }

    .idioma {
        width: 60px;
        position: absolute;
        margin-top: 200px;
        align-items: center;
        display: none;
    }

    .selecioneIdioma {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }

    .selecioneIdioma div a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .selecioneIdioma img {
        width: 40px;
        margin: 10px;
    }

    .imgInicial {
        background-color: #f8f8f8;
        font-family: Arial, Helvetica, sans-serif;
    }

    .imgInicial img {
        width: 100%;
    }

    .dizeresInicial {
        position: absolute;
        right: 0;
        display: flex;
        width: 50%;
        height: 100%;
        margin-right: 5%;
        flex-wrap: wrap;
        align-content: center;
        justify-content: end;
    }

    .dizeresInicial h1 {
        text-align: end;
        width: 100%;
        font-size: 35px;
        margin-bottom: 5px;
        color: #214a6a;
    }

    .dizeresInicial:nth-child(1) {
        transition-delay: 200ms;
    }

    .dizeresInicial p {
        width: 100%;
        font-size: 23px;
        text-align: right;
        margin-bottom: 10px;
        color: #214a6a;
    }

    .dizeresInicial hr {
        width: 9%;
        height: 2px;
        background-color: #258cd4;
    }

    /* Segundo menu*/

    #menuHamb {
        display: none;
        width: 10%;
        height: 100%;
        justify-content: center;
        align-items: center;
    }

    #menuHamb svg {
        width: 50%;
        height: 60%;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    #menu2 {
        width: 100%;
        height: 100vh;
        position: fixed;
        background-color: #0000009f;
        display: none;
        transition: 0.5s;
    }

    #menu2 ul {
        width: 40%;
        height: 100vh;
        background-color: #f8f8f8;
        transition: 0.3s;
    }

    #menu2 ul p {
        text-align: center;
        padding-top: 20px;
        color: #214a6a;
    }

    #menu2 ul svg:hover {
        color: #258cd4;
        cursor: pointer;
    }

    #menu2 ul p svg {
        width: 40px;
        height: 30px;
    }

    #menu2 ul li {
        text-align: center;
        padding: 20px;
        margin: 20px;
        list-style-type: none;
        border-radius: 5px;
    }

    #menu2 ul li a {
        text-decoration: none;
        color: #214a6a;
        font-weight: bold;
        transition: 0.3s;
    }

    #menu2 ul li a:hover {
        font-size: 17px;
        color: #258cd4;
    }

    /* Corpo */

    .show {
        opacity: 1;
        transition: all 0.5s;
        filter: blur(0px);
        transform: translateX(0%);
    }

    .hidden {
        opacity: 0;
        filter: blur(15px);
        transition: all 1s;
        transform: translateX(-10%);
    }

    .sobre {
        /* height: 100%; */
        background-color: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sobre div:nth-child(2) {
        transition-delay: 600ms;
    }

    .dizeresSobre {
        /* margin-bottom: 50px; */
        width: 42%;
        margin-right: 100px;
        font-family: Arial, Helvetica, sans-serif;
    }

    .dizeresSobre h1 {
        color: #214a6a;
        font-size: 33px;
    }

    .dizeresSobre h2 {
        font-size: 22px;
        font-weight: lighter;
        margin-top: 10px;
        line-height: 27px;
        font-family: 'arialvisicomfina';
    }

    .dizeresSobre p {
        color: #000000c5;
        margin-top: 40px;
        line-height: 26px;
        font-size: 17px;
        font-weight: lighter;
        font-family: 'arialvisicomfina';
    }

    .imgSobre {
        /* margin-bottom: 40px; */
        height: 700px;
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .bordaLeft {
        width: 20px;
        height: 20px;
        border: 4px solid #258cd4;
        border-right: none;
        border-bottom: none;
        top: 0;
        margin-left: -30px;
    }

    .imgSobre img {
        margin: 0 auto;
        width: 100%;
    }

    .bordaRight {
        position: absolute;
        width: 20px;
        height: 20px;
        margin-right: -30px;
        margin-top: 95%;
        border: 4px solid #258cd4;
        border-left: none;
        border-top: none;
        right: 0;
    }

    .saiba {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: 100px;
    }

    .dizeresSaiba {
        width: 100%;
        text-align: center;
    }

    .dizeresSaiba h1 {
        text-align: center;
        font-size: 30px;
        color: #000000ce;
        margin-inline: 5%;
    }

    .dizeresSaiba p {
        font-size: 25px;
        margin-top: 10px;
    }

    .icons {
        margin-top: 60px;
        margin-bottom: 100px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .saibaIcon:nth-child(1) {
        transition-delay: 100ms;
    }

    .saibaIcon:nth-child(2) {
        transition-delay: 200ms;
    }

    .saibaIcon:nth-child(2) img {
        margin-bottom: 23px;
    }

    .saibaIcon:nth-child(3) {
        transition-delay: 300ms;
    }

    .saibaIcon:nth-child(3) img {
        margin-bottom: 23px;
    }

    .saibaIcon:nth-child(4) {
        transition-delay: 400ms;
    }

    .saibaIcon:nth-child(4) img {
        margin-bottom: 12px;
    }

    .saibaIcon:nth-child(5) {
        transition-delay: 500ms;
    }

    .saibaIcon:nth-child(5) img {
        margin-bottom: 12px;
    }

    .saibaIcon {
        width: 170px;
        height: 100px;
        margin-inline: 30px;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
    }

    .saibaIcon:hover {
        transform: translateY(-5px);
        cursor: pointer;
        transition-delay: 0ms;
    }

    .saibaIcon img {
        width: 35%;
        margin-bottom: 10px;
    }

    .saibaIcon p {
        font-weight: bold;
        color: #214a6a;
        text-align: center;
        height: 50px;
        width: 100%;
        font-size: 15px;
    }

    .produtos {
        display: flex;
        height: 650px;
        background-color: #e9e9e9;
        overflow: hidden;
    }

    .dizeresProduto {
        position: absolute;
        width: 700px;
        height: 650px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-left: 40px;
    }

    .dizeresProduto h1 {
        font-size: 35px;
        margin-bottom: 5px;
        color: #000000ce;
    }

    .dizeresProduto p {
        width: 75%;
        margin-bottom: 5px;
        color: #000000ce;
        font-family: 'arialvisicomfina';
    }

    .dizeresProduto p:nth-child(2) {
        width: 70%;
        margin-bottom: 30px;
        font-size: 22px;
        font-weight: bold;
    }

    .dizeresProduto p:nth-child(3) {
        width: 67%;
        line-height: 23px;
        font-size: 18px;
        color: #000000d3;
    }

    .corProduto {
        width: 40%;
    }

    .imgProduto div {
        position: absolute;
        width: 25%;
        height: 650px;
        background-image: linear-gradient(to right, #e9e9e9, #00000000);
    }

    .imgProduto {
        width: 60%;
        background-image: url('img/teste/banner2.webp');
        background-size: cover;
        background-position: center;
    }

    .imgProduto img {
        width: 110%;
    }

    .produtoTeste {
        position: relative;
        overflow: hidden;
    }

    .produtoTeste h1 {
        font-size: 30px;
        text-align: center;
        margin-top: 100px;
        margin-bottom: -50px;
        color: #000000ce;
    }

    .produtos3-container {
        margin: 0 auto;
        overflow: hidden;
        width: 90%;
        display: flex;
        justify-content: center;
        /* background-color: #258cd4; */
    }

    .produtos3 {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
        /* Movido para cá */
        height: 400px;
        margin: 100px auto 0;
    }

    .slide-item {
        flex: 0 0 calc(100% / 3);
        /* Mostra 3 itens por vez */
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .anterior,
    .proximo {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: 30px;
        color: #258cd4;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        /* background-color: rgb(0, 0, 0); */
        padding: 5px;
        text-align: center;
        transition: 0.6s;
        border-radius: 50%;
    }

    .proximo {
        margin-right: 20px;
        right: 0;
        /* border-radius: 3px 0 0 3px; */
    }

    .anterior {
        margin-left: 20px;
        left: 0;
    }

    .anterior:hover,
    .proximo:hover {
        background-color: #258cd4;
        color: #e9e9e9;
        font-size: 22px;
    }

    .produtos3 img {
        width: 110%;
        margin: 0 auto;
        transition: 0.5s;
    }

    .produtos3 p {
        border: 1px solid #214a6a;
        padding: 10px;
        text-align: center;
        margin-top: 10px;
        width: 230px;
        height: 20px;
        font-size: 17px;
    }

    .buttonPort {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .buttonPort button {
        margin-top: 50px;
        padding: 5px;
        padding-inline: 20px;
        background-color: #258cd4;
        border: none;
        color: #ffffff;
        font-size: 20px;
        border-radius: 15px;
        transition: 0.5s;
    }

    .buttonPort button:hover {
        margin-top: 49px;
        margin-bottom: -1px;
        font-size: 21px;
        box-shadow: 0px 0px 5px #258bd470;
    }

    .downloads {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .inovacao {
        margin-top: 100px;
        width: 90%;
        height: 80vh;
        display: flex;
        align-items: center;
    }

    .inovacao div:nth-child(2) {
        transition-delay: 1s;
    }

    .imgInovacao {
        width: 50%;
        height: 80%;
        /* margin-inline: 10px; */
        transition: 1s;
    }

    .imgInovacao img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dizeresInovacao {
        width: 50%;
        margin-inline: 40px;
    }

    .dizeresInovacao h1 {
        font-size: 33px;
        color: #000000ce;
    }

    .dizeresInovacao hr {
        height: 3px;
        background-color: #258cd4;
        border: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dizeresInovacao p {
        font-size: 18px;
        color: #000000cc;
        margin-bottom: 20px;
    }

    .baixePortifolio {
        width: 90%;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .imgPortifolio {
        width: 50%;
        height: 65%;
        /* margin-inline: 20px; */
    }

    .imgPortifolio img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .dizeresPortifolio {
        width: 50%;
        margin-inline: 40px;
    }

    .dizeresPortifolio h1 {
        font-size: 33px;
        color: #000000ce;
    }

    .dizeresPortifolio hr {
        height: 3px;
        background-color: #258cd4;
        border: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dizeresPortifolio p {
        font-size: 18px;
        color: #000000cc;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .localizacao h1 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 40px;
        font-size: 35px;
        color: #000000ce;
    }

    .receberNoticias {
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .receberNoticias p {
        width: 400px;
        margin-inline: 20px;
        font-size: 18px;
    }

    .receberNoticias form {
        width: 440px;
        margin-inline: 20px;
    }

    .receberNoticias form input {
        padding: 10px;
        width: 60%;
        height: 30px;
        background-color: #ffffff;
        border: none;
        outline: 0;
        transition: 0.5s;
        font-size: 15px;
        border: 2px solid #ffffff;
    }

    .receberNoticias form input:hover {
        box-shadow: 0px 0px 5px #258bd470;
        border: 2px solid #258cd4;
    }

    #enviarEmail {
        background-color: #258cd4;
        color: #ffffff;
        padding: 15px;
        border: none;
        width: 30%;
        height: 54px;
        font-size: 16px;
        margin-left: -4px;
        cursor: pointer;
    }

    .faleVisicom {
        margin-top: 40px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .faleVisicom h1 {
        width: 100%;
        text-align: center;
        font-weight: lighter;
        font-size: 30px;
    }

    .faleVisicom form {
        width: 80%;
        margin-top: 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .faleVisicom form .inputNome,
    .inputSobrenome,
    .inputEmail,
    .inputAssunto {
        width: 37%;
    }

    .faleVisicom form label {
        color: #214a6a;
        font-weight: bold;
        font-size: 17px;
    }

    .faleVisicom form input {
        width: 91%;
        height: 00px;
        border: 1px solid #33333365;
        border-top: none;
        border-left: none;
        border-right: none;
        outline: 0;
        margin-bottom: 30px;
        padding: 20px;
        font-size: 17px;
    }

    .inputMensagem {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: stretch;
        width: 100%;
    }

    .inputMensagem label {
        text-align: left;
    }

    .inputMensagem textarea {
        font-size: 17px;
        width: 97%;
        border-top: none;
        border-left: none;
        border-right: none;
        outline: 0;
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .faleVisicom input:hover {
        border: 2px solid #33333365;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .btnEnviar {
        width: 170px;
        margin: 0 auto;
        padding: 10px;
        background-color: #258cd4;
        border: none;
        color: #ffff;
        border-radius: 3px;
        margin-top: 30px;
        margin-bottom: 60px;
        font-size: 15px;
    }

    .btnEnviar:hover {
        padding: 11px;
        width: 176px;
    }

    footer {
        background-color: #214a6a;
        color: white;
        bottom: 0;
        display: flex;
        flex-direction: column;
    }

    .coluna {
        display: flex;
    }

    .coluna1 {
        margin-top: 60px;
        margin-left: 60px;
    }

    .dizeresFooter {
        width: 60%;
        margin-bottom: 10px;
    }

    .dizeresFooter p {
        margin-bottom: 10px;
        line-height: 20px;
        font-size: 16px;
    }

    .bandeira img {
        width: 27%;
    }

    .logoFooter img {
        width: 20%;
        margin-bottom: 10px;
    }

    .coluna2 {
        margin-top: 60px;
    }

    .redesSociais {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .redesSociais a {
        margin-right: 15px;
        width: 10%;
    }

    .redesSociais img {
        width: 80%;
    }

    .coluna2 p:nth-child(1) {
        font-weight: bold;
        font-size: 16px;
    }

    .redesSociais {
        display: flex;
        align-items: center;
    }

    .coluna2 p img {
        width: 5%;
    }

    .rodape {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-top: 60px;
        margin-inline: 60px;
        margin-bottom: 50px;
    }

    .flexEmail {
        display: flex;
        align-items: center;
        align-content: center;
    }

    .flexEmail p {
        font-size: 16px;
    }

    .flexEmail img {
        width: 5%;
        margin-right: 8px;
    }

    .rodape {
        font-size: 16px;
    }


    .botoesCookies {
        width: 18%;
        height: 100px;
        display: flex;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .botoesCookies button {
        width: 100px;
        height: 40%;
        padding: 10px;
        font-size: 15px;
    }

    .dizerescookies p {
        font-size: 14px;
    }

    .dizerescookies a {
        font-size: 14px;
    }

}

@media (max-width: 1280px) {
    .logoNav {
        width: 30%;
    }

    .logoNav img {
        width: 40%;
    }

    nav ul li {
        font-size: 15px;
        margin-inline: 15px;

    }

    .inovacao {
        margin-top: 50px;
        width: 90%;
        height: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .imgInovacao {
        width: 70%;
        height: 60%;
        margin-inline: 20px;
    }

    .dizeresInovacao {
        width: 70%;
        margin-top: 20px;
        margin-inline: 20px;
        margin-bottom: 20px;
    }

    .dizeresInovacao h1 {
        font-size: 30px;
    }

    .dizeresInovacao hr {
        height: 3px;
        background-color: #258cd4;
        border: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dizeresInovacao p {
        color: #000000cc;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .baixePortifolio {
        margin-bottom: 50px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 90%;
        height: 100%;
        display: flex;
    }

    .imgPortifolio {
        width: 70%;
        height: 85%;
        margin-inline: 20px;
    }

    .dizeresPortifolio {
        width: 70%;
        margin-top: 20px;
        margin-inline: 20px;
        margin-bottom: 20px;
    }

    .dizeresPortifolio h1 {
        font-size: 30px;
    }

    .dizeresPortifolio hr {
        height: 3px;
        border: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dizeresPortifolio p {
        font-size: 18px;
    }
}

@media (max-width: 920px) {

    nav {
        height: 10vh;
        display: flex;
        justify-content: space-between;
    }

    nav ul {
        display: none;
    }

    .logoNav img {
        width: 80%;
        display: block;
        margin: 0 auto;
    }

    .espacamentoNav {
        width: 60%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-right: 15px;
    }

    .bandeiraBr {
        width: 100px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .bandeiraBr img {
        width: 25%;
    }

    .selecioneIdioma img {
        width: 40px;
        /* margin: 10px; */
    }

    #menuHamb {
        display: flex;
    }

    .dizeresInicial {
        width: 45%;
        margin-right: 2%;
    }

    .dizeresInicial h1 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .dizeresInicial p {
        width: 100%;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .dizeresInicial hr {
        width: 9%;
        height: 2px;
    }

    .sobre {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .dizeresSobre {
        width: 90%;
        margin-top: 40px;
        margin-right: 0px;
    }

    .dizeresSobre h1 {
        font-size: 30px;
    }

    .dizeresSobre h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .dizeresSobre p {
        margin-top: 40px;
        line-height: 26px;
        font-size: 17px;
        font-weight: lighter;
    }

    .imgSobre {
        height: 80%;
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .bordaLeft {
        width: 20px;
        height: 20px;
        border-right: none;
        border-bottom: none;
        top: 0;
        margin-left: -0px;
    }

    .imgSobre img {
        margin: 0 auto;
        width: 90%;
    }

    .bordaRight {
        position: absolute;
        width: 20px;
        height: 20px;
        margin-right: -0px;
    }

    .dizeresProduto {
        width: 44%;
        height: 650px;
        display: flex;
        margin-left: 20px;
    }

    .dizeresProduto h1 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .dizeresProduto p:nth-child(2) {
        width: 70%;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .dizeresProduto p:nth-child(3) {
        /* width: 67%; */
        line-height: 21px;
        font-size: 17px;
    }

    /*Slide*/

    .imgProduto img {
        width: 110%;
    }

    .produtoTeste h1 {
        margin-top: 50px;
        margin-bottom: 30px;
    }

    .produtos3 {
        height: 400px;
        margin: 0px auto 0;
    }

    .slide-item {
        flex: 0 0 calc(100% / 2);
        /* Mostra 3 itens por vez */
        padding: 10px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .anterior,
    .proximo {
        top: 50%;
        width: 30px;
        color: #258cd4;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        padding: 5px;
        text-align: center;
        transition: 0.6s;
        border-radius: 50%;
    }

    .proximo {
        margin-right: 10px;
    }

    .anterior {
        margin-left: 10px;
    }

    .produtos3 img {
        width: 110%;
        margin: 0 auto;
        transition: 0.5s;
    }

    .buttonPort {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .buttonPort button {
        margin-bottom: 40px;
    }

    .localizacao h1 {
        font-size: 30px;
    }

    footer {
        background-color: #214a6a;
        color: white;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .coluna {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .coluna1 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 60px;
        margin-left: 0px;
        /* background-color: aqua; */
    }

    .dizeresFooter {
        display: flex;
        flex-direction: column;
        width: 90%;
        margin-bottom: 10px;
        /* background-color: aqua; */
        align-items: center;
        justify-content: center;
    }

    .dizeresFooter br {
        display: none;
    }

    .dizeresFooter p {
        margin-top: 15px;
        margin-bottom: 15px;
        line-height: 25px;
        width: 70%;
        text-align: center;
        font-size: 18px;
    }

    .bandeira {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .bandeira img {
        width: 27%;
    }

    .logoFooter {
        width: 90%;
        display: flex;
        justify-content: center;
    }

    .logoFooter img {
        width: 20%;
        margin: 0 auto;
        margin-bottom: 10px;
    }

    .coluna2 {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .coluna2 p:nth-child(1) {
        font-weight: bold;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .redesSociais {
        width: 90%;
        margin-top: 10px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;
    }

    .redesSociais a {
        margin-left: 10px;
        margin-right: 10px;
        width: 5%;
    }

    .redesSociais img {
        width: 100%;
    }

    .redesSociais {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .flexEmail {
        /* height: 100px; */
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        /* background-color: #258cd4; */
    }

    .flexEmail img {
        width: 25px;
        margin-right: 8px;
    }

    .rodape {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 60px;
        margin-inline: 60px;
        margin-bottom: 50px;
    }

    .rodape p {
        margin-top: 10px;
    }



}

@media (max-width: 750px) {

    .receberNoticias {

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .receberNoticias p {
        width: 400px;
        margin-inline: 0px;
        margin-bottom: 50px;
        font-size: 18px;
        text-align: center;
    }

    .receberNoticias form {
        width: 400px;
        display: flex;
        margin-inline: 0px;
        justify-content: center;
    }

    .receberNoticias form input {
        padding: 10px;
        width: 60%;
        height: 30px;
        background-color: #ffffff;
        border: none;
        outline: 0;
        transition: 0.5s;
        font-size: 15px;
        border: 2px solid #ffffff;
    }

    .receberNoticias form input:hover {
        box-shadow: 0px 0px 15px #258bd467;
        border: 2px solid #258cd4;
    }

    #enviarEmail {
        background-color: #258cd4;
        color: #ffffff;
        padding: 15px;
        border: none;
        width: 30%;
        height: 54px;
        font-size: 16px;
        margin-left: -4px;
    }

}

@media (max-width: 652px) {

    .logoNav img {
        width: 150%;
    }

    #menu2 ul {
        width: 50%;
    }

    .imgProduto img {
        width: 100%;
    }

    .produtos3 {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%;
        /* Movido para cá */
        height: 300px;
        margin: 00px auto 0;
        /* background-color: aqua; */
    }

    .produtos3 img {
        height: 240px;
    }

    .slide-item {
        flex: 0 0 calc(100% / 2);
        padding: 0px;
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 616px) {

    .linhaProduto {
        width: 70%;
        margin-inline: 30px;
        margin-bottom: 50px;
        margin-top: 30px;
    }

    .cookies {
        width: 100%;
        height: 30vh;
        flex-wrap: wrap;
    }

    .cookies.mostrar {
        display: flex;

    }

    .botoesCookies {
        width: 100%;
        height: 100px;
        display: flex;
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-right: 0px;
    }

    .dizerescookies {
        width: 100%;
        font-size: 15px;
        margin-top: 20px;
        margin-left: 0px;
        line-height: 23px;
        text-align: center;
    }
}

@media (max-width: 560px) {

    nav {
        height: 7vh;
    }

    .espacamentoNav {
        width: 68%;
        /* background-color: aqua; */
    }

    .logoNav {
        width: 58%;
    }

    .logoNav img {
        width: 85%;
    }

    #menuHamb {
        width: 15%;
    }

    #menu2 ul {
        width: 60%;
    }

    #menu2 ul li {
        padding: 10px;
    }

    #menu2 ul a {
        font-size: 15px;
    }

    .bandeiraBr img {
        width: 20%;
    }

    .bandeiraBr p {
        font-size: 15px;
    }

    .imgInicial {
        height: 200px;
    }

    .idioma {
        width: 60px;
        position: absolute;
        margin-top: 140px;
        margin-left: 34px;
        z-index: 1;
        align-items: center;
        display: none;
    }

    .selecioneIdioma img {
        width: 30px;
        margin: 5px;
    }

    .dizeresInicial {
        float: right;
        display: flex;
        width: 45%;
        height: 100%;
        flex-wrap: wrap;
        align-content: center;
        justify-content: flex-end;
        margin-right: 10px;
    }

    .dizeresInicial h1 {
        width: 100%;
        font-size: 14px;
        text-align: right;
        /* margin-bottom: 10px; */
        color: #214a6a;
        transition-delay: 600ms;
    }

    .dizeresInicial p {
        width: 100%;
        font-size: 13px;
        text-align: right;
        /* margin-top: 10px; */
        color: #000000a1;
        font-size: 10px;
    }

    .dizeresInicial hr {
        width: 13%;
        height: 2px;
        background-color: #258cd4;
    }

    /*Corpo*/

    .dizeresSobre h1 {
        font-size: 25px;
    }

    .dizeresSobre h2 {
        /* color: #214a6a; */
        font-size: 17px;
        font-weight: lighter;
        margin-top: 10px;
        line-height: 25px;
    }

    .dizeresSobre p {
        margin-top: 40px;
        line-height: 26px;
        font-size: 17px;
        font-weight: lighter;
        /* font-family: 'arialvisicomfina'; */
    }

    .dizeresSaiba h1 {
        font-size: 17px;
        margin-inline: 20px;
    }

    .dizeresSaiba p {
        font-size: 13px;
        margin-inline: 20px;
    }

    .saiba {
        margin-top: 100px;
        /* background-color: #214a6a; */
    }

    .saiba h1 {
        font-size: 20px;
    }

    .bordaRight {
        position: absolute;
        width: 20px;
        height: 20px;
        margin-top: 87%;
        margin-right: -2px;
        /* margin-right: 5px; */
    }

    .dizeresProduto {
        /* position: absolute; */
        width: 80%;
        margin-left: 10px;
    }

    .dizeresProduto h1 {
        font-size: 25px;
        margin-bottom: 5px;
    }

    .dizeresProduto p {
        width: 70%;
        margin-bottom: 5px;
        font-family: 'arialvisicomfina';
    }

    .dizeresProduto p:nth-child(2) {
        width: 70%;
        margin-bottom: 30px;
        font-size: 17px;
    }

    .dizeresProduto p:nth-child(3) {
        width: 67%;
        line-height: 20px;
        font-size: 16px;
    }

    .dizeresProduto button {
        margin-top: 50px;
        height: 35px;
        background-color: #258cd4;
        border: none;
        color: #e9e9e9;
        font-size: 15px;
        border-radius: 15px;
        width: 200px;
    }

    .corProduto {
        width: 40%;
        /* background-color: #214a6a; */
        /* display: none; */
    }

    .imgProduto div {
        position: absolute;
        width: 50%;
        height: 650px;
        background-image: linear-gradient(to right, #e9e9e9, #00000000);
    }

    .imgProduto {
        width: 60%;
        background-size: cover;
        background-position: center;
        /* padding-left: 300px; */
    }

    .imgProduto img {
        width: 150%;
        /* z-index: -1; */
    }

    .produtoTeste h1 {
        margin-top: 50px;
        margin-bottom: 10px;
        font-size: 25px;
    }

    .produtos3 img {
        height: 280px;
    }

    .produtos3-container {
        width: 80%;
    }

    .produtos3 {
        height: 350px;
        /* background-color: aqua; */
    }

    .produtos3 p {
        border: 1px solid #214a6a;
        padding: 10px;
        text-align: center;
        margin-top: -20px;
        width: 230px;
        height: 20px;
    }

    .slide-item {
        flex: 0 0 calc(100% / 1);
        padding: 0px;
    }

    .anterior,
    .proximo {
        top: 50%;
        width: 3.5%;
        color: #258cd4;
        font-weight: bold;
        padding: 1.8%;
        font-size: 16px;
    }

    .proximo {
        margin-right: 10px;
    }

    .anterior {
        margin-left: 10px;
    }

    .anterior:hover,
    .proximo:hover {
        font-size: 16px;
    }

    .buttonPort button {
        margin-bottom: 40px;
    }

    .inovacao {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 90%;
        height: 100%;
    }

    .imgInovacao {
        width: 100%;
        height: 90%;
        margin-inline: 0px;
    }

    .dizeresInovacao {
        width: 100%;
        margin-top: 20px;
        margin-inline: 0px;
        margin-bottom: 10px;
    }

    .dizeresInovacao h1 {
        font-size: 25px;
    }

    .dizeresInovacao hr {
        height: 3px;
        border: none;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .dizeresInovacao p {
        color: #000000cc;
        font-size: 17px;
        margin-bottom: 20px;
    }

    .baixePortifolio {
        margin-bottom: 50px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        width: 90%;
        height: 100%;
        display: flex;
    }

    .imgPortifolio {
        width: 100%;
        height: 95%;
        margin-inline: 0px;
    }

    .dizeresPortifolio {
        width: 100%;
        margin-top: 20px;
        margin-inline: 0px;
        margin-bottom: 10px;
    }

    .dizeresPortifolio h1 {
        font-size: 25px;
    }

    .dizeresPortifolio hr {
        height: 3px;
        border: none;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .dizeresPortifolio p {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .localizacao h1 {
        font-size: 25px;
    }

    .faleVisicom {
        margin-top: 40px;
        /*width: 100%;*/
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .faleVisicom h1 {
        width: 100%;
        text-align: center;
        font-weight: lighter;
        font-size: 30px;
    }

    .faleVisicom form {
        width: 90%;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
    }

    .faleVisicom form .inputNome,
    .inputSobrenome,
    .inputEmail,
    .inputAssunto {
        width: 90%;
    }

    .faleVisicom form label {
        color: #214a6a;
        font-weight: bold;
    }

    .faleVisicom form input {
        width: 100%;
        height: 0px;
        border: 1px solid #33333365;
        border-top: none;
        border-left: none;
        border-right: none;
        outline: 0;
        margin-bottom: 30px;
        padding: 20px;
        font-size: 17px;
    }

    .inputMensagem {
        width: 90%;
        align-items: flex-start;
    }

    .inputMensagem textarea {
        width: 90%;
    }

    .inputMensagem p {
        text-align: right;
    }

    .faleVisicom input:hover {
        border: 2px solid #33333365;
        border-top: none;
        border-left: none;
        border-right: none;
    }

    .btnEnviar {
        width: 100%;
        float: none;
        padding: 10px;
        background-color: #258cd4;
        border: 2px solid #258cd4;
        color: #ffff;
        border-radius: 3px;
        margin: 0 auto;
        margin-top: 30px;
        margin-bottom: 60px;
        transition: 0.5s;
    }

    .btnEnviar:hover {
        padding: 11px;
        width: 176px;
        box-shadow: 0px 0px 10px #258cd4;
    }

    .receberNoticias {
        padding-top: 30px;
        padding-bottom: 30px;
        background-color: #f8f8f8;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .receberNoticias p {
        width: 90%;
        /* margin-inline: 400px; */
        font-size: 15px;
        /* background-color: #214a6a; */
    }

    .receberNoticias form {
        width: 90%;
        margin-inline: 20px;
        /* background-color: #214a6a; */
    }

    .receberNoticias form input {
        padding: 10px;
        width: 60%;
        height: 30px;
        background-color: #ffffff;
        border: none;
        outline: 0;
        transition: 0.5s;
        font-size: 15px;
        border: 2px solid #ffffff;
    }

    .receberNoticias form input:hover {
        box-shadow: 0px 0px 15px #258bd467;
        border: 2px solid #258cd4;
    }

    #enviarEmail {
        background-color: #258cd4;
        color: #ffffff;
        padding: 15px;
        border: none;
        width: 30%;
        height: 54px;
        font-size: 16px;
        margin-left: -4px;
    }

    footer {
        text-align: center;
    }

    .logoFooter {
        width: 100%;
        /* background-color: blue; */
        display: flex;
        /* align-items: center; */
        justify-content: center;
    }

    .logoFooter img {
        width: 50%;
        margin: 0 auto;
        margin-bottom: 10px;
        /* height: 50px; */
    }

    .coluna1 {
        margin: 0;
        margin-top: 60px;
    }

    .coluna2 {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .coluna2 p:nth-child(1) {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .coluna2 img {
        width: 6%;
        margin-top: 10px;
        margin-right: 20px;
        margin-bottom: 10px;

    }

    .coluna2 p img {
        width: 40%;
    }

    .redesSociais {
        width: 80%;
        margin-top: 5px;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        justify-items: center;
        justify-content: center;
    }

    .redesSociais a {
        margin-left: 10px;
        margin-right: 10px;
        width: 10%;
    }

    .redesSociais img {
        width: 100%;
    }

    .redesSociais {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rodape {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 60px;
        margin-inline: 60px;
        margin-bottom: 50px;
    }

    .flexEmail {
        /* height: 100px; */
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        margin-top: -5px;
        /* background-color: #258cd4; */
    }

    .flexEmail img {
        width: 4%;
        margin-right: 8px;
    }

    .bandeira img {
        width: 80%;
    }

    .dizerescookies p {
        margin-inline: 20px;
        margin-bottom: 5px;
        font-size: 16px;
        color: #f8f8f8;
    }

}

.erro {
    color: red;
    background: #ffeeee;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid red;
}

.sucesso {
    color: green;
    background: #eeffee;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid green;
}

/*teste cariinho*/

.carTeste{
    width: 80px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #258cd4; */
    margin-right: -10px;
}

.carTeste a{
    color: #f8f8f8;
    height: 100%;
    /* width: 100%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.car{
    width: 100%;
    height: 30%;
    cursor: pointer;
}