@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

*{margin: 0; padding: 0; box-sizing: border-box;}
html {scroll-behavior: smooth;}
body {font-family: 'Montserrat', sans-serif; background: #fff;  font-size: 24px; overflow-x: hidden; position: unset!important; color: var(--preto); font-weight: 400;}
p {line-height: 36px; margin-bottom: 25px; color: var(--cinza)}
a,button, input, textarea {-webkit-transition: .3s;-o-transition: .3s;transition: .3s; outline: 0; color: inherit;}
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%;}
em {font-style: normal;}
strong {font-weight: inherit;}
section{padding: 60px 0;}
.grid {max-width: 1260px; width: 100%; margin: 0 auto; padding: 0 30px; display: grid; grid-gap: 10px; position: relative; grid-template-columns: minmax(0, 1fr);}


:root {
    --laranja: #2E86DE;
    --branco: #fff;
    --preto: #262626;
    --cinza: #666666;
    --degrade: linear-gradient(90deg, rgba(14,164,255,1) 0%, rgba(0,119,255,1) 50%);
    --transparente: rgb(255 255 255 / 20%);
}


address {
    background: var(--degrade);
    padding: 8px 0;
	margin-bottom: 30px;
}
address .grid {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}
address ul {
    display: flex;
    gap: 20px;    
}
address ul li a {
    display: flex;
}
address p {
    font-style: normal;
    font-size: 20px;
    color: var(--branco);
    margin: 0;
    font-weight: 500;
    display: inline-flex;    
    gap: 6px;
}
address p a {
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
address p a img {
    background: var(--transparente);
    padding: 6px;
    display: inline-flex;
    border-radius: 50px;
    transition: .3s;    
}
address p a:last-child:hover img {
    transform: scale(1.2);
} 


header {
	transition: .3s;
    padding: 10px 0;	
}
header.fixo {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
	padding: 0;
}
header nav {
    position: relative;    
    z-index: 1;    
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px -15px rgb(0 0 0 / 15%);
    border-radius: 100px;
    padding: 20px 30px;
    border: 1px solid #eee;
    top: -50px;
    background: var(--branco);   
    opacity: 0;
    transition: .3s; 
}
header.fixo nav {
	padding: 10px 30px;	
	border-radius: 0 0 50px 50px;	
}
header nav.aparecer {
    opacity: 1;
    top: 0;
}
header nav a {
    display: flex;
}
header nav ul {
    display: flex;
    gap: 25px;
}
header nav ul li {
    position: relative;
}
header nav ul li a {
    font-weight: 500;
    font-size: 22px;
}
header nav ul li a:hover, header nav ul li.ativo > a {
    color: var(--laranja);
}
header nav > a[target="_blank"] {
    background: var(--degrade);
    color: var(--branco);
    padding: 12px 13px 12px 25px;
    border-radius: 50px;
    font-weight: 700;   
    display: inline-flex; 
    gap: 12px;
    align-items: center;
}
header nav > a[target="_blank"] img {
    background: var(--transparente);
    padding: 6px;
    display: inline-flex;
    border-radius: 50px;  
    transition: .3s;  
}
header nav > a[target="_blank"]:hover img {
    transform: scale(1.4);
} 
header nav > a:last-child:hover {
    transform: scale(1.1);
} 
header nav ol {
    position: absolute;
    box-shadow: 0 20px 40px -15px rgb(0 0 0 / 15%);
    border-radius: 20px;
    padding: 20px 30px;
    border: 1px solid #eee;
    background: var(--branco);
    top: 25px;
    left: -30px;
    line-height: 40px;
    width: max-content;
    opacity: 0;   
    visibility: hidden;
}
header nav ol.abrir {
    top: 45px;    
    opacity: 1;
    visibility: visible;    
}
header nav ol li {
    display: flex;
}
header nav ol li a {
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}
header nav ol li a:before {
    content: '';
    display: inline-flex;
    width: 10px;
    height: 10px;
    background: var(--degrade);
    border-radius: 50px;
}
header nav #menu {
    width: 64px;
    height: 48px;
    background-image: url('../img/menu.png');
    background-size: 52px;
    background-position: center;
    background-repeat: no-repeat;
    display: none;    
}


