@charset "UTF-8";

/* FONTES */

@font-face {
    font-family: "Raleway-Light";
    src: url("../fontes/Raleway-Light.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway";
    src: url("../fontes/Raleway-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway-Bold";
    src: url("../fontes/Raleway-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Raleway-Black";
    src: url("../fontes/Raleway-Black.ttf") format("truetype");
}

@font-face {
    font-family: "NanumGothic-Regular";
    src: url("../fontes/NanumGothic-Regular.ttf") format("truetype");
}

@font-face {
    font-family: "NanumGothic-Bold";
    src: url("../fontes/NanumGothic-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "NanumGothic-ExtraBold";
    src: url("../fontes/NanumGothic-ExtraBold.ttf") format("truetype");
}


/* ESTRUTURA - GERAL */

html {
	margin-top:0!important;
}

body {
    width:100%;
    margin: 0;
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
}

h1 {
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
    font-size: 2.5rem;
}

h2 {
    font-family: 'Raleway-light', sans-serif, Arial, Helvetica;
    font-size: 3rem;
}

h3 {
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
    font-size: 1.75rem;
    margin: 1.875rem 0;
}

h4 {    
    font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
    font-size: 1.25rem;
}

h5 {
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
}

p {
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
    font-size: 1.125rem;
}

.bg-dark {
    background-color: #000000!important;
}

/* ÁREA PRINCIPAL */

.banner {
    width: 100%;
    /*height: 100vh;*/
    overflow: hidden;
    justify-content: center;
    align-items: center;
    padding-top: 0!important;
    margin: 0 auto;
    position: relative; 
    z-index: -1000;
    background: #000000;
}

.v-desktop {
    display: block;
}

.v-mobile {
    display: none;
}

.banner video {
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    z-index: -1;
    background: #000000;

}

.content {
    position: fixed;
    width: 100%;
    margin: 0 auto;
}

.content .container-fluid {
    width: 90%;
}
  
/* LOGO E MENU */

img.logo-inicial {
    max-width: 15rem;
    height:auto;
    padding-left: 0.938rem;
    transition-property: background, margin, width, border-radius, height, padding;
    transition-duration: 1s;
}

.fixar {
    position: fixed!important;
    top: 0!important;
    z-index: 2;
    background: #04001D!important;
    margin: 0!important;
    width: 100%!important;
    border-radius: 0!important;
    height: auto!important;
    padding: 0.625rem!important;
    transition-property: background, margin, width, border-radius, height, padding;
    transition-duration: 1s;
}

.fixar img.logo-inicial {
    max-width: 15rem;
    height:auto;
    transition-property: background, margin, width, border-radius, height, padding;
    transition-duration: 1s;
}

.menu-telamenor {
    display: none;
}

nav.navbar {
    width: 95%;
    margin: 0 2.5%;
    background: #00000066;
    border-radius: 3.125rem;
    position: absolute;
    top: 1.875rem;
    padding: 1rem 0!important;
    transition-property: background, margin, width, border-radius, height, padding;
    transition-duration: 1s;
}

ul.navbar-nav {
    padding-right: 0.938rem;
    align-items: center;
}

.nav-item a {
    color: #FFFFFF!important;
    font-size: 1.125rem;
    font-family: 'Raleway', sans-serif, Arial, Helvetica;
    margin: 0 0.375rem!important;
    transition-property: color;
    transition-duration: 0.5s;
    border: 0.063rem solid #ffffff00;
    border-radius: 2.5rem;
}

a.nav-link {
    padding-right: 2rem!important;
    padding-left: 2rem!important;
}

a.nav-link:hover {
    color: #19D66A!important;
    border: 0.063rem solid #19D66A;
    border-radius: 2.5rem;
}

a.nav-link.ativo {
    color: #19D66A!important;
    background:#ffffff1c;
    font-weight: bold;
}

a.nav-redessociais {
    display: block;
    width: 3.688rem;
    height: 3.688rem;
    text-align: center;
}

a.whatsapp {
    background: url("../imagens/whatsapp.png") 100%;
}

.navbar-toggler-icon {
    color: #ffffff;
}

button.navbar-toggler {
    position: absolute;
    right: 70px;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    line-height: unset;
    background-color: #ffffff24;
    border: 0;
    border-radius: 2rem;
    transition: box-shadow .15s ease-in-out;
    display: flex;
    align-items: center;
    margin-right: 0.5rem;
}

.btn.btn-primary {
    color: #100074;
    padding: 0 4.125rem;
    background-color: #19D66A;
    border: 0.188rem solid #19D66A;
    height: 3rem;
    font-size: 1.25rem;
    border-radius: 1.875rem;
    font-weight: bold;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:target {
    color: #19D66A;
    background-color: transparent;
}

.btn.btn-secondary {
    color: #19D66A;
    padding: 0 2rem;
    background-color: transparent;
    border: 0.188rem solid #19D66A;
    height: 3rem;
    font-size: 1.25rem;
    border-radius: 1.875rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus, .btn-secodary:target {
    color: #100074;
    background-color: #19D66A;
}

/*
.seta-svg {
    margin-top: 50px;
    display: grid;
    place-items: center;
}

.seta-svg svg {
    animation: seta-svg 1s ease-in infinite alternate;
}

@keyframes seta-svg {
    to {
    transform: translateY(30px);
    }
}*/
        
/* ÁREA SOBRE A EMPRESA */

#quemsomos {
    z-index: 1;
    position: relative;
    background: #04001D!important;
    padding: 12rem 9.375rem;
}

#quemsomos .video-iframe {
    text-align: left!important;
}

#quemsomos iframe {
    width: 35rem;
    height: 19.688rem;
}

#quemsomos .linha-2 {
    margin-top: 4rem;
}

#quemsomos div {
    color: #FFFFFFe0;
}

#quemsomos .txt {
    font-size: 1.5rem;
    padding-left: 2rem;
}

