@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html {scroll-behavior: smooth;}
* {margin: 0; padding: 0; box-sizing: border-box; font-family: "Montserrat", sans-serif; font-optical-sizing: auto; font-style: normal; }
body {background-image: url('../img/bg.png');  font-size: 22px; overflow-x: hidden; position: unset!important; color: var(--bordo); font-weight: 400; color: var(--preto);}
p {line-height: 36px; margin-bottom: 15px; color: var(--cinza);}
p b {color: var(--preto);}
a,button, input, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0;}
button {cursor: pointer;}
cite {font-style: normal;}
a, a:hover {text-decoration: none;}
a:focus, button:focus, input:focus, textarea:focus {outline: 0; text-decoration: none;}
ul {-webkit-padding-start:0; -moz-padding-start:0; margin: 0;}
li {list-style-type: none;}
img {max-width: 100%;}
section{padding: 75px 0 0;}
.grid {max-width: 1330px; width: 100%; margin: 0 auto; padding: 0 30px; display: grid; grid-gap: 0px; position: relative; flex-wrap: wrap;}
h2{font-size: 40px; line-height: 48px; font-weight: 400; margin-bottom: 20px; color: var(--preto);}
h2 span {font-weight: 600; color: var(--verde);}
h2 em {display: flex; font-size: 22px; line-height: 32px; margin-top: 20px; color: var(--cinza);}
cite {font-size: 20px; color: var(--preto); margin-bottom: 10px; display: flex; text-transform: uppercase; align-items: center; gap: 10px;}
cite img {max-width: 36px}


:root {
    --azul: #0864BB;
    --prata: #C5C5C5;
    --cinza: #696969;
    --preto: #1D1D1D;
    --branco: #ffffff;
    --verde: #8BBF40;
    --amarelo: #FEDB02;
    --azul: #0285C8;
    --fundo: #f0f0f0;
}


header {
    padding: 30px 0;
}
header .grid {
    grid-template-columns: max-content 1fr max-content;
    align-items: center;
}
header ul {
    display: flex;
    justify-content: center;
    gap: 30px;
}
header ul li a {
    color: var(--preto);
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
}
header ul li a:hover, header ul li.ativo a {
    color: var(--azul);
}
header .grid > a[href*="contato"] {
    color: var(--branco);
    background-color: var(--azul);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
}
header ul li:hover ol {
    visibility: visible;
    opacity: 1;
}
header ol {
    position: absolute;
    background: var(--preto);
    padding: 5px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    visibility: hidden;
    opacity: 0;
    margin-top: 10px;
    z-index: 1;
}
header ol li a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 15px 0;
}
header ol li img {
    width: 16px;
    filter: brightness(0) invert(1);    
}
header ol li {
    border-bottom: 2px solid rgb(255 255 255 / 15%); 
}
header ol li:last-child {
    border-bottom: 0;
    padding-bottom: 0    
}
header ol li a, header ul li.ativo ol li a {
    color: var(--branco);
    font-size: 16px;
}
header ul li.ativo ol li a:hover {
    color: var(--azul);
}
header nav {
    width: 40px;
    height: 30px;
    background-image: url('../img/menu.png');
    background-size: cover;
    background-position: center;
    display: none;
}
header ul > li:last-child {
    display: none;
}