section.banner .grid {
    grid-template-columns: 700px 1fr;
    align-items: start;
}
section.banner h1 {
    font-size: 80px;
    font-weight: 400;
    line-height: 72px;   
    margin-bottom: 50px; 
    margin-top: 25px;
}
section.banner h1 span {
    font-weight: 700;
    height: 90px;
    display: flex;
    align-items: center;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}

section.banner figure {
    position: relative;
}
section.banner figure.aparecer figcaption:nth-child(1) {
    transition-delay: .2s;
    left: -150px;    
}
section.banner figure.aparecer figcaption:nth-child(2) {
    transition-delay: .6s;
    left: -120px;     
}
section.banner figure.aparecer figcaption:nth-child(3) {
    transition-delay: 1s;
    left: -90px;    
}
section.banner figure:before {
    content: '';
    position: absolute;
    background: var(--degrade);
    width: 500px;
    height: 500px;
    bottom: 0;
    right: 0;
    border-radius: 100%;
    border: 20px solid #bef3c2;
}
section.banner figure.aparecer img {
    bottom: 13px;
    opacity: 1;
}
section.banner figure img {
    position: relative;
    bottom: -30px;
    right: -22px;    
    transition: 1s;
}
section.banner figure figcaption {
    position: absolute;
    left: -95px;
    background: var(--degrade);
    color: var(--branco);
    font-weight: 500;
    font-size: 20px;
    padding: 12px 60px 12px 20px;
    border-radius: 50px;
    transition: .6s;
}
section.banner figure figcaption:nth-child(1) {
    bottom: 310px;
    left: 110px;
}
section.banner figure figcaption:nth-child(2) {
    bottom: 250px;
    left: 50px;  
}
section.banner figure figcaption:nth-child(3) {
    bottom: 190px;  
    left: 50px;
}
section.banner blockquote {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 20px;
    align-items: center;    
    margin-bottom: 38px;
}
section.banner blockquote p {
    margin-bottom: 0;
    color: var(--cinza);
    font-size: 20px;
    line-height: 24px;
    max-width: 310px;
}
section.banner blockquote p strong {
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 5px;
    display: block;
    min-height: 29px;
}
section.banner blockquote p strong b {
/*    width: 53px;
    display: inline-flex;*/
}
section.banner blockquote ul {
    display: flex;
}
section.banner blockquote ul li:nth-child(2) {
    margin: 0 -15px;
}
section.banner blockquote ul li img {
    border: 3px solid var(--branco);
    border-radius: 50px;
}
section.banner a {
    background: var(--degrade);
    color: var(--branco);
    padding: 12px 13px 12px 25px;
    border-radius: 50px;
    font-weight: 700;   
    display: inline-flex; 
    gap: 12px;
    align-items: center;
}
section.banner a:hover img {
    transform: scale(1.4);
} 
section.banner a:hover {
    transform: scale(1.1);
} 
section.banner a img {
    background: var(--transparente);
    padding: 6px;
    display: inline-flex;
    border-radius: 50px;  
    transition: .3s; 
}
section.banner div > p {
    margin-bottom: 45px;
    max-width: 550px;
    letter-spacing: -0.8px;
    color: var(--cinza);
}