#quemsomos .txt span {
    color:#19D66A; 
    font-size:2rem; 
    font-family:'Raleway-Bold',sans-serif;
}

#quemsomos .foco {
    text-align: right!important;
    padding-right: 5rem!important;
    font-size: 1.5rem;
    padding-left: 0.5rem;
}

#quemsomos .foco span {
    color:#19D66A; 
    font-size:2rem; 
    font-family:'Raleway-Bold',sans-serif;
}

.fundo-certificado {
    background: url(../imagens/logo-mpsbr-menor.webp) top right no-repeat;
}

.fundo-certificado h1 {
    color: #ffffff!important;
}

.fundo-certificado p {
    padding: 1.875rem 8.125rem 0 0;
    color: #ffffff90!important;
    font-size: 1rem;
}

/* a.seta-proximo {
    animation: seta-proximo 1s ease-in infinite alternate;
    transition-property: background;
    transition-duration: 0.5s;
}

a.seta-proximo:hover {
    background: url("../imagens/Icon-ionic-ios-arrow-round-forward-black.svg");
}

@keyframes seta-proximo {
    to {
    transform: translateX(30px);
    }
}*/

/* O QUE FAZEMOS */

#o-que-fazemos {
    background: linear-gradient(180deg, #04001D 0%, #1b2251 100%);
    padding-top: 10rem;
    padding-bottom: 8rem;
    text-align: center;
    color: #FFFFFF;

}

#o-que-fazemos .caracteristicas {
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.caracteristicas img {
    margin: 4rem 0 1rem 0;
    opacity: 0.2;
}

.caracteristicas span {
    color: #19D66A;
    font-size: 1.5rem;
    font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
}

/* ÁREA CLIENTE */

#nossos-clientes {
    position: relative;
    background: #FFFFFF;
    padding: 12rem 0 5rem 0;
}

#nossos-clientes .breadcrumb {
    color: #025C9B;
    background-color: transparent;
    border: 0.125rem solid #025C9B;
    border-radius: 2.188rem!important;
    display: block;
    width: 15rem;
    text-align: center;
    padding: 0.6rem;
    margin: 0 auto 3rem auto;
    font-weight: bold;
}