section.banner {
    padding-top: 0;
}
section.banner .grid {
    grid-template-columns: 1fr .7fr;
    gap: 50px;
    align-items: center;
}
section.banner h1 {
    font-size: 56px;
    line-height: 62px;
    font-weight: 300;
    margin-bottom: 20px;
}
section.banner h1 span {
    font-weight: 600;
    color: var(--verde);
}
section.banner h1 strong {
    font-weight: 600;
}
section.banner p {
    max-width: 600px;
}
section.banner ul {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
section.banner ul li a {
    color: var(--branco);
    background-color: var(--azul);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    width: fit-content;
    border: 2px solid var(--azul);    
}
section.banner ul li:last-child a {
    background: none;
    border: 2px solid var(--preto);
    color: var(--preto);
} 
section.banner figure {
    position: relative;
}
section.banner figure:before {
    content: '';
    position: absolute;
    bottom: -1em;
    left: -4em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.banner figure:after {
    content: '';
    position: absolute;
    top: 1em;
    right: -4em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.banner figure i {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-image: url('../img/favicon.png');
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;    
}
section.banner figure i:nth-child(1) {
    background-color: var(--verde);   
    top: 2em;
    left: 1em;     
    animation: flutuar 4s ease-in-out infinite;        
}
section.banner figure i:nth-child(2) {
    background-color: var(--azul); 
    top: 7em;
    right: 2em;
    animation: flutuar 6s ease-in-out infinite;           
}
section.banner figure i:nth-child(3) {
    background-color: var(--amarelo);    
    top: 11em;
    left: 6em;
    animation: flutuar 5s ease-in-out infinite;        
}
section.banner figure i:nth-child(4) {
    background-color: var(--prata);   
    top: 14em;
    left: -2em;
    animation: flutuar 3s ease-in-out infinite;        
}
@keyframes flutuar {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-20px);
    }
    100% {
        transform: translatey(0px);
    }
}



section.sobre .grid {
    grid-template-columns: .7fr 1fr;
    gap: 75px;
    align-items: center;
}
section.sobre .grid div div {
    display: flex;
    align-items: center;
    gap: 50px;    
    margin: 30px 0 40px;
}
section.sobre .grid div div ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;    
}
section.sobre .grid div div ul li {
    font-weight: 500;
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 20px;
}
section.sobre .grid div div ul li img {
    width: 25px;
}
section.sobre a {
    color: var(--branco);
    background-color: var(--azul);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    width: fit-content;
    border: 2px solid var(--azul);
}
section.sobre figure {
    position: relative;
}
section.sobre figure:before {
    content: '';
    position: absolute;
    bottom: -1em;
    left: -4em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.sobre figure:after {
    content: '';
    position: absolute;
    top: 1em;
    right: -1em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.sobre figure i {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-image: url('../img/favicon.png');
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;    
}
section.sobre figure i:nth-child(1) {
    background-color: var(--verde);   
    top: 2em;
    left: 1em;     
    animation: flutuar 4s ease-in-out infinite;        
}
section.sobre figure i:nth-child(2) {
    background-color: var(--azul); 
    top: 7em;
    right: 2em;
    animation: flutuar 6s ease-in-out infinite;           
}
section.sobre figure i:nth-child(3) {
    background-color: var(--amarelo);    
    top: 11em;
    left: 6em;
    animation: flutuar 5s ease-in-out infinite;        
}
section.sobre figure i:nth-child(4) {
    background-color: var(--prata);   
    top: 14em;
    left: -2em;
    animation: flutuar 3s ease-in-out infinite;        
}





section.tempo cite {
    justify-content: center;
}
section.tempo h2 {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;    
}
section.tempo ul {
    display: flex;
    gap: 75px;
    justify-content: center;
    margin-bottom: 70px;    
}
section.tempo ul li {
    position: relative; 
    cursor: pointer;
}
section.tempo ul li:after {
    content: '';
    display: flex;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 5px solid var(--verde);
    margin: 10px auto 0;    
    transition: .3s;
}
section.tempo ul li:hover:after, section.tempo ul li.ativo:after {
    background-color: var(--verde);
    animation: bordas 2s infinite;    
}
@keyframes bordas {
    0% {box-shadow: 0px 0px 0px 0px rgb(91 204 120 / 25%);}
    50% {box-shadow: 0px 0px 0px 10px rgb(91 204 120 / 25%);}
    
}
section.tempo .conteudo {
    position: relative;
}
section.tempo .conteudo:before {
    content: '';
    position: absolute;
    top: 2em;
    left: -4em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.tempo .conteudo:after {
    content: '';
    position: absolute;
    top: -3em;
    right: -4em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.tempo article {
    background: var(--branco);
    padding: 50px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 50px;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 75px;
    transition: .4s;
}
section.tempo article.ativo {
    visibility: visible;
    opacity: 1;
    top: 0;
}
section.tempo article span {
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
}
section.tempo article h3 {
    margin-bottom: 10px;
}
section.tempo article p {
    margin-bottom: 0;
}



section.especialidades .grid {
    grid-template-columns: 1fr .7fr;
    gap: 75px;
    align-items: center;
}
section.especialidades article {
    margin-top: 40px;
    height: 250px;
    overflow: auto;
}
section.especialidades article ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
section.especialidades article ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 20px;
}
section.especialidades article ul li:before {
    content: '';
    width: 22px;
    height: 16px;
    background-size: cover;
    background-position: center;
    background-image: url('../img/verificado.png');
}
section.especialidades figure {
    position: relative;
}
section.especialidades figure:before {
    content: '';
    position: absolute;
    bottom: -1em;
    left: -2em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.especialidades figure:after {
    content: '';
    position: absolute;
    top: 1em;
    right: -2em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.especialidades figure i {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background-image: url('../img/favicon.png');
    background-size: 25px;
    background-position: center;
    background-repeat: no-repeat;    
}
section.especialidades figure i:nth-child(1) {
    background-color: var(--verde);   
    top: 2em;
    left: 2em;     
    animation: flutuar 4s ease-in-out infinite;        
}
section.especialidades figure i:nth-child(2) {
    background-color: var(--azul); 
    top: 7em;
    right: 1em;
    animation: flutuar 6s ease-in-out infinite;           
}
section.especialidades figure i:nth-child(3) {
    background-color: var(--amarelo);    
    top: 11em;
    left: 7em;
    animation: flutuar 5s ease-in-out infinite;        
}
section.especialidades figure i:nth-child(4) {
    background-color: var(--prata);   
    top: 14em;
    left: -1em;
    animation: flutuar 3s ease-in-out infinite;        
}

section.especialidades ::-webkit-scrollbar {
  width: 7px;
}

section.especialidades ::-webkit-scrollbar-track {
  background: #D9D9D9;
  border-radius: 10px;    
}

section.especialidades ::-webkit-scrollbar-thumb {
  background: #a4a4a4;
  border-radius: 10px;    
}

section.especialidades ::-webkit-scrollbar-thumb:hover {
  background: #555;
}



section.clientes cite {
    justify-content: center;
}
section.clientes h2 {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 40px;    
}
section.clientes .grid {
    grid-template-columns: minmax(0, 1fr);
}
/* the slides */
.slick-slide {
    margin: 0 27px;
}

/* the parent */
.slick-list {
    margin: 0 -27px;
}



footer {
    margin: 125px 0 100px;
}
footer p {
    margin-bottom: 0;
}
footer .grid:before {
    top: -75px;
}
footer .grid:before, footer .grid:after {
    content: '';
    display: inline-flex;
    height: 2px;
    background-color: #D9D9D9;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 30px;
    right: 30px;
    max-width: calc(100% - 60px);    
}
footer .grid:after {
    bottom: -65px;
}
footer .grid {
    grid-template-columns: 1fr max-content max-content 1fr;
    gap: 75px;
}
footer h2 {
    font-size: 24px;
    font-weight: 600;
}
footer .grid div:nth-child(1) img {
    margin-bottom: 30px;
}
footer .grid div:nth-child(1) p {
    font-size: 20px;
    line-height: 32px;    
}
footer .grid div:nth-child(2) ul, footer .grid div:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .grid div:nth-child(2) ul li a, footer .grid div:nth-child(3) ul li a {
    font-size: 20px;
    color: var(--cinza);
}
footer .grid div:nth-child(4) ul li:first-child {
    font-size: 32px;
    color: var(--cinza);
    margin-bottom: 10px;
}
footer .grid div:nth-child(4) ul li:last-child {
    font-size: 20px;
    margin-top: 10px;       
}
footer .grid div:nth-child(4) ul li a {
    color: var(--cinza);
}



.creditos {
    padding-bottom: 25px;
}
.creditos .grid {
    grid-template-columns: 1fr max-content;
}
.creditos p {
    font-size: 20px;
}
.creditos a {
    font-size: 20px;
    color: var(--cinza);
    display: flex;
    align-items: center;
    gap: 10px;    
}



section.conteudo.historia figure {
    position: relative;
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
    position: relative;
    width: 265px;
    height: 265px;
    border-radius: 40px;
    background-position: center;
    background-size: cover;
}
section.conteudo.historia figure img {
    border-radius: 40px;
    max-width: 350px
}
section.conteudo.historia figure figcaption {
    background: var(--azul);
    color: var(--branco);
    padding: 15px;
    position: absolute;
    font-size: 16px;
    font-weight: 500;
    border-radius: 12px;
    bottom: -15px;
    right: 0;
    left: 0;
    width: fit-content;
    margin: 0 auto;    
}
section.conteudo.historia .grid {
    display: block;
}

section.conteudo.historia blockquote {
	margin-top: 50px;
	display: flex;
}
section.conteudo.historia p img {
    float: left;
    margin-right: 40px;
    max-width: 265px;
    border-radius: 20px;
    height: auto;	
}
section.conteudo.historia p {
	font-size: 20px;
}
section.conteudo.historia p b {
	display: flex;
	font-size: 22px;
}


section.blog h2 {
    margin-bottom: 40px;
}
section.blog .grid:nth-child(2) {
    grid-template-columns: 1fr 1fr;
    gap: 70px 40px;    
} 
section.blog article figure {
    height: 300px;
    border-radius: 40px;    
    background-position: center;
    background-size: cover;
    position: relative;
    transition: .3s;
    background-color: var(--branco);
}
section.blog article figure:hover {
    filter: brightness(1.15);
}
section.blog article figure:before {
    content: '';
}
section.blog article h3 {
    font-size: 24px;
    color: var(--preto);
    font-weight: 600;
}
section.blog article time {
    font-size: 20px;
    color: var(--cinza);
    font-weight: 500;
    display: flex;
    margin: 22px 0 11px;  
}
section.blog .screen-reader-text {
    display: none;
}
section.blog nav {
    margin-top: 40px;
}
section.blog nav .nav-links {
    display: flex;
    gap: 10px;
}
section.blog nav .nav-links .page-numbers {
    display: flex;
    border-radius: 10px;
    padding: 5px 18px;
    border: 1px solid #D9D9D9;
    color: var(--preto);
}
section.blog nav .nav-links .page-numbers.current, section.blog nav .nav-links .page-numbers:hover {
    background: var(--azul);
    color: var(--branco);
    border-color: var(--azul);
}



section.blog-single figure {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    margin: 0 auto 5px;
    position: relative;
}
section.blog-single figure:before {
    content: '';
    position: absolute;
    bottom: -1em;
    left: -6em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.blog-single figure:after {
    content: '';
    position: absolute;
    top: 1em;
    right: -4em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.blog-single h2 {
    text-align: center;
    font-weight: 600;
}
section.blog-single time {
    font-size: 20px;
    color: var(--cinza);
    font-weight: 500;
    text-align: center;
    margin: 22px 0 11px;
}
section.blog-single h3 {
    margin: 20px 0 15px;	
	font-size: 28px;
}
section.blog-single p b {
	font-weight: 600;
	color: var(--cinza);
}
section.blog-single ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 30px;	
}
section.blog-single ul li {
	list-style-type: disc;
	color: var(--cinza);
}

section.contato .grid {
    grid-template-columns: 1fr .8fr;
    gap: 50px;
}
section.contato h2 {
    margin-bottom: 10px;
}
section.contato ul {
    margin-top: 30px;
}
section.contato ul li {
    margin-bottom: 30px;
    color: var(--cinza); 
    display: flex;   
    gap: 15px;
    align-items: center;
}
section.contato ul li:first-child {

}
section.contato ul li a {
    color: var(--cinza);
}
section.contato ul li strong {
    display: flex;
    font-size: 20px;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 5px;
}
section.contato ul li img {
    max-width: 50px;
    padding: 13px;
    border-radius: 14px;
}
section.contato ul li:nth-child(1) img {
    background: var(--azul);
}
section.contato ul li:nth-child(2) img {
    background: var(--verde);
}
section.contato ul li:nth-child(3) img {
    background: var(--amarelo);
}
section.contato form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}
section.contato form:before {
    content: '';
    position: absolute;
    bottom: -1em;
    left: -4em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.contato form:after {
    content: '';
    position: absolute;
    top: -2em;
    right: -4em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.contato form input, section.contato form textarea {
    background: var(--branco);
    border: 0;
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 12px;
}
section.contato form textarea {
	height: 120px;
}
section.contato form button {
    background: var(--azul);
    color: var(--branco);
    padding: 15px 20px;
    font-size: 20px;
    border-radius: 12px;
    border: 0;
}
section.contato form div {
	display: flex;
	gap: 15px;
}
section.contato iframe {
    width: 100%;
    height: 300px;	
	border-radius: 20px;
}
section.contato .grid:last-child {
	margin-top: 80px;
    align-items: center;	
}



section.solucoes .grid {
    display: block;
}
section.solucoes h3 {
    margin: 30px 0 10px;
}
section.solucoes p {
	font-size: 20px;
}
section.solucoes figure {
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
    position: relative;
    width: 265px;
    height: 265px;
    border-radius: 40px;
    background-size: cover;
    background-position: center;    
}
section.solucoes blockquote {
    padding: 50px;
    background: var(--branco);
    position: relative;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr max-content;
    align-items: center;
    margin: 40px 0;    
    clear: both;
}
section.solucoes blockquote h3 {
    margin: 0 0 5px;
    font-size: 40px;
    font-weight: 400;
}
section.solucoes blockquote:before {
    content: '';
    position: absolute;
    bottom: -4em;
    left: -4em;
    width: 300px;
    height: 300px;
    background: var(--azul);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;
}
section.solucoes blockquote:after {
    content: '';
    position: absolute;
    top: -1em;
    right: -1em;
    width: 300px;
    height: 300px;
    background: var(--verde);
    border-radius: 100%;
    filter: blur(3em);
    z-index: -1;
    opacity: 0.3;    
}
section.solucoes blockquote > a {
    color: var(--branco);
    background-color: var(--azul);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    display: flex;  
    align-items: center;  
    max-height: 60px;
}
section.solucoes blockquote p {
    margin-bottom: 0;
}
section.solucoes blockquote ol {
    display: flex;
    align-items: center;
    gap: 10px;    
    font-size: 18px;
    font-weight: 500;
}
section.solucoes blockquote ol li {
    color: var(--cinza);
}
section.solucoes blockquote ol li img {
    transform: scale(.8);
}

section.solucoes article {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
section.solucoes article img {
    margin: 0 auto;
    display: block;	
}
section.solucoes article h3 {
    font-weight: 500;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
section.solucoes article ul {
	column-count: 3;
}
section.solucoes article ul li {
	margin-bottom: 15px;
}



section.atuacao cite {
	justify-content: center;
}
section.atuacao h2 {
	text-align: center;
}
section.atuacao article {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
}
section.atuacao article h3 {
    font-weight: 500;
    text-align: center;
    font-size: 22px;
    line-height: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}


section.missao .grid {
    grid-template-columns: .3fr 1fr;
    gap: 60px;	
}
section.missao h3 {
    font-weight: 400;
    font-size: 22px;	
	line-height: 32px;
	margin-bottom: 20px;
	color: var(--cinza)
}
section.missao h3 strong {
	color: var(--preto);
}