section.sobre {
    padding-bottom: 0;
}
section.sobre .grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
section.sobre h2 {
    font-size: 64px;
    line-height: 62px;
    font-weight: 400;
    margin-bottom: 20px;
}
section.sobre h2 strong {
    font-weight: 700;
    text-transform: uppercase;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
section.sobre p {
    color: var(--cinza);
    margin-bottom: 30px;
}
section.sobre a {
    background: var(--degrade);
    color: var(--branco);
    padding: 12px 13px 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    gap: 12px;
    align-items: center;
}
section.sobre a:hover img {
    transform: scale(1.4);
} 
section.sobre a:hover {
    transform: scale(1.1);
} 
section.sobre a img {
    background: var(--transparente);
    padding: 6px;
    display: inline-flex;
    border-radius: 50px;
    transition: .3s;
}
section.sobre figure {
    position: relative;
    /*background-image: url('../img/iso.png');*/
    background-repeat: no-repeat;
    background-size: 350px;    
    display: flex;
}
section.sobre figure:before, section.sobre figure:after {
    content: '';
    position: absolute;
    height: 90px;
    width: 500px;
    transform: rotate(-30deg);
    background: var(--degrade);
    border-radius: 100px;
    top: 120px;
    left: -30px;
	z-index: -1;
}
section.sobre figure:after {
    top: 325px;
    left: -50px;
}
section.sobre figure img {

}



section.chamada {
    padding-top: 0;
}
section.chamada .grid div {
    position: relative;
    background: var(--degrade);
    padding: 35px 50px;
    display: flex;
    gap: 50px;
    border-radius: 50px;
    border: 20px solid #bef3c2;
}
section.chamada h2 {
    font-weight: 400;
    color: var(--branco);
    font-size: 48px;
}
section.chamada h2 strong {
    font-weight: 800;
    display: flex;
    text-transform: uppercase;
}




section.servicos {
    /*background-image: url('../img/servicos.png');*/
    background-repeat: no-repeat;
    background-position: 100% 280px;
    padding-bottom: 250px;
}
section.servicos .grid:first-child p {
    text-align: center;
    margin-bottom: 60px;
}
section.servicos h2 {
    text-align: center;
    font-size: 64px;
    font-weight: 400;
}
section.servicos h2 strong {
    font-weight: 700;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;         
}
section.servicos h3 {
    font-size: 32px;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;     
}
section.servicos p {
    color: var(--cinza);
}
section.servicos .grid:last-child {
    grid-template-columns: .57fr;    
    gap: 30px;
}
section.servicos article {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 25px;    
    align-items: center;    
}
section.servicos article figure {
    border: 15px solid #bef3c2;
    border-radius: 100%;
    background: var(--degrade);
    padding: 10px;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.servicos article p {
    margin-bottom: 0;
}


section.contato {
    position: relative;
    background: var(--degrade);
    border-top: 15px solid #bef3c2;
    border-bottom: 15px solid #bef3c2;     
}
section.contato:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    /*background-image: url(../img/iso.png);*/
    width: 890px;
    height: 890px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: -10em -5em;
}
section.contato .grid {
    grid-template-columns: .5fr;
    justify-content: end;    
    gap: 0;
}
section.contato figure {
    position: absolute;
    bottom: -60px;
    display: flex;    
}
section.contato h2 {
    font-size: 64px;
    font-weight: 400;
    color: var(--branco);
}
section.contato h2 strong {
    font-weight: 700;
}
section.contato p {
    color: var(--branco);
}
section.contato form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.contato form input, section.contato form textarea {
    border-radius: 12px;
    background: none;
    padding: 12px 20px;
    border: 1px solid var(--branco);
    font-size: 20px;
    width: 100%;
    color: var(--branco);
}
section.contato form div {
    display: flex;
    gap: 17px;    
}
section.contato form ::placeholder {
    color: var(--branco);
    opacity: .75;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
section.contato form button {
    background: var(--branco);
    border: 0;
    border-radius: 12px;
    font-size: 24px;
    padding: 10.5px 20px;
    font-weight: 700;
    color: var(--laranja);    
}
section.contato a {
    font-size: 64px;
    font-weight: 700;
    color: var(--branco);
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;    
}


section.clientes .grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    align-items: center;    
}
section.clientes h2 {
    font-size: 64px;
    line-height: 68px;
    font-weight: 400;
    margin-bottom: 10px;
	text-align: center;
}
section.clientes h2 strong {
    font-weight: 700;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;         
}
section.clientes p {
    color: var(--cinza);  
	text-align: center;
}
section.clientes article {
    position: relative;
    background: var(--degrade);
    border-radius: 40px;
    padding: 30px;  
    box-shadow: 0 20px 40px -15px rgb(0 0 0 / 50%);    
}
section.clientes article:before {
    content: '';
    position: absolute;
    background: var(--degrade);
    border-radius: 40px;
    border: 15px solid #bef3c2;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    z-index: -1;
    transform: rotate(10deg); 
}
section.clientes article p {
    color: var(--branco);
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;    
}
section.clientes article strong {
    color: var(--branco);
    font-weight: 700;
    font-size: 20px;
}
section.clientes article figure {
    height: 230px;
    width: 100%;
    border-radius: 25px;
    margin-bottom: 30px;
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--branco);   
}
section.clientes article i {
    display: flex;
    height: 23px;
    width: 135px;
    background-image: url('../img/estrela.png');
    margin-bottom: 20px;
}
section.clientes .rotativo .img {
    width: 100%;
    height: 150px;
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;    
}