#nossos-clientes p {
    text-align: center;
    font-size: 1.25rem;
    margin-top: 2rem;
    line-height: 2.125rem;
}

#nossos-clientes p span {
    font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
    font-size: 1.75rem;
}

.carousel {
    width: 70%!important;
    margin: 3.125rem auto;
}

/*.owl-stage-outer {
    width: 90%;
    margin: 0 auto;
}*/


.owl-item {
    display: flex!important;
    justify-content: center!important;
    /*width: 15rem!important;*/
}

#owl-demo .item{
    margin: 10px 0;
    background: #FFFFFF;
    width: 11.25rem;
    height: 11.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#owl-demo .item img{
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.owl-nav {
    font-size: 7.813rem;
    color: #19D66A;
}

button.owl-prev {
    position: absolute;
    top: 1rem;
    left: -6.25rem;
}

button.owl-prev.disabled {
    opacity: 0.3;
}

button.owl-next {
    position: absolute;
    top: 1rem;
    right: -6.25rem;
}

button.owl-next.disabled {
    opacity: 0.3;
}

.owl-dots {
    display: none;
}

/* ÁREA BANNER */

.innovate {
    margin-bottom: 8rem;
    position: relative;
}

.innovate a {
    color:#FFF;
    text-decoration: none!important;
}

.innovate .fundo p a {
    color:#FFF!important;
}

.innovate .fundo {
    background: url(../imagens/fundo.png) center left no-repeat;
    padding: 2rem;
}

.innovate .logo {
    margin-right: 6rem;
}

.innovate .txt {
    text-align: left;
}

.innovate .fundo h1 {
    font-size: 2rem;
    color: #FFF;
    padding-top: 1rem;
    margin: 0;
}

.innovate .fundo p {
    font-size: 1rem;
    color: #FFF!important;
}

.innovate .fundo a span {
    font-size: 1rem;
    color: #19D66A;
    font-weight: 600;
    text-decoration: underline;
}

.innovate .fundo a span:hover {
    color: #FFF;
}

.innovate .fundo .livro {
    position: absolute;
    top: -5.5rem;
    right: 2rem;
}

/* ÁREA CONTATO */

#fale-conosco {
    background: rgb(4,0,29);
    background: linear-gradient(180deg, #1b2251 0%, rgba(0,109,162,1) 100%);
    padding-top: 10rem;
    padding-bottom: 3rem;
    text-align: center;
    color: #FFFFFF;
}

#fale-conosco h1 {
    color: #19D66A;
}

#fale-conosco h1 span.bold {
    font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
}

#fale-conosco p {
    font-size: 1.5rem;
}

#fale-conosco p.subtitulo {
    padding: 0 2.5rem;
}

#fale-conosco form {
    padding: 0;
    width: 60rem;
    margin: 0 auto;
}

#fale-conosco .mb-3 {
    text-align: left;
}

#fale-conosco .form-label {
    padding-left: 0.725rem;
    opacity: 0.75;
}

#fale-conosco input.form-control {
    border: 0.063rem solid #ffffff40;
    background: transparent;
    border-radius: 1rem;
    height: 3rem;
    color: #FFFFFF;
    font-weight: bold;
    
}

#fale-conosco input.form-control:focus {
    border: 0.063rem solid #ffffff;
    color: #FFFFFF;
}

#fale-conosco input.form-control::placeholder {
    color: #FFFFFF;
    opacity: 0.35;
    font-weight: normal;
}

.col-auto.form-nome {
    width: 70%;
}

.col-auto.form-email {
    width: 30%;
}

#fale-conosco .form-3colunas {
    width: 33.33%;
}

#fale-conosco input#exampleCheck1 {
    height: 1.05rem;
    border-radius: 0.25rem;
}

#fale-conosco textarea#FormControlTextarea {
    border: 0.063rem solid #ffffff40;
    background: transparent;
    border-radius: 1rem;
    color: #FFFFFF;
    font-weight: bold;
}

