:root {
	--main-fontsize: 16px;
}

@media (max-width: 1600px) {
	:root {
		--main-fontsize: 14px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px !important;
	}
}

/* CSS RESET DEFAULT */

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, b, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
  	overflow-x: hidden;
}

ol, ul {
	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;
}

/* Geral */

div, h1, h2, h3, h4, h5, h6,
p, span, li, button, a, input, label, select, td, th, strong {
  font-family: 'Poppins', sans-serif !important;
}

.container-fluid {
  padding: 0;
}

.mobileonly {
  display: none;
}

a:hover {
	text-decoration: unset;
}

p {
	line-height: 1.9;
    margin-bottom: 1.5rem;
	text-align: justify;
	letter-spacing: 0.2px;
	font-size: 14px;
	color: #000;
}

p span {
	font-weight: 600;
}

img {
	max-width: 100%;
}

/*SCROLL */
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: #fff;
}
*::-webkit-scrollbar-thumb {
  background-color: #000;
}

/* Header */

.wrapper-header {
	display: flex; 
	align-items: center;
	justify-content: space-between;
	padding-top: 18px;
	padding-bottom: 18px;
}

.menu-header ul {
	display: flex;
	gap: 40px;
	align-items: center;
}

.menu-header ul li a {
	color: #252525; 
	font-size: 14px;
	transition: all .3s;
}

.menu-header ul li a:hover {
	color: #D0161D;
}

.home .menu-header .home {
	font-weight: 600;
}


.page-template-quem-somos .menu-header .quem-somos {
	font-weight: 600;
}

.page-template-servicos .menu-header .servicos {
	font-weight: 600;
}

.page-template-contato .menu-header .contato {
	font-weight: 600;
}

.page-template-trabalhe-conosco .menu-header .trabalhe-conosco {
	font-weight: 600;
}

.cta-vermelha {
	background-color: #D0161D;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	padding: 10px 17px;
	border-radius: 5px;
}

.cta-vermelha:hover {
	color: #fff;
}

/* Hero */

#hero {
	height: 530px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2025/11/banner-covizzi.png');
	background-size: cover;
	background-position: right;
}

.wrapper-text-hero {
	max-width: 460px;
}

.wrapper-text-hero h1 {
	color: #fff; 
	font-size: 36px;
	font-weight: 700;
	line-height: 43px;
	margin-bottom: 26px;
	margin-top: 20px;
}

.wrapper-text-hero h1 span {
	color: #E52020;
}

.wrapper-text-hero h2 {
	color: #fff; 
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 0;
	line-height: 22px;
}

/* Efeito de aparição suave no hero */
#hero {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 1.2s ease-out forwards;
}

/* Animação */
@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Para dar um toque a mais: texto com leve delay */
#hero .wrapper-text-hero h1,
#hero .wrapper-text-hero h2 {
  opacity: 0;
  transform: translateY(20px);
  animation: textFadeIn 1s ease-out forwards;
}

#hero .wrapper-text-hero h1 {
  animation-delay: 0.4s;
}

#hero .wrapper-text-hero h2 {
  animation-delay: 0.8s;
}

@keyframes textFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* SoluÃ§Ãµes */

#solucoes {
	background-color: #ECECEC;
	padding-top: 78px;
	padding-bottom: 100px;
}

.title-solucoes h3 {
	color: #ED1C24;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 32px;
	line-height: 36px;
	text-align: center;
}

.title-solucoes h3 span {
	color: #000; 
}

.title-solucoes p {
	max-width: 730px;
	margin: auto;
	text-align: center;
	margin-bottom: 48px;
}

.servicos-linha {
	display: flex; 
	justify-content: space-around;
}

.card-servico {
	display: flex;
    align-items: center;
    height: 98px;
    background-color: #ED1C24;
    border-radius: 5px;
	box-shadow: 0px 0px 9px #00000026;
	transition: transform 0.3s;
}

.card-servico:hover {
    transform: translateY(-10px);
}

.icon-card-servico {
	width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.title-card-servico {
	padding: 28px;
    width: 231px;
}

.servicos-linha.linha1 {
	margin-bottom: 48px;
}

.title-card-servico h4 {
	font-size: 18px;
	font-weight: 700;
	line-height: 26px;
}

/* ConfianÃ§a */

#confianca {
	height: 487px;
	display: flex;
	align-items: center;
	background-image: url('../imgs/bg-confianca.png');
	background-size: cover;
	background-position: center;	
}

.text-confianca {
	max-width: 440px;
}