section.blog .grid {
    grid-template-columns: .6fr 1fr;
}
section.blog h2 {
    font-size: 64px;
    line-height: 68px;
    font-weight: 400;
    margin-bottom: 10px;
}
section.blog h2 strong {
    font-weight: 700;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;         
}
section.blog p {
    color: var(--cinza);    
}
section.blog .grid > div:first-child a {
    background: var(--degrade);
    color: var(--branco);
    padding: 12px 13px 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
}
section.blog .grid > div:first-child a:hover img {
    transform: scale(1.4);
} 
section.blog .grid > div:first-child a:hover {
    transform: scale(1.1);
} 
section.blog .grid > div:first-child a img {
    background: var(--transparente);
    padding: 6px;
    display: inline-flex;
    border-radius: 50px;
    transition: .3s;
}
section.blog .grid > div:last-child {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    transition: .3s;
}
section.blog .grid > div.primeiro {
    grid-template-columns: 1fr .25fr .25fr;
}
section.blog .grid > div.segundo {
    grid-template-columns: .25fr 1fr .25fr;    
}
section.blog .grid > div.terceiro {
    grid-template-columns: .25fr .25fr 1fr;    
}
section.blog .grid > div.primeiro article:nth-child(1), 
section.blog .grid > div.segundo article:nth-child(2), 
section.blog .grid > div.terceiro article:nth-child(3) {
    filter: grayscale(0);
    opacity: 1;
}
section.blog .grid > div.primeiro article:nth-child(1) h3, 
section.blog .grid > div.segundo article:nth-child(2) h3, 
section.blog .grid > div.terceiro article:nth-child(3) h3 {
    visibility: visible;
    opacity: 1;
    transition-delay: .3s;
}

section.blog article {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    filter: grayscale(.75); 
    transition: .3s;   
    opacity: .75;
}
section.blog article .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-size: 500px;
    background-position: center;
    height: 100%;
}
section.blog article h3 {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    color: var(--branco);
    font-weight: 500;
    font-size: 20px;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    transition-delay: .0s;
}
section.blog article .img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(14,164,255,1) 0%, rgba(255,136,0,0) 75%);
}
section.blog article a {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;    
}


footer .bg {
    position: relative;
    padding: 60px 60px 0;
    position: relative;
    background: var(--degrade);
    border: 15px solid #bef3c2;
    border-bottom: 0;
    border-radius: 100px 100px 0 0;
    overflow: hidden;
}
footer .bg:before {
    content: '';
    /*background-image: url(../img/iso.png);*/
    height: 828px;
    width: 890px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -145px;
    background-size: 890px;    
}
footer .subgrid {
    display: grid;
    gap: 80px;
    grid-template-columns: 1fr max-content .8fr;
    position: relative;
}
footer h6 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--branco);
}
footer p {
    font-size: 18px;
    color: var(--branco);
    line-height: 30px;
    font-weight: 300;
}
footer .subgrid div:nth-child(1) ul {
    display: flex;
    gap: 20px;
}
footer .subgrid div:nth-child(2) ul {
    line-height: 35px;
}
footer .subgrid div:nth-child(2) ul li a, footer .subgrid div:nth-child(3) ul li {
    font-size: 20px;
    color: var(--branco);
    font-weight: 300;
}
footer .subgrid div:nth-child(3) li {
    display: flex;
    align-items: center;
    gap: 20px;
    line-height: 30px;
} 
footer .subgrid div:nth-child(3) ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
footer .creditos {
    margin-top: 60px;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    color: var(--branco);
    border-top: 1px solid var(--branco);   
    align-items: center;     
    position: relative;
}
footer .creditos p {
    margin-bottom: 0;
}
footer .creditos p span {
    display: flex;
}
footer .creditos a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}



