/* Início do reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul, ol{
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a{
	text-decoration: none;
}

/* Fim do reset */

:root{
	--primary-red:#DA1E25;
	--secondary-grey:#4F4F4F;
	--text-grey:#7D7D7D;
}

html{
	font-family:'Inter', 'Poppins', 'Montserrat';
}

.topo{
	padding:1rem 0;
}

.topo-contact{
	display:flex;
	align-items: center;
	gap:50px;
}

.topo-contact p{
	display:flex;
	align-items: center;
	gap:8px;
}

.topo p a{
	color:var(--text-grey);
}

.main-menu-nav{
	display:flex;
	align-items: center;
	gap:30px;
}

.line-topo{
	width:100%;
	height: 1px;
	background-color:#c4c4c446;
	margin:0.7rem 0;
}

.main-menu-nav li a{
	color:var(--text-grey);
	transition: .2s ease-in-out;
}

.main-menu-nav li a:hover{
	color:var(--secondary-grey);
}

.banner{
	display:grid;
	grid-template-columns: 55% 45%;
}

.banner h1{
	font-size:4.5rem;
	text-transform: uppercase;
	color:var(--text-grey);
	font-weight: 700;
	line-height: 5rem;
	margin-top:10%;
	width:70%;
	margin-bottom:2rem;
}

.banner h1 span{
	color:var(--primary-red);
}

.banner p{
	color:#1A1A1A;
	line-height: 1.7rem;
	width:70%;
	text-align:justify;
}

.banner-content{
	padding-left:30%;
	background-color: #F3F5FA;
	border-bottom:1rem solid var(--primary-red);
}

.image-banner{
	position:relative;
}

.seta{
	position:absolute;
	bottom:2rem;
	right:20%;
	width:40%;
}

.banner figure img{
	width:85%;
	height: auto;
}

.banner .wp-block-buttons{
	margin-top:4%;
	padding-bottom:15%;
}

.banner .wp-block-buttons a{
	background-color: transparent;
	color:var(--secondary-grey);
	border:1px solid var(--secondary-grey);
	text-transform: uppercase;
	font-weight:700;
	font-size:0.9rem;
	padding:1rem 1.5rem;
	letter-spacing: 0.1rem;
	transition: .2s ease-in-out;
}

.banner .wp-block-buttons a:hover{
	background-color: var(--secondary-grey);
	color:#fff;
}

.banner .wp-block-buttons a:after{
	content:url(../images/icon.svg);
	padding-left: 0.5rem;
}

p strong{
	font-weight: 700;
}

/* Quem somos */

.about{
	padding:5% 0;
	background-image: url(../images/about.png);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center;
	position:relative;
}

.title{
	text-align: center;
}

.about h2{
	padding:0.6rem 1.6rem;
	border:1px solid #7d7d7d57;
	border-radius:2rem;
	display:inline-block;
	text-transform: uppercase;
	font-weight: 700;
}

.about h3{
	font-size:2.5rem;
	font-weight: 700;
	color:var(--text-grey);
	text-transform: uppercase;
	margin:3rem 0 5rem 0;
}

.about h3 span{
	color:var(--primary-red);
}

.about p{
	color:var(--secondary-grey);
	line-height: 1.6rem;
	margin-bottom:1rem;
	text-align:justify;
}

.img-about img{
	width:100%;
	height:auto;
	margin-top:10%;
}

.about .wp-block-buttons{
	margin-top:7%;
	padding-bottom:5%;
}

.about .wp-block-buttons a{
	background-color: var(--primary-red);
	color:#fff;
	border:1px solid var(--primary-red);
	text-transform: uppercase;
	font-weight:700;
	font-size:0.9rem;
	padding:1rem 1.5rem;
	letter-spacing: 0.1rem;
	transition: .2s ease-in-out;
}

.about .wp-block-buttons a:after{
	content:url(../images/seta-white.svg);
	padding-left: 0.5rem;
}

.about .conteudo{
	display: flex;
	align-items:center;
}

.clientes-slide{
	margin-top:5%;
}

.clientes-slide img{
	width:90%;
	height:auto;
	object-fit: cover;
}

/* Parceiros */