#fale-conosco textarea#FormControlTextarea:focus {
    border: 0.063rem solid #ffffff;
    color: #FFFFFF;
}

#fale-conosco textarea#FormControlTextarea::placeholder {
    color: #FFFFFF;
    opacity: 0.5;
    font-weight: normal;
}

#fale-conosco .g-recaptcha {
    width: 35%;
    float: left;
}

#fale-conosco .form-check {
    width: 65%;
    float: left;
    font-weight: bold;
}

#fale-conosco .form-check a {
    color: #19D66A;
}

p.form-atencao {
    font-size: 1rem!important;
    font-weight: normal;
}


/* RODAPÉ */

footer {
    z-index: 1;
    position: relative;
    width: 100%;
    background: #FFFFFF;
    color: #084d6e;
    padding-top: 1.25rem;
    text-align: center;
    padding-bottom: 1.25rem;
}

footer a {
    color: #19D66A;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #006DA2;
    text-decoration: underline;
}

footer img.ico-rodape {
    padding-right: 0.375rem;
}

footer .esquerda {
    text-align: left;
    margin-top: 3.125rem;
}

footer .esquerda p {
    font-size: 1rem;
}

footer .logo-rodape {
    float: left;
    margin-right: 1.25rem;
}

footer .direita {
    text-align: right;
    margin-top: 1rem;
    padding: 0;
}

footer .direita p {
    font-size: 0.875rem;
}

footer ul {
    display: inline-flex;
}

footer li {
    border: 0.063rem solid #084D6E;
    padding: 0.938rem;
    border-radius: 50%;
    list-style-type: none;
    display: flex;
    text-align: center;
    width: 3.75rem;
    height: 3.75rem;
    float: right;
    justify-content: center;
    margin-left: 0.5rem;
    align-items: center;
}

footer li:hover {
    background: #006ca12b;
    border: 0.063rem solid #FFFFFF;
}

footer .copy {
    font-size: 0.875rem;
}

footer .copy a {
    color: #025C9B;
    text-decoration: underline;
}

footer .copy a:hover {
    color: #19D66A;
    text-decoration: underline;
}

footer .links-rodape a {
    font-size: 0.875rem;
    color: #025C9B;
    text-decoration: underline;
}

footer .links-rodape a:hover {
    font-size: 0.875rem;
    color: #19D66A;
    text-decoration: underline;
}

/*LGPD*/

.lgpd {
    position: fixed;
    bottom: 0;
    z-index: 1;
    padding: 1.25rem;
    background: #111738eb;
    width: 100%;
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
}

.lgpd-left {
    padding-right: 1.25rem;
}

.lgpd-left a {
    color: #19D66A;
}

.lgpd-right {
    padding-left: 1.25rem;
}



/* INTERNAS */

#pg-interna {
    font-family: 'Raleway',sans-serif;
}

#pg-interna .row {
    margin: 0!important;
}

#pg-interna .topo {
    position: fixed!important;
    top: 0!important;
    z-index: 1;
    background: #04001D!important;
    margin: 0!important;
    width: 100%!important;
    border-radius: 0!important;
    height: auto!important;
    padding: 0.625rem!important;
}

#pg-interna img.logo-inicial {
    max-width: 11.25rem;
    height:auto;
}

.conteudo {
    padding: 7rem 3.125rem 1.563rem 3.125rem;
}

.conteudo h1 {
    color: #025C9B;
}

.conteudo h2 {
    color: #19D66A;
    font-size: 1.875rem;
    font-weight: bold;
}

.conteudo h3 {
    color: #025C9B;
    font-size: 1.5rem;
    margin-top: 1.563rem;
}

table.tabela-termos {
    border: 0.063rem solid #CCCCCC;
}

.tabela-termos tbody, td, tfoot, th, thead, tr {
    padding: 1.25rem!important;
}

p.local-data {
    text-align: right;
}