a.whatsapp {
    position: fixed;
    top: 40%;
    right: 30px;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

a.whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

a.whatsapp:hover {
    transform: scale(1.1);
}


section.conteudo h2 {
    font-size: 64px;
    font-weight: 400;    
    margin-bottom: 20px;
}
section.conteudo h2 strong {
    font-weight: 700;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
section.conteudo.empresa .grid {
    display: block;
}
section.conteudo.empresa p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 12px;    
}
section.conteudo.empresa img {
    float: left;
    margin-right: 30px;
    border-radius: 20px;    
}
section.conteudo.empresa ul {
    clear: both;
    margin-top: 60px;
}
section.conteudo.empresa ul li {

}
section.conteudo.empresa ul li strong {
    font-weight: 700;
    font-size: 32px;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    line-height: 42px;
}
section.conteudo.empresa ul li {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 36px;
    color: var(--cinza);
}
section.conteudo.empresa .grid div {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 40px;    
}
section.conteudo.empresa .grid div h3 {
    font-weight: 700;
    font-size: 32px;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    line-height: 42px;    
}


section.conteudo.servico h2 {
    text-align: center;
    margin-bottom: 0;
}
section.conteudo.servico .grid:first-child {
    gap: 0;
}
section.conteudo.servico .grid:first-child p {
    text-align: center;
    margin-bottom: 60px;
}
section.conteudo.servico h3 {
    font-weight: 700;
    font-size: 32px;
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;    
}
section.conteudo.servico article {
    display: grid;
    gap: 50px;
    grid-template-columns: max-content 1fr;
    margin-bottom: 30px;
}
section.conteudo.servico article figure {
    height: 200px;
    width: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}
section.conteudo.servico article p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 12px;
}



section.conteudo.blogs .grid:first-child {
    gap: 0;
}
section.conteudo.blogs h2 {
    text-align: center;
    margin-bottom: 0;
}
section.conteudo.blogs p {
    text-align: center;
    margin-bottom: 60px;    
}
section.conteudo.blogs .posts {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
}
section.conteudo.blogs .posts article a:hover figure:before {
    opacity: 1;
}
section.conteudo.blogs .posts article figure {
    position: relative;
    height: 200px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
}
section.conteudo.blogs .posts article figure:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(14,164,255,1) 0%, rgba(255,136,0,0) 75%);  
    opacity: 0;  
    transition: .3s;
}

section.conteudo.blogs .posts article time {
    font-size: 20px;
    margin-bottom: 10px;
    display: flex;
}
section.conteudo.blogs .posts article h3 {
    font-size: 24px;
    line-height: 32px;
}



section.conteudo.fale h2 {
    text-align: center;
    margin-bottom: 55px;    
}
section.conteudo.fale .grid:nth-child(2) {
    grid-template-columns: 1fr .8fr;
    gap: 80px;
}
section.conteudo.fale form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.conteudo.fale form input, section.conteudo.fale form textarea, section.conteudo.fale form select {
    border-radius: 12px;
    background: none;
    padding: 12px 20px;
    border: 1px solid var(--laranja);
    font-size: 20px;
    width: 100%;
}
section.conteudo.fale form select {
	color: var(--preto);
}
section.conteudo.fale form div.tres {
    display: flex;
    gap: 17px;    
}
section.conteudo.fale form ::placeholder {
    color: var(--preto);
    opacity: .75;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}
section.conteudo.fale form button {
    background: var(--degrade);
    border: 0;
    border-radius: 12px;
    font-size: 24px;
    padding: 10.5px 20px;
    font-weight: 700;
    color: var(--branco);    
}
section.conteudo.fale ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
section.conteudo.fale ul li {
    line-height: 32px;
    font-size: 20px;
}
section.conteudo.fale ul li strong {
    font-weight: 700;
    display: flex;
    margin-bottom: 6px;
}
section.conteudo.fale p {
    margin-bottom: 40px;
}
section.conteudo.fale iframe.mapa {
    margin-top: 60px;
    width: 100%;
    height: 400px;
    border-radius: 20px;
}
section.conteudo.fale form input, section.conteudo.fale form textarea {
	color: var(--preto)!important;
}

section.single-blog figure {
    max-width: 800px;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin: 0 auto 20px;    
}
section.single-blog time {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}
section.single-blog h2 {
    background: var(--degrade);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}
section.single-blog p {

}


.screen-reader-text {
    display: none;
}