.text-confianca h3 {
	color: #fff;
	font-size: 28px;
	line-height: 36px;
	font-weight: 700;
	margin-bottom: 32px;
}

.text-confianca p {
	color: #fff;
}

.text-confianca p:first-child {
	margin-bottom: 32px;
}

.text-confianca p:last-child {
	margin-bottom: 0;
}

.text-confianca p span {
	font-weight: 700;
}

/* Diferenciais */

#diferenciais {
	background-color: #ECECEC;
	padding-top: 82px;
	padding-bottom: 82px;
}

.title-diferenciais h3 {
	text-align: center;
	color: #ED1C24;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 58px;
}

.title-diferenciais h3 span {
	color: #000;
}

.diferenciais-covizzi {
	display: flex; 
	align-items: center;
	justify-content: center;
	gap: 130px;
}

.title-card-diferencial h4 {
	    font-size: 19px;
	    line-height: 26px;
	    color: #ED1C24;
	    font-weight: 600;
	    text-align: center;
	    max-width: 180px;
	    margin: auto;
}

.icon-card-diferencial {
	height: 126px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contato */

#contato {
	background-color: #BE1A1A;
	padding-top: 82px;
	padding-bottom: 82px;
}

.img-contato {
	position: relative;
}

.img-contato img {
	width: 100%;
}

.img-contato h3 {
	position: absolute;
	bottom: 3rem;
	left: 1.7rem;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
}

.form-contato {
	background-color: #fff;
	padding: 30px;
}

.form-contato .row-form {
	display: flex;
	gap: 30px;
	width: 100%;
}

.form-contato textarea {
	height: 70px;
	width: 100%;
}

.titulo-form p {
	color: #696969;
    font-size: 14px;
	margin-bottom: 14px;
}
.wpcf7-form label {
	font-size: 14px;
	color: #696969;
	width: 100%;
}
.wpcf7-form input, .wpcf7-form .wpcf7-textarea, .wpcf7-form select {
	width: 100%;
	height: 35px;
	border: 1px solid #D9D9D9;
	color: #696969;
	font-size: 14px;
	padding-left: 12px;
	border-radius: 4px;
}
.wpcf7-form select {
	border-radius: 0;
	position: relative;
	width: 100%;
	border-radius: 4px;
}

.wpcf7-form select option {
	color: #191919;
}
.wpcf7-form .wpcf7-textarea {
	height: 74px;
	padding: 0;
	padding-top: 12px;
	padding-left: 12px;
}
.wpcf7-form .wpcf7-not-valid-tip {
	font-size: 12px;
}
.form-contato .wpcf7-form input::placeholder, .form-contatoo .wpcf7-form .wpcf7-textarea::placeholder, .form-contato .wpcf7-form select::placeholder{
	color: #696969;
	font-size: 14px;
}
.form-contato .wpcf7-submit {
	background: #000000;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	height: 40px;
	margin-bottom: 0;
	cursor: pointer;
	border-radius: 4px;
}
.form-contato .wpcf7-spinner {
	display: none;
}
.form-contato .btn.btn-area {
	border: 1px solid #36BB2F;
    width: 100%;
    color: #36BB2F;
	margin-bottom: 30px;
	transition: all .5s;
}
.form-contato .btn.btn-area:hover {
	background: #36BB2F;
	color: #fff;
}

.form-contato p {
	width: 100%;
}

.form-contato .btn.btn-area:hover svg path {
	fill: #fff;
}

body .wpcf7 form .wpcf7-response-output {
	margin: 0em 0em 1em;
	color: #696969;
    font-size: 14px;
}
body .wpcf7 form.sent .wpcf7-response-output {
	font-weight: 700;
	background: #46b450;
    color: #fff;
}

.row-form-last p {
	margin-bottom: 10px;
}

/* Footer */

#footer {
	padding: 68px 0;
    background: linear-gradient(90deg, #222222 20.21%, #4b4b4b 100%);
	padding-bottom: 30px;
}

.logo-footer {
	margin-bottom: 32px;
}

.contato-footer ul li {
	margin-bottom: 8px;
}

.contato-footer ul li a {
	color: #fff;
	font-size: 14px;
	display: flex;
	align-items: center; 
	gap: 8px;
}

.wrapper-colunas-right {
	display: flex;
	justify-content: end;
	gap: 50px;
}

.title-footer h5 {
	color: #ED1C24;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 24px;
}

.lista-footer ul li {
	margin-bottom: 14px;
}

.lista-footer ul li a {
	color: #ECE8E5;
	font-size: 14px;
}

.sociais .lista-footer ul {
	display: flex;
	gap: 16px;
}