footer img.logomarca-rodape {
    max-width: 7rem;
}

@media (max-width: 1699px) /*video youtube*/ {

    #quemsomos iframe {
    width: 30rem;
    height: 16.875rem;
    }
}

@media (max-width: 1550px) /*video youtube*/ {

    #quemsomos iframe {
    width: 27rem;
    height: 15.187rem;
    }
}


@media (max-width: 1399px) /*tamanho lg*/ { 

    /*MENU*/

    img.logo-inicial {
        max-width: 10rem;
        height:auto;
    }

    .fixar img.logo-inicial {
        max-width: 10rem;
        height:auto;
    }

    a.nav-link {
        padding-right: 1rem!important;
        padding-left: 1rem!important;
    }

    .nav-item a {
        font-size: 1rem;
    }

    /*QUEM SOMOS*/

    #quemsomos {
        padding: 10rem 5rem 2rem 5rem;
    }

    #quemsomos iframe {
        width: 32rem;
        height: 18rem;
    }

    #quemsomos .txt {
        font-size: 1.25rem;
        padding-left: 1rem;
    }

    #quemsomos .txt span {
        font-size:1.75rem; 
    }
    
    #quemsomos .foco {
        font-size: 1.25rem;
        text-align: left!important;
        margin-bottom: 3rem;
        padding: 0;
    }
    
    #quemsomos .foco span {
        font-size:1.75rem; 
    }

    /* ÁREA BANNER */

    .innovate .logo {
        margin-right: 2rem;
    }

    .innovate .fundo .livro {
        top: -5rem;
        right: 2.5rem;
    }

    /*RODAPÉ*/

    footer .logo-rodape {
        height:auto;
        float: none;
        margin-bottom: 0.75rem;
    }

    footer .direita {
        margin-top: 3.25rem;
    }

}

@media (max-width: 1200px)/*dimensão: lg*/ {

    #quemsomos .video-iframe {
        text-align: center!important;
        padding-bottom: 4rem;
    }

    #quemsomos iframe {
        width: 40rem;
        height: 22.5rem;
    }

    #quemsomos .txt {
        padding-left: 0;
    }

    #quemsomos .foco {
        padding-right: 0!important;
    }

    #quemsomos .linha-2 {
        margin-top: 2rem;
    }

    /* ÁREA BANNER */

    .innovate {
        margin-bottom: 5rem;
        position: relative;
    }

    .innovate .fundo {
        padding: 0.5rem 1rem;
    }

    .innovate .txt {
        width: 45%!important;
    }

    .innovate .logo {
        margin-right: 0rem;
    }

    .innovate .logo img {
        width:90%;
    }

    .innovate .fundo h1 {
        font-size: 1.25rem;
    }

    .innovate .fundo .livro {
        top: -1.25rem;
        right: 0.5rem;
        Width:20%;
    }

    .innovate .fundo .livro img {
        max-width: 90%!important;
        float: right;
    }

}

@media (max-width: 1024px)/*dimensão: Nest Hub*/ {

    /*MENU*/

    .nav-item a {
        font-size: 1.25rem;
    }

    a.nav-link {
        padding-right: 0.825rem!important;
        padding-left: 0.825rem!important;
    }

    .menu-telamaior {
        display: none;
    }

    .menu-telamenor {
        display: inline-flex;
    }

    .navbar-nav {
        flex-direction: row;
    }

    /*.nav-item a {
        font-size: 1rem;
    }*/

    /*O QUE FAZEMOS*/

    #o-que-fazemos {
        padding-top: 6rem;
    }

    /*NOSSOS CLIENTES*/

    #nossos-clientes {
        padding: 8rem 0 2rem 0;
    }

    #nossos-clientes p {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    #nossos-clientes p span {
        font-size: 1.375rem;
    }

    /*FALE CONOSCO*/

    #fale-conosco form {
        padding: 0;
        width: 80%;
        margin: 0 auto;
    }

    #fale-conosco .form-check {
        width: 60%;
    }

    #fale-conosco .g-recaptcha {
        width: 40%;
    }

    /*RODAPÉ*/

    footer .direita {
        margin-top: 2.25rem;
        padding-right: 1.25rem;
    }

    footer .esquerda {
        padding-left: 1.25rem;
    }

}