.parceiros{
	padding:5% 0;
	background-image: linear-gradient(to bottom, transparent 0%, #F3F5FA 100%);
}

.parceiros h2{
	font-size:2.5rem;
	text-transform: uppercase;
	font-weight: 700;
	color:var(--text-grey);
	text-align: center;
	margin-bottom:1rem;
}

.description{
	text-align: center;
	color:var(--secondary-grey);
	line-height: 1.6rem;
	margin-bottom:6%;
}

.box-parceiros{
	height:40dvh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding:1rem 1.5rem;
	position:relative;
	cursor:pointer;
	transition:.2s ease-in-out;
	position:relative;
	z-index: 200;
}

.capa{	
	position:absolute;
	background-image: linear-gradient(to bottom, transparent 0%, var(--primary-red) 100%);	
	top:0;
	left:0;
	width:100%;
	height: 100%;
	z-index: -1;
}

.box-parceiros .subtitle{
	color:#fff;
	font-size:0.7rem;
	font-weight: 600;
	letter-spacing: 0.06rem;
	margin-bottom:0.5rem;
	text-transform: uppercase;
	margin-top:100%;
	transition:.2s ease-in-out;
}

.box-parceiros h3{
	color:#fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size:1.3rem;
	transition:.2s ease-in-out;
}

.box-parceiros .more{
	color:#fff;
	font-size:0.8rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
	margin-bottom:0.5rem;
	text-transform: uppercase;
	text-align: center;
	margin-top:70%;
	display:none;
}

.box-parceiros .more:after{
	content: "\ea24";
	font-family:'tabler-icons';
	font-weight:bold;
}

.box-parceiros:hover{
	background-color: var(--primary-red);
	text-align: center;
}

.box-parceiros:hover .parceiro-title{
	margin-top:10%;	
}

.box-parceiros:hover .more{
	display:block;
}

/* Valores */

.valores{
	padding:5% 0;
}

.valores h2{
	font-size:5rem;
	color:var(--text-grey);
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:3rem;
}

.valores h2 span{
	color:var(--primary-red);
}

.valores h3{
	font-size:1.3rem;
	text-transform: uppercase;
	font-weight: 800;
	margin:1rem 0;
}

.valores p{
	line-height: 1.7rem;
	font-size:0.92rem;
	text-align:justify;
}

.valores img{	
	display: block;
	margin-right:auto;
	margin-left:auto;
}

.main-logo{
	width:100%;
	margin-top:25%;
	height: auto;
}

.icones{
	width:50%;
	margin-top:2rem;
}

.valores ul{
	margin-left:1rem;
}

.valores ul li{
	line-height: 1.7rem;
	font-size:0.92rem;
	list-style-type: disc;
}

/* Serviços */

.servicos{
	padding:5% 0;
}

.servicos h2{
	font-size:5rem;
	color:var(--secondary-grey);
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:3rem;
}

.servicos h2 span{
	color:var(--primary-red);
}

.title-box{
	font-size:1rem;
	text-transform: uppercase;
	font-weight: 800;
	display:flex;
	justify-content: space-between;
	align-items: center;
	padding:1rem 1.4rem;
	border:1px solid rgba(26, 26, 26, 0.3);
	border-radius:5px;
	margin:1rem 0 0 0;
	cursor:pointer;
	transition:.2s ease-in-out;
}

.title-box:hover{
	border:1px solid var(--primary-red);
}

.title-box svg{
	width:25px;
}

.content-box{
	max-height: 0;
	overflow: hidden;
	transition: max-height .2s ease-in-out;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.content-box p{
	margin-bottom:0.7rem;
	line-height: 1.7rem;
	font-size:0.92rem;
	text-align:justify;
}

.content-box li{
	margin-bottom:0.7rem;
	line-height: 1.7rem;
	font-size:0.92rem;
	list-style-type: disc;
	margin-left:1rem;
}

.active{
	background-color: var(--primary-red);
	color:#fff;
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
	border:1px solid var(--primary-red);
}

.active .path{
	fill:var(--secondary-grey);
}

.active svg{
	transform: rotate(180deg);
}

.active-content{
	color:#fff;
	padding:1rem 1rem;
}

/* Segmentos */

.segmentos{
	margin:5% 0;
}

.segmentos h2{
	font-size:3rem;
	color:var(--secondary-grey);
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:7%;
	text-align: center;
}

.segmentos h3{
	font-size:2rem;
	color:var(--secondary-grey);
	font-weight: 800;
	margin-bottom:2rem;
}

.segmentos .row{
	margin-bottom:2rem;
}

.segmentos p{
	margin-bottom:0.7rem;
	line-height: 1.7rem;
	font-size:0.92rem;
}

.segmentos ul{
	margin-left:1.1rem;
}

.segmentos ul li{
	margin-bottom:0.7rem;
	line-height: 1rem;
	font-size:0.85rem;
	list-style: disc;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
}

.segmentos .box-info{
	padding:3rem 2rem;
	border:1px solid rgba(26, 26, 26, 0.3);
}

.segmentos .box-info img{
	width:50px;
	margin-top:1rem;
}

.img-segmento{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/* Newsletter */

.newsletter{
	margin:5% 0 -3% 0;
	position:relative;
	z-index: 600;
}

.news{
	background-color: var(--primary-red);
	padding:4% 0;
	width:100%;
}

.newsletter h2{
	font-size:2rem;
	color:#fff;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:3%;
	text-align: center;
}

#news{
	text-align: center;
}

.news input[type=text]{
	width:40%;
	height:3rem;
	border-radius: 2rem;
	background-color:#fff;
	border:none;
}

.news button{
	width:20%;
	height:3rem;
	background-color: transparent;
	border-radius: 2rem;
	border:1px solid #fff;
	text-transform: uppercase;
	font-weight:600;
	letter-spacing: 0.1rem;
	color:#fff;
	cursor:pointer;
	transition:.2s ease-in-out;
}

.news button:hover{
	background-color: #fff;
	color:var(--primary-red);
}

.news input[type=checkbox]{
	position:absolute;
	opacity: 0;
	cursor:pointer;
	height:0;
	width: 0;
}

.news label{
	color:#fff;
	font-weight:300;
	margin-top:2rem;
	cursor:pointer;
	position: relative;
	letter-spacing: 0.1rem;
}

.news ::placeholder{
	padding-left:1rem;
	font-family:'Inter';
	font-weight: 600;
	color:#000;
	letter-spacing: 0.05rem;
}

.checkmark{
	position:absolute;
	top:0;
	left:-25px;
	height:20px;
	width:20px;
	background-color: transparent;
	border:1px solid #fff;
	border-radius:5px;
	transition:.2s ease-in-out;
}

.news label:hover .checkmark{
	background-color: #ffffff80;
}

#aceite:checked ~ .checkmark{
	background-color: #ffffff;
}

/* Rodapé */

.rodape{
	padding:5% 0 2% 0;
	background-color: var(--text-grey);
}

.linha{
	display:flex;
	justify-content: space-between;
}

.rodape p{
	color: #fff;
	font-weight:300;
	margin:1rem 0;
}

.redes{
	display: flex;
	gap: 10px;
}

.rodape h3{
	font-size:1.05rem;
	color:#fff;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:2rem;
	letter-spacing: 0.1rem;
}

.rodape h4{
	font-size:1.05rem;
	margin-top:2rem;
	color:#fff;
	text-transform: uppercase;
	font-weight: 800;
	margin-bottom:1.5rem;
	letter-spacing: 0.1rem;
}

.rodape li{
	margin:1rem 0;
}

.rodape li a{
	color:#fff;
	font-weight:200;
}

.line{
	width:100%;
	height:1px;
	margin:4rem 0 0.5rem 0;
	background-color: #ffffff71;
}

/* Páginas */

.head-bg{
	background-image: linear-gradient(to right, var(--primary-red) 0%, #fff 100%);
	padding:5% 0;
}

.page-title{
	font-size:2rem;
	color:#fff;
	text-transform: uppercase;
	font-weight: 800;
}

.pagina{
	margin-top:5%;
	margin-bottom:5%;
}

.pagina p{
	line-height: 1.7rem;
	font-size:0.92rem;
	color:var(--secondary-grey);
	margin:1rem 0;
}

.pagina h3{
	font-size:2.5rem;
	font-weight: 700;
	color:var(--text-grey);
	text-transform: uppercase;
	margin:1rem 0;
}

.pagina .box-parceiros h3{
	color:#fff;
	text-transform: uppercase;
	font-weight: 700;
	font-size:1.3rem;
	transition:.2s ease-in-out;
}

.pagina .box-parceiros{
	margin-bottom:2rem;
}

.pagina img{
	width:100%;
	height:auto;
}

.pagina h3 span{
	color:var(--primary-red);
}

.pagina .wp-block-buttons{
	margin-top:7%;
	padding-bottom:5%;
}

.pagina .wp-block-buttons a{
	background-color: var(--primary-red);
	color:#fff;
	border:1px solid var(--primary-red);
	text-transform: uppercase;
	font-weight:700;
	font-size:0.9rem;
	padding:1rem 1.5rem;
	letter-spacing: 0.1rem;
	transition: .2s ease-in-out;
}

.pagina .wp-block-buttons a:after{
	content:url(../images/seta-white.svg);
	padding-left: 0.5rem;
}

.pagina input[type=text]{
	width:100%;
	height:3rem;
	border-radius: 2rem;
	background-color:#fff;
	border:1px solid var(--text-grey);
	border-radius:5px;
	margin-bottom:1rem;
}

.pagina select{
	width:100%;
	height:3rem;
	border-radius: 2rem;
	background-color:#fff;
	border:1px solid var(--text-grey);
	border-radius:5px;
	margin-bottom:1rem;
	font-family:'Inter';
	color:var(--primary-red);
}

.pagina textarea{
	width:100%;
	height:8rem;
	border-radius: 2rem;
	background-color:#fff;
	border:1px solid var(--text-grey);
	border-radius:5px;
	margin-bottom:1rem;
	margin-top:0.4rem;
}

.pagina ::placeholder{
	font-family:'Inter';
	color:#7D7D7D;
	padding-left:1rem;
}

.pagina label{
	color:var(--secondary-grey);
	font-weight: 500;
	font-size:1.02rem;
	text-transform: uppercase;
}

.contact-title h2{
	font-size:2rem;
	text-transform: uppercase;
	color:var(--secondary-grey);
	font-weight:700;
	margin-bottom:2rem;
}

.contact-title h2 span{
	color:var(--primary-red);
}

.pagina button{
	background-color: var(--primary-red);
	color:#fff;
	border:1px solid var(--primary-red);
	text-transform: uppercase;
	font-weight:700;
	font-size:0.9rem;
	padding:1rem 1.5rem;
	letter-spacing: 0.1rem;
	cursor:pointer;
	border-radius:4rem;
	transition: .2s ease-in-out;
}

.pagina button:after{
	content:url(../images/seta-white.svg);
	padding-left: 0.5rem;
}

input[type=file]{
	display:none;
}

.files{
	margin:2rem 0;
}

.files label{
	width:100%;
	background-color: var(--primary-red);
	padding:1rem 1rem;
	color:#fff;
	text-transform: uppercase;
	font-weight:500;
	letter-spacing: 0.2rem;
	border-radius:5px;
	
}

.desenvolvedor {
	display:flex;
	align-items: center;
	gap:10px;
}

.desenvolvedor img{
	width:120px;
	margin-top:10px;
}

.pagina ul{
	margin-left:1rem;
}

.pagina ul li{
	line-height: 1.7rem;
	font-size:0.92rem;
	list-style-type: disc;
}

.msg{
    padding:0.8rem 0.8rem;
    border-radius:10px;
    color:#fff;
    margin-top:0.5rem;
}

.alert-danger{
    background-color:red;
}

.alert-success{
    background-color: green;
}

.whatsapp-contact-mobile{
    /* width:70px; */
    border-radius:50%;
    padding:0.9rem 1rem;
    background-color: #52a517;
    position:fixed;
    right: 2rem;
    bottom:3rem;
    z-index:900;
}

.whatsapp-contact-mobile i{
    color:#fff;
    font-size:2.5rem;
}