.copy-footer {
	margin-top: 28px;
	padding-top: 26px;
	border-top: 1px solid #ECE8E5;
}

.copy-footer p {
	margin-bottom: 0;
	color: #ECE8E5;
}

/* PÃ¡ginas Internas */

.banner-topo {
    position: relative;
    z-index: 0;
}

.banner-topo img {
	width: 100%;
}

.faixa {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 10;
}

.faixa h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 43px;
    margin-bottom: 26px;
    margin-top: 20px;
}

.breadcrumbs-wrapper {
	margin-top: 2rem;
}

.breadcrumbs-wrapper a {
	color: #000;
}

.breadcrumbs-wrapper p {
	font-size: 14px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.breadcrumbs-wrapper p span {
	font-weight: 600;
}

.title-historia h2 {
	color: #ED1C24;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.mvv-wrapper {
	display: flex;
	gap: 60px;
	margin-top: 50px;
	margin-bottom: 70px;
}

.card-mvv {
	display: flex;
	align-items: center;
	gap: -4px;
}

.title-mvv h3 {
	color: #ED1C24;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
}

.icon-mvv {
	width: 100%;
}

.icon-mvv img {
	width: 32px;
	height: 32px;
}

.line-mvv span {
	height: 200px;
	width: 2px;
	background-color: #ED1C24;
	display: block;
	position: relative;
	right: 23px;
}

#frase {
	padding: 48px 0;
    background: linear-gradient(58deg, #BE1A1A 20.21%, #000000 100%);
    margin-bottom: 30px;
}

.frase-quem-somos h3 {
	text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
	line-height: 28px;
	max-width: 80%;
	margin: auto;
}

.img-historia {
	position: absolute;
    top: -11rem;
}

#historia {
	margin-bottom: 70px;
}

.text-mvv p {
	margin-bottom: 0;
	font-size: 13px;
	text-align: left;
}

/* Contato */

.page-template-contato .breadcrumbs-wrapper,
.page-template-trabalhe-conosco .breadcrumbs-wrapper{
    margin-top: 0;
	padding-top: 2rem;
}

.page-template-contato .breadcrumbs-wrapper a,
.page-template-trabalhe-conosco .breadcrumbs-wrapper a,
.page-template-contato .breadcrumbs-wrapper p,
.page-template-trabalhe-conosco .breadcrumbs-wrapper p {
    color: #fff;
}

#contato-full {
	background: linear-gradient(to bottom, #222 50%, #BE1A1A 50%);
	padding-bottom: 80px;
}

.title-wrapper {
	padding-top: 63px;
	padding-bottom: 43px;
}

.title-wrapper p:first-child {
	text-align: center;
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1px;
}

.title-wrapper h1 {
	color: #d0161d;
	font-size: 35px;
	line-height: 38px;
	font-weight: 600;
	letter-spacing: 0.8px;
	margin-bottom: 24px;
	text-align: center;
}

.title-wrapper h1 span {
	color: #fff;
}

.title-wrapper p:last-child {
	text-align: center;
	color: #fff;
}

.title-wrapper p span {
	color: #fa0000;
	font-weight: 400;
}

.box-contato {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 64px 80px;
    display: flex;
    justify-content: space-around;
    gap: 90px;
    margin-bottom: 80px;
    align-items: center;
}

.text-card.contato h4 {
	color: #000;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 7px;
}

.text-card.contato p {
	color: #333333;
	margin-bottom: 5px; 
	font-size: 14px;
}

.text-card.contato p a {
	color: #0C99EB;
	text-decoration: underline;
}

.card-contato {
	display: flex; 
	align-items: center;
	gap: 21px;
	margin-bottom: 32px;
}

.title-form-contato h3 {
	color: #001B3A;
	font-size: 30px;
	margin-bottom: 16px;
}

.title-form-contato h3 span {
	font-weight: 800;
}

.title-form-contato p {
	color: #171717;
	margin-bottom: 0;
	font-weight: 400;
}

.title-form-contato {
	margin-bottom: 32px;
}

.upload-cf7 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* estilo do texto/â€œlinkâ€ que aciona o seletor de arquivo */
.cf7-file-trigger {
  font-style: italic;            
  cursor: pointer;
  color: #797979;             
  display: inline-block;
	font-weight: 400;
}

.cf7-file-trigger span {
	color: #000;
	font-weight: 600;
	text-decoration: underline;  
}

.cf7-file-trigger:hover,
.cf7-file-trigger:focus {
  opacity: .85;
}