@media (max-width: 991px)/*tamanho md*/ {

    /*QUEM SOMOS*/

    #quemsomos iframe {
        width: 35rem;
        height: 19.688rem;
    }

    /*FALE CONOSCO*/

    .col-auto.form-nome {
        width: 60%;
    }
    
    .col-auto.form-email {
        width: 40%;
    }

    #fale-conosco .form-check {
        width: 100%;
        margin-top: 1rem;
    }

    #fale-conosco .g-recaptcha {
        width: 100%;
    }

    /*RODAPÉ*/

    footer .esquerda {
        display: flex;
        justify-content: center;
        margin-top: 2.125rem;
    }

    footer .direita {
        text-align: center;
        margin-top: 1rem;
        padding: 0;
    }

    footer .logo-rodape {
        height:auto;
    }

    footer ul {
        display: inline-flex;
        padding-left: 0;
    }

    /*LGPD*/

    .lgpd {
        justify-content: center;
        display: block;
    }

    .lgpd-left {
        padding-right: 0;
        width: 100%;
    }

    .lgpd-right {
        padding-left: 0;
        width: 100%;
        margin-top: 1.25rem;
    }
    
}

@media (max-width: 767px)/*tamanho sm*/ {

    /*QUEM SOMOS*/

    #quemsomos iframe {
        width: 25rem;
        height: 14rem;
    }

    #quemsomos .txt {
        font-size: 1rem;
        text-align: center!important;
    }

    #quemsomos .txt span {
        font-size: 1.15rem;
    }

    #quemsomos .foco {
        font-size: 1rem;
    }

    #quemsomos .foco span {
        font-size: 1.15rem;
    }
    
    /*MENU*/

    img.logo-inicial {
        max-width: 9rem;
    }

    .fixar img.logo-inicial {
        max-width: 8rem;
        height:auto;
    }

    .nav-item a {
        margin: 0 0.2rem!important;
    }

    /* ÁREA BANNER */

    .innovate {
        margin-bottom: 4rem;
    }

    .innovate .fundo {
        padding: 0.5rem 1rem;
        display: block!important;
    }

    .innovate .txt {
        width: 100%!important;
        text-align: center;
        margin:  1rem 0 2rem 0;
    }

    .innovate .logo {
        margin: 1rem 0 0 0;
        width: 50%;
    }

    .innovate .fundo h1 {
        font-size: 1.25rem;
    }

    .innovate .fundo .livro {
        position: absolute;
        text-align: center;
        right: 2rem;
    }

    .innovate .fundo .livro img {
        max-width: 90%!important;
        float: right;
    }

    /*FALE CONOSCO*/

    .col-auto.form-nome {
        width: 100%;
        margin-bottom: 1rem!important;
    }
    
    .col-auto.form-email {
        width: 100%;
    }

    #fale-conosco .form-3colunas {
        width: 100%;
    }

    input#InputTelefone {
        margin-bottom: 1rem;
    }

    input#InputCidade {
        margin-bottom: 1rem;
    }

    /*RODAPÉ*/

    footer .logo-rodape {
        height:auto;
        float: none;
        margin-bottom: 0.75rem;
    }

    footer .esquerda {
        display: block;
        text-align: center;
    }

    footer .direita {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
}