/* nome do arquivo apÃ³s selecionar */
.cf7-file-name {
    display: inline-block;
    margin-left: 0;
    color: #333;
    font-size: 14px;
}

.page-template-contato .form-contato p,
.page-template-trabalhe-conosco .form-contato p{
	margin-bottom: 0;
}

.page-template-contato .form-contato label br,
.page-template-trabalhe-conosco .form-contato label br {
	display: none;
}

.page-template-contato .wpcf7-form input, .page-template-contato .wpcf7-form .wpcf7-textarea, .page-template-contato .wpcf7-form select,
.page-template-trabalhe-conosco .wpcf7-form input, .page-template-trabalhe-conosco .wpcf7-form .wpcf7-textarea, .page-template-trabalhe-conosco .wpcf7-form select{
    width: 100%;
    height: 42px;
	margin-bottom: 12px;
}

.page-template-contato .wpcf7-form .wpcf7-textarea,
.page-template-trabalhe-conosco .wpcf7-form .wpcf7-textarea{
	height: 110px;
}

.cf7-file-field br {
	display: none;
}

/* Serviços */

.btn.btn-cta-red {
    background-color: #D0161D;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 17px;
    border-radius: 5px;
}

h3.service-title {
	color: #ED1C24;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 36px;
	margin-top: 5px;
}

.service-kicker {
	font-weight: 600;
    color: #222;
}

.service-subtitle {
	display: none;
}

.service-row p {
	max-width: 94%;
    text-align: left;
}

#cta-final {
	background-color: #BE1A1A;
	padding-top: 40px;
	padding-bottom: 40px;
}

#cta-final h3 {
	color: #fff;
	font-weight: 600;
	font-size: 23px;
}

#cta-final p {
	font-weight: 600;
}

.btn-cta-black {
	background-color: #222;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 17px;
    border-radius: 5px;
}


.btn-cta-black:hover {
	color: #fff;
}

.img-cracha img {
    width: 360px;
    position: relative;
    top: -1.5rem;
}

.page-template-trabalhe-conosco .box-contato {
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 24px 110px;
}

.page-template-trabalhe-conosco .title-wrapper p:last-child {
    text-align: center;
    color: #fff;
    max-width: 60%;
    margin: auto;
}

.wpp-button-wrapper {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50px;
    text-align: center;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000
}

.wpp-button-wrapper a {
    display: block;
    font-size: 30px;
    line-height: 60px;
    color: #fff
}

.wpp-button-wrapper a svg {
	fill: #fff;
    width: 30px;
    position: relative;
    bottom: 3px;
    left: 1px;
}

.pulse {
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0,0,0,.25)
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0)
    }
}

.error-404 .page-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
} 

@media (max-width: 769px) { 
	
	#header {
		display: none;
	}
	
	.mobileonly {
		display: block;
	} 
	
		.bar-menumob {
		position: absolute;
		left: 1rem;
	}
	
	.headermob {
		display: flex;
		align-items: center;
		justify-content: center;
	  }

	 #header-mob {
		position: relative;
		top: 0;
		background: #ffffff;
		padding: 1.5rem 0;
		z-index: 9;
		}
	
	#menu-mobile {
		width: 90%;
		height: 100vh;
		background: #ffffff;
		padding-left: 2rem;
		padding-top: 2rem;
		padding-bottom: 2rem;
		position: absolute;
		top: 0;
		left: -100%;
		transition-property: left;
		transition-duration: 1s;
		z-index: 2;
		box-shadow: 0px 0px 10px #00000033;
		}
	
	.carrossel-principal .img-full img {
		height: 520px;
	}

  .nav-mob {
    padding-top: 6rem;
  }

  .nav-mob ul li {
    margin-bottom: 1.5rem;
  }
	
	.menu-mob .social-media {
		margin-top: 2rem;
	}

  .nav-mob ul li a {
    color: #000000;
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 500;
  }
	
	.social-media ul li a {
		color: #fff;
	}

  .logo-menu-mobile {
    position: absolute;
    top: 2rem;
	width: 50%;
  }
	.error-404.not-found p, .agradecimento-form p {
    width: 100%; 
	}

  .close-menu-mob {
    position: absolute;
    top: 2rem;
    right: 1.5rem;
  }
	
	

  .close-menu-mob button {
    border: none;
    background: unset;
    filter: invert(1);
  }
	
	
	.logo-menumob img {
		width: 190px;
	}
	
	.bar-menumob img {
		width: 20px;
		filter: invert(1);
	}
	
	
	#header-mobile {
		padding: 0 1.4rem;
	}
	
	.nav-mob .redes-sociais ul {
		display: flex;
		gap: 20px;
		margin-top: 50px;
	}
	
	.cta-vermelha {
		background-color: #D0161D;
		color: #fff;
		font-size: 14px;
		font-weight: 600;
		padding: 10px 17px;
		border-radius: 5px;
	}
	
	.trabalhe-conosco-header {
		margin-top: 35px;
	}
	
	.servicos-linha {
		display: flex;
		justify-content: center;
		flex-direction: column;
		gap: 30px;
	}
	
	.servicos-linha.linha1 {
		margin-bottom: 30px;
	}
	
	#confianca {
		background-position: -660px;
	}
	
	.diferenciais-covizzi {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 30px;
	}
	
	#contato .col-12 {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	
	.wrapper-colunas-right {
		margin-top: 40px;
        gap: 30px;
        flex-direction: column;
        justify-content: center;
	}
	
	.copy-footer p {
		margin-bottom: 0;
		color: #ECE8E5;
		font-size: 12px;
	}
	
	.form-contato .row-form {
		width: 100%;
		flex-direction: column;
		gap: 0;
	}
	
	.card-servico {
		    width: 86%;
    	margin: auto;
	}
	
	.wrapper-text-hero h1,
	.faixa h1 {
		color: #fff;
		font-size: 32px;
		font-weight: 700;
		line-height: 39px; 
	}
	
	.banner-topo img {
		width: 100%;
		height: 200px;
		object-fit: cover;
		object-position: right;
	}
	
	.img-historia {
		position: relative;
		top: 0;
	}
	
	.mvv-wrapper {
		margin-top: 50px;
		margin-bottom: 70px;
		flex-direction: column;
	}
	
	.flex-lg-row-reverse .pl-5 {
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	
	.flex-lg-row-reverse .service-media {
		margin-top: 25px;
	}
	
	.service-row p {
		max-width: 100%;
		text-align: left;
	}
	
	.btn-cta-black {
		background-color: #222;
		color: #fff;
		font-size: 15px;
		font-weight: 600;
		padding: 10px 17px;
		border-radius: 5px;
		text-align: center;
		justify-content: center;
		display: flex;
		margin-top: inherit;
		max-width: fit-content;
		margin: auto;
		margin-top: 20px;
	}
	
	#cta-final h3 {
		color: #fff;
		font-weight: 600;
		font-size: 23px;
		text-align: center;
		line-height: 30px;
	}
	
	#cta-final p {
		font-weight: 600;
		text-align: center;
	}
	
	.logo-footer {
		margin-bottom: 32px;
		text-align: center;
	}
	
	.contato-footer ul li a {
		color: #fff;
		font-size: 14px;
		display: flex
	;
		align-items: center;
		gap: 8px;
		justify-content: center;
	}
	
	.title-footer h5 {
		text-align: center;
	}
	
	.lista-footer ul li {
		margin-bottom: 14px;
		text-align: center;
	}
	
	.sociais .lista-footer ul {
		gap: 16px;
		justify-content: center;
	}
	
	.title-wrapper h1 {
		color: #d0161d;
        font-size: 24px;
        line-height: 30px; 
	}
	
	.title-wrapper {
		padding-top: 13px;
		padding-bottom: 3px;
	}
	
	.box-contato {
		background-color: #FFFFFF;
		border-radius: 30px;
		padding: 33px 20px;
		display: flex
	;
		justify-content: center;
		gap: 0;
		margin-bottom: 80px;
		align-items: center;
		flex-direction: column;
	}
	
	.page-template-contato .form-contato,
	.page-template-trabalhe-conosco .form-contato {
		background-color: #fff;
		padding: 0;
	}
	
	#contato-full {
		background: linear-gradient(to bottom, #222 50%, #BE1A1A 50%);
		padding-bottom: 0;
	}
	
	.page-template-trabalhe-conosco .title-wrapper p:last-child {
		text-align: center;
		color: #fff;
		max-width: 100%;
		margin: auto;
		margin-bottom: 30px;
	}
	
	.page-template-trabalhe-conosco .box-contato {
		background-color: #FFFFFF;
		border-radius: 30px;
		padding: 24px 30px;
		flex-direction: column-reverse;
	}
	
	.img-cracha img {
		width: 100%;
		position: relative;
		top: 0;
	}
	
	.title-form-contato h3 {
		color: #000000;
		font-size: 30px;
		line-height: 38px;
		padding-top: 10px;
	}
	
	.text-card.contato p {
		color: #333333;
		margin-bottom: 5px;
		font-size: 14px;
		text-align: left; 
	}

}