@media (max-width: 575px)/*tamanho xs*/ { 


    /*SLIDE*/

    .v-desktop {
        display: none;
    }

    .v-mobile {
        display: block;
        background: url(../imagens/fundo-video-mobile.webp) no-repeat top center;
        background-size: 100%;
        width:100%;
        height: 400px;
    }

    .carousel {
        padding-top: 8.5rem;
    }

    .carousel-item {
        transition: transform 1s ease-in-out;
        color: #FFF;
        font-size: 2rem;
        text-align: center;
        line-height: 2.5rem;
    }

    .carousel-item span {
        font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
        font-size: 2.5rem;
    }

    /* ANIMAÇÕES */
    .fadeInDown {
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 1s;
        -webkit-animation-delay: 1s;
        
    }
       
    @-webkit-keyframes fadeInDown {
        0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        }
        100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        }
    }
        
    @keyframes fadeInDown {
        0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        }
        100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        }
    } 

    .bounceIn {
        -webkit-animation-name: bounceIn;
        animation-name: bounceIn;
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
    }
    
        @-webkit-keyframes bounceIn {
        0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        }
        0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
        }
        20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
        }
        40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
        }
        60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
        }
        80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
        }
        100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        }
    }
    
        @keyframes bounceIn {
        0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        }
        0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
        }
        20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
        }
        40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
        }
        60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
        }
        80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
        }
        100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
        }
    } 

    .fadeInUp {
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
    }

    @-webkit-keyframes fadeInUp {
        0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        }
        100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        }
    }
        
    @keyframes fadeInUp {
        0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        }
        100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
        }
    } 

    /*QUEM SOMOS*/

    #quemsomos {
        padding: 6rem 3rem 2rem 3rem;
    }

    #quemsomos iframe {
        width: 15rem;
        height: 8.437rem;
    }
    

    .fundo-certificado {
        background: url(../imagens/certificado-mobile.webp) top center no-repeat;
        background-size: 150px;
    }

    .fundo-certificado h1 {
        margin: 30px 0 110px 0;
        text-align: center;
        font-size: 40px;
    }

    .fundo-certificado p {
        padding: 3rem 0 0 0;
        text-align: center;
    }

    /*O QUE FAZEMOS*/

    #o-que-fazemos {
        padding-top: 2rem;
        padding-bottom: 5rem;
    }

    #o-que-fazemos P {
        font-size: 1rem;
    }

    #o-que-fazemos P span {
        font-size: 1.25rem;
    }


    /*MENU*/

    img.logo-inicial {
        max-width: 8rem;
        height:auto;
    }

    .home {
        display: none!important;
    }

    .fixar {
        position: fixed!important;
        top: 0!important;
        z-index: 2;
        background: #04001D!important;
        margin: 0!important;
        width: 100%!important;
        border-radius: 0!important;
        height: auto!important;
        padding: 0.625rem!important;
    }

    nav.navbar {
        position: fixed!important;
        top: 0!important;
        z-index: 2;
        background: #04001D!important;
        margin: 0!important;
        width: 100%!important;
        border-radius: 0!important;
        height: auto!important;
        padding: 0.625rem!important;
    }

    .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }

    .nav-link {
        padding: 0.2rem;
    }

    a.nav-link {
        padding: 0.5rem!important;
        display: flex;
        justify-content: center;
    }

    .nav-item a {
        font-size: 0.875rem;
        margin-top: 0 0.375rem;
    }    

    a.nav-redessociais {
        width: 2rem;
        height: 2rem;
        text-align: center;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }

    /*NOSSOS CLIENTES*/

    button.owl-prev {
        left: -3.5rem;
    }

    button.owl-next {
        right: -3.5rem;
    }

    #nossos-clientes {
        padding: 6rem 0 2rem 0;
    }


     /*FALE CONOSCO*/

    h1 {
        font-size: 1.75rem;
        padding: 0 1.5rem;
    }

    #fale-conosco {
        padding-top: 6rem;
    }

    #fale-conosco p {
        font-size: 1rem;
    }

    .btn.btn-primary {
        padding: 0 3rem;
    }

    /* ÁREA BANNER */

    .innovate {
        margin-bottom: 3rem;
    }

    .innovate .fundo {
        padding: 0.5rem 1rem;
        display: block!important;
    }

    .innovate .txt {
        width: 100%!important;
        text-align: center;
        margin:  0;
    }

    .innovate .fundo h1 {
        font-size: 1.125rem;
    }

    .innovate .fundo p {
        font-size: 0.875rem;
    }

    .innovate .logo {
        margin:0 auto;
        width: 50%;
        padding: 1rem 0 0 0!important;
    }

    .innovate .fundo .livro {
        display:none;
    }
    
    /*RODAPÉ*/

    footer .esquerda {
        padding-left: 0.625rem!important;
        padding-right: 0.625rem!important;
    }

    footer .esquerda p {
        font-size: 0.75rem!important;
    }

    footer {
        padding-top: 0rem;
        padding-bottom: 2rem;
    }

    /*INTERNAS*/
    
    .conteudo {
        padding: 7rem 1rem 2rem 1rem!important;
    }

    .conteudo h1 {
        padding: 0;
    }

    .conteudo .row>* {
        padding-right: 0!important;
        padding-left: 0!important;
    }

    img.termo-consentimento {
        max-width: 100%;
        padding-bottom: 1rem;
    }

}

@media (max-width: 360px)/*tamanho Galaxy S8+ e Galaxy Fold*/ { 

    /*SLIDE*/
    .carousel {
        padding-top: 8rem;
    }

    .carousel-item {
        transition: transform 1s ease-in-out;
        color: #FFF;
        font-size: 1.75rem;
        text-align: center;
        line-height: 2rem;
    }

    .carousel-item span {
        font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
        font-size: 2rem;
    }

    /*QUEM SOMOS*/

    #quemsomos {
        padding: 6rem 3rem 2rem 3rem;
    }

    #quemsomos iframe {
        width: 12rem;
        height: 6.35rem;
    }

     /*MENU*/

    img.logo-inicial {
        max-width: 5rem!important;
        height:auto;
        padding-left: 0rem!important;
    }

    .btn.btn-primary {
        padding: 0 1.5rem;
    }

    ul.navbar-nav {
        padding-right: 0;
    }

}

@media (max-width: 280px)/*tamanho Galaxy Fold*/ { 

    /*SLIDE*/

    .carousel {
        padding-top: 8rem;
    }

    .carousel-item {
        transition: transform 1s ease-in-out;
        color: #FFF;
        font-size: 1.5rem;
        text-align: center;
        line-height: 1.75rem;
    }

    .carousel-item span {
        font-family: 'Raleway-Bold', sans-serif, Arial, Helvetica;
        font-size: 1.75rem;
    }
   
    /*MENU*/

    .nav-item a {
        font-size: 0.75rem;
        margin: 0 0.1rem!important;
    }

    a.nav-redessociais.whatsapp {
        width: 1.5rem;
        height: 1.5rem;
    }

        
    /*QUEM SOMOS*/

    #quemsomos {
        padding: 2rem 1rem;
    }

    #quemsomos .row {
        --bs-gutter-x: 0!important;
    }

    #quemsomos .video-iframe {
        padding-bottom: 2rem;
    }

    .fundo-certificado h1 {
        margin-top: 40px!important;
        padding: 0!important;
        font-size: 30px;
    }

    /*O QUE FAZEMOS*/
    
    #o-que-fazemos .caracteristicas {
        width: 100%;
    }

    .caracteristicas img {
        margin-top: 2rem;
    }

    #o-que-fazemos p span {
        font-size: 1rem;
    }


    /*NOSSOS CLIENTES*/

    #nossos-clientes {
        padding-top: 4rem;
    }

    #nossos-clientes p {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    #nossos-clientes p span {
        font-size: 1rem;
    }

    .owl-nav {
        font-size: 6.8rem;
    }

    .carousel {
        width: 60%!important;
        margin: 0rem auto;
    }

    i.feather-chevron-left {
        font-size: 5rem;
    }

    i.feather-chevron-right {
        font-size: 5rem;
    }

    #owl-demo .item img {
        max-width: 90%;
        padding-top: 20px;
    }

    #owl-demo .item {
        width: 10rem;
        height: 10rem;
    }

    /*CONTATO*/
    .g-recaptcha {
        display: none;
    }
   
}