/*
Theme Name: Ale Designer
Author: AGT Online
Author URI: https://agtonline.com.br
Description: Tema do site oficial Ale Designer
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: Ale Designer, AGT Online
Text Domain: Ale Designer

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/**
* SUMARIO - CSS - Ale Designer
* ----------------------------------------------------------------------------
* 01 - ELEMENTOS EM GERAL
* 02 - HELPER CLASSES
* 03 - HEADER
* 04 - MENU SUPERIOR
* 05 - MENU MOBILE
* 06 - HEADER FIXO AO ROLAR A PAGINA
* 07 - FOOTER
* 08 - COPYRIGHT
* 09 - FORMULARIOS
* 10 - PAGINA - HOME
* 11 - PAGINA - BLOG
* 12 - SINGLE BLOG
* 13 - PAGINA - PORTFOLIO (SINGLE)
* 14 - PAGINA - CONTATO
* 15 - PAGINA - OBRIGADO
* 16 - PAGINA - SOBRE MIM
* 17 - ESTRUTURA DAS PAGINAS INTERNAS
* 18 - BLOCOS QUE REPETEM / BLOCOS / WIDGETS
* 19 - PAGINA - 404
* XX - RESPONSIVE FIXES
**/

/**
* 01 - ELEMENTOS EM GERAL
* ----------------------------------------------------------------------------
*/

:root {
	--cor1: #0099b2;
	--cor2: #757575;
	--cor3: #eaeaea;
	--cor4: #f6f6f6;
	--cor5: #0a0a0a;
	--cor-padrao: #757575;
	--font-titulos: 'Atkinson Hyperlegible Next', Arial, sans-serif;
	--font-textos: 'Atkinson Hyperlegible Next', Arial, sans-serif;
	--radius-padrao: 12px;
	--radius-grande: 99px;
}

* {
}

html {
	font-size: 62.5%;
	/* 62.5% de 16px (tamanho padrão do navegador) = 10px */
}

body {
}

.main-wrapper {
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
}

a {
	font-size: 2rem;
	color: var(--cor1);
}

a:hover {
	transition: all 0.3s;
}

div {
	color: var(--cor-padrao);
	font-family: var(--font-textos);
	font-size: 2rem;
	/* font-size: 1.8rem; */
}

p {
	color: var(--cor-padrao);
	font-family: var(--font-textos);
	font-size: 2rem;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-titulos);
	font-weight: 400;
	line-height: 1.3;
}

h1 {
	color: var(--cor5);
	font-size: 6.4rem;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

h2 {
	color: var(--cor5);
	font-size: 4.2rem;
	margin-bottom: 1.5rem;
}

h3 {
	color: var(--cor5);
	font-size: 2.6rem;
	margin-bottom: 1.5rem;
}

h4 {
	color: var(--cor2);
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
}

ul {
	padding-left: 20px;
}

ul li,
ol li {
	color: var(--cor-padrao);
	font-size: 2rem;
}

li + li {
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	max-width: 100%;
}

video {
	display: block;
	object-fit: cover; /* Garante que o vídeo preencha a área sem deformar */
	width: 100%;
	height: 600px;
}

.text-right {
	text-align: right !important;
}

.hidden {
	display: none !important;
}

.visible {
	display: block !important;
}

/**
* 02 - HELPER CLASSES
* ----------------------------------------------------------------------------
*/

/* Container */
.container {
	width: 100%;
	/* max-width: 1270px !important; */
	max-width: 1670px !important;
	padding: 0;
	margin: 0 auto;
}

.container1012 {
	/* max-width: 1200px !important; */
	max-width: 83% !important;
	margin-right: auto !important;
	margin-left: auto !important;
}

@media screen and (max-width: 1600px) {
	.container {
		max-width: 1470px !important;
	}
}

@media screen and (max-width: 1536px) {
	.container {
		max-width: 1370px !important;
	}
}

@media screen and (max-width: 1440px) {
	.container {
		max-width: 1270px !important;
	}
}

.custom-container {
	width: 1270px;
	margin: 0 auto;
}

/* Visible or not */
.visible-xs {
	display: none !important;
}

.hidden-xs {
	display: block !important;
}

.visible-lg {
	display: none !important;
}

.hidden-lg {
	display: block !important;
}

/* Gaps */
[class^='gap'] {
	display: block;
	clear: both;
}

.gap10 {
	height: 10px;
}

.gap20 {
	height: 20px;
}

.gap30 {
	height: 30px;
}

.gap40 {
	height: 40px;
}

.gap50 {
	height: 50px;
}

.gap60 {
	height: 60px;
}

/* Titulos */
.sub h1,
.title h1 {
	color: var(--cor2);
	font-size: 4.2rem;
	font-weight: 400;
}

.sub h2,
.title h2 {
	color: var(--cor2);
	font-size: 4.2rem;
	font-weight: 400;
}

.sub h1 strong,
.sub h2 strong {
	color: var(--cor5);
	font-weight: normal;
}

/* Separadores */
.hr {
	margin-bottom: 0 !important;
}

.hr hr {
	border: 1px dotted #9f9f9f;
}

/* Titulos pequenos */
.upper-title {
	margin-bottom: 2.5rem;
}

.upper-title p {
	color: var(--cor5);
	font-size: 2rem;
	margin-bottom: 0;
}

/* Ctas */
.cta a {
	background-color: var(--cor1);
	border-radius: var(--radius-grande);
	border: 1px solid var(--cor1);
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	padding: 5px 32px;
	text-decoration: none;
	transition: all 0.3s;
}

.cta a:hover {
	background-color: transparent;
	border-color: var(--cor1);
	color: var(--cor1);
}

.cta.alt a {
	background-color: transparent;
	border: 1px solid var(--cor-padrao);
	color: var(--cor-padrao);
}

.cta.alt a:hover {
	background-color: transparent;
	border-color: var(--cor2);
	color: var(--cor2);
}

/* Videos */
.video-wrapper {
}
.video-wrapper a {
	position: relative;
}

.video-wrapper a:after {
	background: transparent url(images/icones/play.svg) no-repeat center center;
	content: '';
	height: 57px;
	width: 82px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.video-wrapper a:hover {
	opacity: 0.8;
}

/* Swiper Slider */
.swiper-slide {
}

.swiper-wrapper {
}

.swiper-button-prev,
.swiper-button-next {
	color: #dedede !important;
	opacity: 0.5;
}

.swiper-pagination-bullet {
	background-color: #aaa;
	padding: 5px;
}

.swiper-pagination-bullet-active {
	background-color: var(--cor1);
}

/* Custom List */
.custom-list {
}

.custom-list ul {
	padding-left: 0;
}

.custom-list li + li {
	margin-top: 15px;
}

.custom-list li {
	color: var(--cor-padrao);
	font-size: 1.6rem;
	font-weight: 400;
	list-style: none;
	padding-left: 20px;
	position: relative;
}

.custom-list li:before {
	background-color: var(--cor2);
	border-radius: 100%;
	content: '';
	display: inline-block;
	height: 7px;
	width: 7px;
	position: absolute;
	left: 0;
	top: 10px;
}

/* AOS */
/* Reduz a distância do deslocamento para 20px */
[data-aos='fade-up'] {
	transform: translateY(20px);
}

/* Garante que quando ativo, ele volte exatamente para o zero */
[data-aos='fade-up'].aos-animate {
	transform: translateY(0);
}

/**
* 03 - HEADER
* ----------------------------------------------------------------------------
*/

#header {
	background-color: #fff;
	width: 100%;
	position: relative;
	z-index: 999;
	height: 110px;
}

#header-wrapper {
	border-bottom: 1px dotted #9f9f9f;
}

#header-wrapper > .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}

/* Logo */
#header-wrapper #logo {
	width: 230px;
}


/**
* 04 - MENU SUPERIOR
* ----------------------------------------------------------------------------
*/
#menu-superior-wrapper {
}

#menu-superior {
	padding: 0px 0;
	width: 100%;
}

#menu-superior ul {
	display: flex;
	align-items: center;
	margin: 0;
	gap: 40px;
}

#menu-superior ul li {
	font-family: 'Atkinson Hyperlegible', Arial, Helvetica, sans-serif;
	list-style: none;
	position: relative;
	transition: all ease 0.3s;
}

#menu-superior ul li a {
	color: var(--cor2);
	display: block;
	font-size: 2rem;
	font-weight: 400;
	text-decoration: none;
	/* text-transform: uppercase; */
}

#menu-superior ul li.contato a {
	border: 1px solid var(--cor1);
	border-radius: 99px;
	color: var(--cor1);
	padding: 3px 22px;
}

#menu-superior ul li.contato a:hover,
#menu-superior ul li.contato.current-menu-item a {
	background-color: var(--cor1);
	color: #fff;
}

#menu-superior ul li:hover {
	color: var(--cor1);
}

#menu-superior ul li a:hover,
#menu-superior ul li.current-menu-item a {
	color: var(--cor1);
	text-decoration: none;
}

/* Menu Level 2 */
#menu-superior ul.sub-menu {
	background-color: #000000b3;
	box-shadow: 0px 3px 6px #00000029;
	display: none !important;
	height: auto;
	min-width: 180px;
	padding: 0;
	position: absolute;
	top: 40px;
	z-index: 2;
	flex-direction: column;
	gap: 0 !important;
}

#menu-superior ul.sub-menu li {
	border-bottom: 0 !important;
	width: 100%;
	max-width: 100%;
	margin: 0;
}

#menu-superior ul.sub-menu li a {
	border-bottom: 1px solid #efefef;
	color: var(--color-gray-2) !important;
	display: block;
	font-size: 1.5rem !important;
	font-weight: normal;
}

#menu-superior ul.sub-menu li:hover {
	background-color: #efefef;
}

#menu-superior .sub-menu li:last-child a {
	border-bottom: none;
}

#menu-superior .sub-menu li a:after {
	display: none;
}

#menu-superior .sub-menu li a:hover,
#menu-superior .sub-menu li.current-menu-item a {
	color: #fff;
	background-color: var(--cor1);
}

#menu-superior li:hover .sub-menu {
	display: block !important;
}

/* Midias */
/* #midias {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
} */

/* #midias a:hover {
	opacity: 0.8;
} */

/* Busca */
#busca-header {
}

#busca-header input[type='text'] {
	background: #fff url(images/icones/icone-lupa.svg) no-repeat 95% center;
	border: none;
	border-radius: var(--radius-grande);
	padding: 0 6px;
	height: 40px;
	line-height: 40px;
	max-width: 160px;
}

/**
* 05 - MENU MOBILE
* ----------------------------------------------------------------------------
*/
#menu-mobile {
	cursor: pointer;
	height: 50px;
	float: right;
	margin-top: 14px;
	overflow: hidden;
	position: relative;
	width: 34px;
	z-index: 9999;
}

#menu-mobile span {
	height: 3px;
	background-color: var(--cor1);
	display: block;
	width: 40px;
	transition: all 0.3s ease;
	margin: 6px 0;
}

#menu-mobile:hover span {
}

#menu-mobile:hover .span2 {
	width: 80%;
}

#menu-mobile.close {
	opacity: 1;
}

#menu-mobile.close .span1 {
	transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	transition: all 1s ease;
}

#menu-mobile.close .span2 {
	width: 0;
	transition: all 0.3s ease;
}

#menu-mobile.close .span3 {
	transform: rotate(45deg);
	position: absolute;
	top: 10px;
	transition: all 1s ease;
}

#menu-mobile.close [class^='span'] {
	background-color: var(--cor1);
}

/* Menu Mobile Wrapper (Conteudo) */
/* #menu-mobile-wrapper {
	background-color: var(--cor1);
	position: fixed;
	top: 0;
	left: 0;
	width: 80%;
	opacity: 0;
	height: 100vh;
	display: none;
	padding: 0 5rem;
	transition: all 0.3s linear;
	z-index: 9998;
} */

#menu-mobile-wrapper {
    background-color: var(--cor1);
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    padding: 0 5rem;
    z-index: 9998;
    
    /* Substitutos para o display: none */
    opacity: 0;
    visibility: hidden; 
    transform: translateX(-20px); /* Começa levemente deslocado para a esquerda */
    
    /* Configuração da transição */
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

/* #menu-mobile-wrapper.open {
	opacity: 1;
	transition: all 0.3s linear;
} */

#menu-mobile-wrapper.open {
    display: block; /* O JS ainda pode adicionar a classe d-block, mas o transition agora funcionará */
    opacity: 1;
    visibility: visible;
    transform: translateX(0); /* Volta para a posição original */
}

#menu-mobile-wrapper #logo-menu {
	padding: 7rem 0 9rem 0;
}

/*
#menu-mobile-wrapper #logo-menu img {
	max-width: 145px;
} */

#menu-mobile-wrapper ul {
	margin: 0;
	padding: 0;
}

#menu-mobile-wrapper li {
	list-style: none;
	padding: 0;
	margin: 3rem 0;
	text-align: left;
	line-height: 1.3;
}

#menu-mobile-wrapper li a {
	border-bottom: 1px dotted #fff;
	color: #fff;
	display: block;
	font-size: 3.3rem;
	font-weight: 300;
	line-height: 1;
	margin: 0;
	padding: 0 0 3rem 0;
	text-align: left;
	text-decoration: none;
	text-transform: lowercase;
}

#menu-mobile-wrapper li:not(.menu-item-has-children) a {
	/* background: transparent url(images/icones/arrow-right.svg) no-repeat 97% 12px; */
}

#menu-mobile-wrapper li:first-child a {
	border-top: none;
}

#menu-mobile-wrapper li a:hover,
#menu-mobile-wrapper li:hover,
#menu-mobile-wrapper li a:active,
#menu-mobile-wrapper li:active,
#menu-mobile-wrapper li a:focus,
#menu-mobile-wrapper li:focus {
	background: transparent;
	-moz-transition: all 0.6s;
	-webkit-transition: all 0.6s;
	transition: all 0.6s;
}

/* 2 level */
#menu-mobile-wrapper ul.sub-menu {
	border-top: none;
	border-bottom: 30px;
	display: none;
	margin-left: 0;
	position: relative;
	visibility: unset;
	z-index: 1;
	padding-top: 30px;
}

#menu-mobile-wrapper ul.sub-menu:before {
	color: #fff;
	/* background-color: red; */
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	font-size: 2rem;
	font-weight: bold;
	margin-top: 10px;
	margin-left: 25px;
}

#menu-mobile-wrapper li.menu-item-has-children {
}

#menu-mobile-wrapper .menu-item-has-children a {
	padding-bottom: 0;
}

#menu-mobile-wrapper .menu-item-has-children:hover > .sub-menu {
	display: block;
}

#menu-mobile-wrapper li > ul {
	padding-top: 0;
	padding-left: 10px;
}

#menu-mobile-wrapper li > ul.sub-menu li {
}

#menu-mobile-wrapper li > ul.sub-menu li a {
	color: #fff;
	border-bottom: none;
	font-size: 2.2rem;
	font-weight: normal;
	padding: 0px 15px;
	max-width: 100%;
}

#menu-mobile-wrapper li > ul.sub-menu li a:hover,
#menu-mobile-wrapper li > ul.sub-menu li a:focus,
#menu-mobile-wrapper li > ul.sub-menu li a:active {
	color: var(--cor-padrao);
}

/* #menu-mobile-wrapper li:hover > ul.sub-menu {
    display: block;
} */

/* Social */
.mobile-social a {
	color: white;
	text-decoration: none;
}

.mobile-social {
	text-align: left;
	padding: 0 34px;
	margin-top: 50px;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}

.mobile-social a:hover {
	text-decoration: none;
}

.mobile-social i {
	color: #fff;
	padding: 10px 0;
}

.mobile-social a {
	padding-left: 10px;
	font-size: 14px;
}

/* Cover Dark */
.cover-dark {
	display: none;
	background: rgba(0, 0, 0, 0.85);
	height: 100%;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	width: 100%;
	z-index: 998;
}

/**
* 06 - HEADER FIXO AO ROLAR A PAGINA
* ----------------------------------------------------------------------------
*/

/* Estado Base do Header (Topo da página) */
#header-wrapper {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	z-index: 999;

	/* A mágica da fluidez está aqui */
	height: 110px;
	background-color: transparent;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
}

/* 1. Estado: Rolando para baixo (Escondido) */
#header-wrapper.hide-header {
	transform: translateY(-100%); /* Move para fora da tela suavemente */
	opacity: 0;
}

/* 2. Estado: Rolando para cima (Header Alternativo/Compacto) */
/* Quando NÃO está no topo e NÃO está escondido */
#header-wrapper:not(.header-scroll):not(.hide-header) {
	height: 70px;
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transform: translateY(0);
	opacity: 1;
}

/* 3. Estado: No Topo (Garantindo fundo branco se desejar) */
#header-wrapper.header-scroll {
	background-color: #fff !important; /* Ou transparent, conforme seu design */
	height: 110px;
	transform: translateY(0);
	opacity: 1;
}

/* Troca de Logotipos */
#header-wrapper #logo .logo {
	display: block;
}
#header-wrapper #logo .logo.alt {
	display: none;
}

/* Inverte os logos quando o menu encolhe */
#header-wrapper:not(.header-scroll):not(.hide-header) #logo .logo {
	display: none !important;
}
#header-wrapper:not(.header-scroll):not(.hide-header) #logo .logo.alt {
	display: block !important;
}

/**
* 07 - FOOTER
* ----------------------------------------------------------------------------
*/
/* Footer */
#footer {
	background-color: #2a2a2a;
	padding: 7rem 0;
	margin-top: 6rem;
}

#footer * {
	color: #e8e8e8;
	font-size: 1.7rem;
	font-weight: 300;
}

#footer a:hover {
	color: var(--cor1);
}

#footer .footer-container {
}

#footer .footer-container .footer-content {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

/* Colunas */
#footer div[class^='coluna'] {
	width: 30%;
}

#footer .coluna1 {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: 250px;
}

#footer .coluna1 p {
	margin-bottom: 2.5rem;
	max-width: 250px;
}

#footer .coluna1 img:hover {
	opacity: 0.8;
}

#footer .coluna2 {
}
#footer .coluna3 {
}

#footer .coluna3 p {
	margin-bottom: 0.7rem;
}

/* Logo */
#footer .footer-logo {
	width: 165px;
	margin-bottom: 3rem;
}

#footer a {
	text-decoration: none;
}

#footer ul {
	margin: 0;
	padding: 0;
}

#footer li {
	list-style: none;
	margin-bottom: 6px;
	text-transform: lowercase;
}

#footer li a {
	text-decoration: none;
}

/* Midias */
#footer .footer-social {
}

#footer .footer-social .links-wrapper {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: flex-start;
}

#footer .footer-social img {
	width: 22px;
	height: auto;
	transition: all 0.3s ease;
}

#footer .footer-social img:hover {
	opacity: 0.8;
}

/* Back to Top */
#backToTop {
	display: none; /* Controlado pelo JS */
	position: fixed;
	bottom: 20px;
	right: 30px;
	z-index: 9999;
	background-color: #333;
	color: white;
	width: 50px; 
	height: 50px;
	text-align: center;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.3s;
}

#backToTop:hover {
	background-color: #555;
}

#backToTop svg {
	fill: #fff;
}

/**
* 08 - COPYRIGHT
* ----------------------------------------------------------------------------
*/

#copyright {
	background-color: #1e1e1e;
	padding: 1rem 0;
}

#copyright .sep {
	display: inline-block;
	margin: 0 15px;
}

#copyright ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0;
	padding-left: 0;
}

#copyright ul li {/
	color: #e8e8e8;
	font-size: 15px;
	list-style: none;
}

#copyright ul li a {
	color: #e8e8e8;
	font-size: 15px;
	text-decoration: none;
}

#copyright ul li a:hover {
	color: var(--cor1);
}

/**
* 09 - FORMULARIOS
* ----------------------------------------------------------------------------
*/
.wpcf7 {
}

.wpcf7 .form-group {
	margin-bottom: 19px;
}

.wpcf7 br {
	display: none;
}

.wpcf7 h4 {
	margin-bottom: 25px;
}

.wpcf7 span {
	color: var(--cor-padrao);
	font-size: 1.8rem;
	margin: 0;
}

.wpcf7 label {
	display: block;
	font-size: 1.8rem;
}

.wpcf7 ::placeholder {
	color: var(--cor-padrao);
}

.wpcf7 input[type='text'],
.wpcf7 input[type='email'],
.wpcf7 input[type='number'],
.wpcf7 input[type='phone'],
.wpcf7 textarea {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #a4a4a4;
	border-radius: 0;
	font-size: 1.8rem;
	font-weight: 300;
	color: var(--cor3);
	height: 45px;
	line-height: 45px;
	padding: 6px 16px 6px 0;
	width: 100%;
}

.wpcf7 textarea {
	/* resize: none; */
	line-height: 1.3;
}

.wpcf7 input[type='text']::placeholder,
.wpcf7 input[type='email']::placeholder,
.wpcf7 input[type='number']::placeholder,
.wpcf7 input[type='phone']::placeholder,
.wpcf7 textarea::placeholder {
	color: var(--cor3);
}

.wpcf7 input:focus,
.wpcf7 textarea:focus {
	outline: none;
}

.wpcf7 textarea {
	height: 160px;
}

.wpcf7 select {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #fff;
	border-radius: var(--radius-padrao);
	color: var(--cor-padrao);
	font-size: 1.8rem;
	font-weight: 300;
	height: 45px;
	padding: 16px 16px 6px 0;
	text-transform: uppercase;
	width: 100%;
}

.wpcf7 .wpcf7-list-item {
	display: inline;
}

.wpcf7 .wpcf7-list-item span {
	font-size: 2rem;
}

.wpcf7 input[type='checkbox'],
input[type='radio'] {
	margin-right: 5px;
	margin-top: 5px;
}

.wpcf7 input[type='submit'],
.wpcf7 button {
	background-color: var(--cor1);
	border-radius: var(--radius-grande);
	border: 1px solid var(--cor1);
	color: #fff;
	display: inline-block;
	font-size: 2rem;
	font-weight: 400;
	padding: 5px 32px;
	text-decoration: none;
	transition: all 0.3s;
	margin-bottom: 20px;
}

.wpcf7 input[type='submit']:hover,
.wpcf7 button:hover {
	background-color: transparent;
	border-color: var(--cor1);
	color: var(--cor1);
	text-decoration: none;
}

.wpcf7 .wpcf7-spinner {
	display: block;
}

/* Mensagens de Valicacao de Erro ou Ok */
.wpcf7 input[type='text'].wpcf7-not-valid,
.wpcf7 input[type='email'].wpcf7-not-valid,
.wpcf7 select.wpcf7-not-valid,
.wpcf7 textarea.wpcf7-not-valid {
	/* background: #ffe1e2; */
	color: #ff585d;
}

.wpcf7 div.wpcf7-validation-errors,
.wpcf7 div.wpcf7-mail-sent-ok {
	background: #fff;
	border: 2px solid #d9d9d9;
	color: #398f14;
	font-size: 13px;
	padding: 7px 15px;
}

.wpcf7-form .wpcf7-response-output {
	border-radius: var(--radius-padrao);
	border-color: #fff;
	background: #fff;
	clear: both;
	font-size: 14px;
	margin: 0 !important;
	padding: 12px 15px !important;
}

.wpcf7 form.sent .wpcf7-response-output {
	/* envio sucesso */
	background-color: #dff2bf;
	border: 0;
	color: #4f8a10;
}

.wpcf7 form.invalid .wpcf7-response-output {
	/* envio erro */
	background-color: #ffe1e2;
	border: 0;
	color: #ff585d;
}

.wpcf7 span.wpcf7-not-valid-tip {
	color: #ff585d;
	font-weight: bold;
	font-size: 12px;
	margin-top: 5px;
}

/* Google ReCaptcha */
.grecaptcha-badge {
	visibility: hidden;
}

/**
* 10 - PAGINA - HOME
* ----------------------------------------------------------------------------
*/
/* Video */
#video-wrapper {
	margin-top: 5rem;
}

#video-wrapper video {
	border-radius: var(--radius-padrao);
}

/* Intro */
#intro-wrapper {
	padding-bottom: 7rem;
}

#intro-wrapper .text p {
	font-size: 2rem;
}

#intro-wrapper .cta {
	margin-bottom: 0;
}

/* Portfolio */
#portfolios-wrapper {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#portfolios-wrapper .cta {
	margin-top: 7rem;
	margin-bottom: 0;
}

/* Loop */
.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* Cria 2 colunas iguais */
	gap: 30px; /* Espaço entre os itens */
}

.portfolio-item {
	background-color: #eaeaea;
	border-radius: var(--radius-padrao);
	padding: 8px 8px 20px 8px;
	display: flex;
	flex-direction: column;
	transition: all 0.7s ease;
}

.portfolio-thumbnail {
	border-radius: 8px;
	overflow: hidden;
}

.portfolio-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.portfolio-info {
	display: flex;
	justify-content: space-between; /* Título na esquerda, Categoria na direita */
	align-items: baseline;
	margin-top: 20px;
	padding: 0 10px;
}

.portfolio-title {
	color: var(--cor-padrao);
	font-size: 2rem;
	margin: 0;
	transition: color 0.3s ease;
}

.portfolio-category {
	font-size: 1.8rem;
	transition: color 0.3s ease;
}

/* Responsividade: 1 coluna em celulares */
@media (max-width: 768px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
	}
}

.portfolio-item:hover {
	background-color: #0a0a0a;
}

.portfolio-item:hover .portfolio-title,
.portfolio-item:hover .portfolio-category {
	color: #fff;
}

.portfolio-item:hover .portfolio-thumbnail img {
	transform: scale(1.02);
}

/* Services */
#services-wrapper {
	background-color: var(--cor4);
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#services-wrapper .wpb_text_column {
	max-width: 1100px;
}

#services-wrapper .text p {
	font-size: 2rem;
}

#services-wrapper .list-type1 {
	max-width: 1100px;
	margin-bottom: 0;
}

.list-type1 {
}

.list-type1 ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 15px 40px;
	margin: 0;
	padding: 0;
}

.list-type1 ul li {
	font-size: 2rem;
	list-style: none;
	font-weight: 300;
}

.list-type1 ul li:before {
	content: '⊹ ';
	margin-right: 7px;
}

/* Depoimentos */
#testimonial-wrapper {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#testimonial-wrapper .sub {
	margin-bottom: 1rem;
}

#testimonial-wrapper h2 {
	color: var(--cor5);
}

/* Nav */
.nav-arrows {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	position: relative;
	margin-bottom: 15px;
}

.nav-arrows .button-next,
.nav-arrows .button-prev {
	height: 26px;
	width: 26px;
}

.nav-arrows .button-next {
	background: #fff url(images/icons/arrow-right.svg) no-repeat center;
}

.nav-arrows .button-next:hover {
	background: #fff url(images/icons/arrow-right-hover.svg) no-repeat center;
}

.nav-arrows .button-prev {
	background: #fff url(images/icons/arrow-left.svg) no-repeat center;
}

.nav-arrows .button-prev:hover {
	background: #fff url(images/icons/arrow-left-hover.svg) no-repeat center;
}

/* Loop */
.depoimento-card {
	padding: 20px;
	background: #f9f9f9;
	border-radius: 14px;
	padding: 5rem 4.5rem;
	text-align: left;
}

.depo-text {
	font-size: 2rem;
}

.depo-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-top: 4rem;
	margin-bottom: 1.7rem;
}

.depo-name {
	color: var(--cor2);
	display: block;
	font-size: 2rem;
	font-weight: 500;
	text-transform: uppercase;
}

.depo-role {
	color: var(--cor2);
	font-size: 1.8rem;
}

/* Blog */
#blog-wrapper {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#blog-wrapper .sub h2 {
	color: var(--cor5);
}

#blog-wrapper .swiper-slide {
	height: auto; /* Importante para o Swiper calcular corretamente */
	display: flex;
}

.post-card {
	display: flex;
	flex-direction: column;
	width: 100%; /* Ocupa a largura total do slide */
	flex: 1; /* Força o card a esticar verticalmente para preencher o slide */
	background-color: #f4f4f4;
	border-radius: var(--radius-padrao);
	padding: 8px 8px 25px 8px;
}

.post-featured {
	border-radius: 8px;
	overflow: hidden;
}

.post-featured img {
	display: block;
	border-radius: 8px;
	transition:
		transform 0.3s,
		background-color 0.3s;
}

.post-content {
	padding: 10px 10px;
}

.post-content .post-date {
	display: block;
	font-size: 1.7rem;
	margin: 10px 0 20px 0;
}

.post-content .post-title {
	font-size: 2rem;
	font-weight: 500;
}

.post-content .post-title a {
	color: var(--cor-padrao);
	text-decoration: none;
}

#blog-wrapper .cta {
	margin-top: 6rem;
	margin-bottom: 0;
}

/* Hover Effects */
.post-card:hover {
	background-color: #0a0a0a;
}

.post-card:hover .post-date,
.post-card:hover .post-title a {
	color: #fff;
}

.post-card:hover .post-featured img {
	transform: scale(1.02);
}

/* Contact */
#contact-wrapper {
	background-color: #1e1e1e;
	background-image: url(images/bg/a-contato.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
	border-radius: 14px;
	padding: 4.5rem 6.5rem 1.5rem 6.5rem;
	margin-top: 7rem;
	margin-bottom: 3rem;
}

#contact-wrapper .col-left {
	padding-right: 5rem;
}

#contact-wrapper .col-left a {
	color: var(--cor1);
	font-size: 2.2rem;
	font-weight: bold;
	text-decoration: none;
}

#contact-wrapper .sub {
	margin-bottom: 6rem;
}

#contact-wrapper .sub h2 {
	color: var(--cor3);
}
#contact-wrapper .text {
}
#contact-wrapper .text p {
	color: var(--cor3);
}

#contact-wrapper .col-right {
	padding-top: 20px;
}

/**
* 11 - PAGINA - BLOG 
* ----------------------------------------------------------------------------
*/

/* Listagem de Posts */
article.single-blog {
	width: 800px;
	max-width: 100%;
	margin: 7rem auto;
}

.blog-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 30px;
	padding: 20px 0;
}

.post-card {
	display: flex;
	flex-direction: column;
	height: 100%; /* Garante que todos os cards tenham a mesma altura */
	overflow: hidden;
	transition: all 0.7s ease;
}



/**
* 12 - SINGLE BLOG
* ----------------------------------------------------------------------------
*/

/* Meta */
.single-blog .post-meta {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	align-items: center;
	margin-bottom: 2rem;
}

/* Titulo */
.single-blog .post-title {
	margin-bottom: 3rem;
}

/* Categorias e Data */
.single-blog .post-meta .cats {
}

.single-blog .post-meta .cats {
	border-left: 1px solid var(--cor-padrao);
	padding-left: 15px;
}

.single-blog .post-meta .cat-title {
	font-size: 15px;
}

.single-blog .post-meta .cat-title a {
}

.single-blog .post-meta .cat-title a:hover {
}

.single-blog .post-meta .data {
	font-size: 15px;
}

/* Imagem em Destaque */
.single-blog .post-feature-img {
}

.single-blog .post-feature-img img {
	border-radius: var(--radius-padrao);
	margin-bottom: 5rem;
	max-width: 100%;
	height: auto;
}

/* Conteudo */
.single-blog .post-content {
}

.single-blog .post-content p {
	margin-bottom: 2rem;
}

#section-blog-post a:hover {
}

.single-blog .post-content h2 {
	color: var(--cor5);
	margin-bottom: 3rem;
}

.single-blog .post-content h3 {
	margin-bottom: 3rem;
}

.single-blog .post-content h4 {
	margin-bottom: 3rem;
}

.single-blog .post-content ul {
	margin-bottom: 3rem;
	margin-left: 10px;
}

.single-blog .post-content ul li,
.single-blog .post-content ol li {
	font-weight: 300;
}

.single-blog .post-content ul li:before {
}

.single-blog .post-content a {
	font-weight: bold;
}

.single-blog .post-content strong {
	font-weight: 700;
}

.single-blog .post-content img,
.single-blog .post-content iframe {
	/* height: auto; */
	margin-bottom: 2rem;
	margin-top: 2rem;
	max-width: 100%;
	/* width: auto; */
}

.single-blog .post-content iframe {
	border-radius: var(--radius-padrao);
	/* width: 100%;
	height: auto;
	min-height: 400px; */
}

.single-blog .post-content blockquote {
	border-left: 1px solid #9f9f9f;
	color: var(--cor1);
	font-size: 2.6rem;
	padding: 25px 30px 5px 30px;
	font-weight: 300;
	margin: 3rem 0;
}

.single-blog .post-content blockquote p {
	color: var(--cor1);
	font-size: 2.6rem;
}

.single-blog .post-content table {
	margin-bottom: 3rem;
}

.single-blog .post-content hr {
	margin: 2rem 0;
}

.single-blog .post-content .wp-caption {
	max-width: 100%;
}

/* Paginacao */
#pagination-wrapper {
	clear: both;
	margin-top: 4rem;
	text-align: center;
}

#pagination-wrapper .page-numbers {
	color: var(--cor-padrao);
}

#pagination-wrapper .item-nav,
#pagination-wrapper .page-numbers {
	border-radius: var(--radius-padrao);
	display: inline-block;
	padding: 8px 15px;
	text-align: center;
	background: #f8f8f8;
	border: 1px solid #dfdfdf;
	font-size: 1.6rem;
	margin: 1rem 2rem 1rem 0;
	text-decoration: none;
}

#pagination-wrapper .page-numbers.current {
	background: var(--cor1);
	border-color: var(--cor1);
	color: #fff;
	font-weight: bold;
}

#pagination-wrapper .page-numbers:hover {
	background: var(--cor1);
	border-color: var(--cor1);
	color: #fff;
	transition: all 0.3s;
}

/* Posts Relacionados */
#posts-relacionados {
	padding: 7rem 0;
}

#posts-relacionados .swiper-slide {
	height: auto;
	display: flex;
}

/* Faixa CTA */
.content-wrapper.portfolio #faixa-cta {
	max-width: 1270px;
}

/**
* 13 - PAGINA - PORTFOLIO (SINGLE) 
* ----------------------------------------------------------------------------
*/
.single-portfolio-wrapper {
	margin-bottom: 7rem;
}

/* Conteudo */
.portfolio-content {
	max-width: 1050px;
}

.portfolio-content .upper-title {
	color: var(--cor5);
}

.portfolio-content .overview {
}

.portfolio-content .overview a {
	font-weight: 600;
	text-decoration: none;
}

.portfolio-content .overview a:hover {
	color: var(--cor5);
}

.portfolio-content .overview strong {
	font-weight: 600;
}


/* Separador */
.content-wrapper.portfolio .hr {
}

/* Projetos Relacionados */
#projetos-relacionados {
	margin-top: 7rem;
}

#projetos-relacionados .upper-title {
	color: var(--cor5);
}

#projetos-relacionados h2 {
	color: var(--cor5);
}

/**
* 14 - PAGINA - CONTATO 
* ----------------------------------------------------------------------------
*/
#contact-wrapper.pg-contact {
	background: #fff;
	padding-top: 0;
}

#contact-wrapper.pg-contact p {
	color: var(--cor-padrao);
}

#contact-wrapper.pg-contact .col-left {
	padding-top: 10px;
}
#contact-wrapper.pg-contact .col-left a {
	color: var(--cor-padrao);
}

#contact-wrapper.pg-contact .col-right {
	padding-top: 0;
}

#contact-wrapper.pg-contact .wpcf7 input:not([type='submit']),
#contact-wrapper.pg-contact .wpcf7 input::placeholder,
#contact-wrapper.pg-contact .wpcf7 textarea,
#contact-wrapper.pg-contact .wpcf7 textarea::placeholder {
	color: var(--cor-padrao) !important;
	border-color: #c3c3c3;
}

/**
* 15 - PAGINA - OBRIGADO 
* ----------------------------------------------------------------------------
*/
#obrigado-wrapper {
	padding: 120px 25px;
}

#obrigado-wrapper .foto {
	margin-bottom: 20px;
}

#obrigado-wrapper .foto img {
}

#obrigado-wrapper .texto {
	margin-bottom: 0;
}

#obrigado-wrapper .texto h2 {
	font-size: 4.4rem;
	margin-bottom: 25px;
}

#obrigado-wrapper .texto p {
	font-size: 2.4rem;
	font-weight: 800;
	line-height: 1.2;
}

@media screen and (max-width: 1440px) {
	#obrigado-wrapper {
		padding: 70px 25px;
	}
}

@media screen and (max-width: 800px) {
	#obrigado-wrapper {
		padding: 35px 25px;
	}

	#obrigado-wrapper img {
		max-width: 80%;
	}
}

@media screen and (max-width: 480px) {
	#obrigado-wrapper img {
		max-width: 180px;
	}
}

/**
* 16 - PAGINA - SOBRE MIM
* ----------------------------------------------------------------------------
*/
/* Hero */
#hero-who {
}

#hero-who .photo {
	margin-bottom: 0;
}

#hero-who .photo img {
	border-radius: var(--radius-padrao);
}

/* Intro */
#intro-who {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

/* Proposito Trajetoria */
#purpose-who {
	background: var(--cor1) url(images/bg/purpose.png) no-repeat 80% center;
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#purpose-who .col-left {
	padding-right: 5rem;
	max-width: 810px;
}

#purpose-who * {
	color: #fff;
}

#purpose-who .text {
	margin-bottom: 0;
}

#purpose-who .text p {
}

/* Servicos */
#services-who {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

#services-who .line {
	border-bottom: 1px dotted #9f9f9f;
	display: flex;
	align-items: center;
	padding-top: 3rem;
	padding-bottom: 3rem;
}

#services-who .service-name,
#services-who .list-type1 {
	margin-bottom: 0;
}

#services-who .service-name {
}

#services-who .service-name h3 {
	color: var(--cor5);
	font-size: 4.2rem;
}

#clients-wrapper {
	background-color: var(--cor4);
	padding-top: 30px;
	padding-bottom: 10px;
}

#clients-wrapper .logo {
	margin-bottom: 0;
}

#clients-wrapper img {
}

/* Slider Clientes */
.swiper.swiperClientes {
	mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.swiperClientes .swiper-wrapper {
	transition-timing-function: linear;
	align-items: center;
}

/* Individual slides */
.swiperClientes .swiper-slide {
	width: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/**
* 17 - ESTRUTURA DAS PAGINAS INTERNAS
* ----------------------------------------------------------------------------
*/

.content-wrapper.internas {
	/* margin-top: -60px; */
}

/* Page Title */
#page-title-wrapper {
	/* border-top: 1px dotted #9f9f9f; */
	padding: 7rem 0 6rem 0;
}

#page-title-wrapper .conteudo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

#page-title-wrapper h1 {
	margin: 0;
	flex: 1;
}

#page-title-wrapper .descricao-direita {
	flex: 1;
	font-size: 2rem;
	text-align: right;
}

/**
* 18 - BLOCOS QUE REPETEM / BLOCOS / WIDGETS
* ----------------------------------------------------------------------------
*/

/*** Faixa CTA **/
#faixa-cta {
	background-color: var(--cor5);
	border-radius: var(--radius-padrao);
	padding: 4rem 16rem;
	max-width: 1215px;
	margin: 0 auto;
	margin-top: 9rem;
	margin-bottom: 2.5rem;
}

#faixa-cta > .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper,
#faixa-cta .linha {
	display: flex;
	align-items: center;
	justify-content: space-around;
}

#faixa-cta .text {
	margin-bottom: 0;
}

#faixa-cta .text p {
	color: #fff;
	font-size: 3.2rem;
	margin-bottom: 0;
}

#faixa-cta .text p strong {
	color: #82edff;
	font-weight: 400;
}

#faixa-cta .cta {
	margin-bottom: 0;
	text-align: right;
}

#faixa-cta .cta p {
	margin-bottom: 0;
}

/**
* 19 - PAGINA - 404
* ----------------------------------------------------------------------------
*/

#pg-404 {
	padding: 120px 0 60px 0;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

#pg-404 .ops {
	background: var(--cor1);
	border-radius: 50px;
	border: 2px solid var(--cor1);
	color: #fff;
	display: inline-block;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 25px;
	padding: 6px 20px;
}

#pg-404 h1 {
	color: var(--cor1);
	margin-bottom: 45px;
}

#pg-404 h3 {
	font-size: 4rem;
	font-weight: 500;
	margin-bottom: 35px;
}

#pg-404 .cta a {
	text-decoration: none;
}

/**
* XX - RESPONSIVE FIXES
* ----------------------------------------------------------------------------
*/

/*
**********************************************
Standard Desktop Screen Size Stats Worldwide
**********************************************
1366x768  = 22.6%
1920x1080 = 20.87%
1536x864  = 8.52%
1440x900  = 6.97%
1280x720  = 4.81%
1600x900  = 4%
1024x768  = 2.59%

**********************************************
Mobile Screen Resolution Stats Worldwide
**********************************************
360 x 640 = 12.98%
414 x 896 = 7.82%
375 x 667 = 6.65%
360 x 780 = 6.02%
360 x 760 = 5.27%
375 x 812 = 5.15%

**********************************************
Tablet Screen Resolution Stats Worldwide
**********************************************
768 x 1024 = 6.11%
1280 x 800 = 7.38%
800 x 1280 = 5.9%
601 x 962 = 5.15%

*/

/**********************************************
Ate 1536px
**********************************************/
@media screen and (max-width: 1536px) {
}

/**********************************************
Ate 1440px
**********************************************/
@media screen and (max-width: 1440px) {
}

/**********************************************
Ate 1366px
**********************************************/
@media screen and (max-width: 1366px) {
	/* Elementos em Geral */
	html {
		font-size: 60.5%;
	}

	/* Header */
	
}

/**********************************************
Ate 1280px
**********************************************/
@media screen and (max-width: 1280px) {
	/* Elementos em Geral */
	html {
		font-size: 59%;
	}

	/* Helper Classes */
	.container {
        max-width: 1140px !important;
    }

	.container1012 {
		max-width: 100% !important;
	}

	/* Header */
	#header-wrapper {
		padding: 2rem;
	}

	/* Faixa Cta */
	#faixa-cta {
		padding: 4rem 6rem;
	}

	.content-wrapper.portfolio #faixa-cta {
		max-width: 1140px;
		width: 90%;
	}

}

/**********************************************
Ate 1279px
**********************************************/
@media screen and (max-width: 1279px) {
	/* Header */
	#midias {
		display: none;
	}

}

/**********************************************
Ate 1024px
**********************************************/
@media screen and (max-width: 1024px) {
	/* Elementos HTML em geral */
	html {
		font-size: 56%;
	}

	/* Helper Classes */
	.hidden-lg {
		display: none !important;
	}

	.visible-lg {
		display: block !important;
	}

	.container {
        max-width: 980px !important;
    }

	
}

/**********************************************
Fix para Ceular Deitado (Smartphone Landscape)
**********************************************/
@media screen and (max-width: 900px) {
}

/**********************************************
Ate 800px
**********************************************/
@media screen and (max-width: 800px) {
	/* Elementos em Geral */
	html {
		font-size: 54%;
	}

	h1 {
		font-size: 5rem;
	}

	h2 {
		/* font-size: 2.5rem; */
	}

	h3 {
		/* font-size: 2.2rem; */
	}

	h4 {
		/* font-size: 1.8rem; */
	}

	h5 {
		/* font-size: 1.6rem; */
	}

	h6 {
		/* font-size: 1.5rem; */
	}

	p,
	a,
	ul li,
	ol li {
		/* font-size: 1.9rem; */
		font-size: 2.5rem;

	}

	/* Helper Classes */
	.hidden-xs {
		display: none !important;
	}

	.visible-xs {
		display: block !important;
	}

	.container {
        max-width: 90% !important;
    }

	.cta a {
		font-size: 2.5rem;
	}

	.sub h2, .title h2 {
		line-height: 1.2;
	}

	.list-type1 ul li {
		font-size: 2.5rem;
	}

	.upper-title {
		margin-bottom: 20px !important;
	}

	.upper-title,
	.upper-title p {
		font-size: 2.5rem;
	}

	/* Formularios */
	.wpcf7 input[type='text'], .wpcf7 input[type='email'], .wpcf7 input[type='number'], .wpcf7 input[type='phone'], .wpcf7 textarea {
		font-size: 2.2rem;
	}

	.wpcf7 input[type='submit'], .wpcf7 button {
		font-size: 2.2rem;
	}

	/* Header */
	#header-wrapper {
		padding: 0;
	}

	#header-wrapper.header-scroll {
		height: 80px;
	}

	/* Footer */
	#footer * {
		font-size: 1.9rem;
	}

	#footer div[class^='coluna'] {
    	width: 100%;
	}

	#footer .coluna1 p {
		max-width: 100%;
	}

	#footer .footer-container .footer-content {
		flex-direction: column;
	}

	#footer .coluna1 p+p {
		margin-bottom: 0;
	}

	/* Pag - Home */
	#video-wrapper {
		margin-top: 0;
	}	

	#intro-wrapper h1 br {
		display: none;
	}

	#intro-wrapper .text p,
	#services-wrapper .text p,
	.depo-text {
		font-size: 2.5rem;
	}

	#portfolios-wrapper h2 br {
		display: none;
	}

	#testimonial-wrapper {
		padding-bottom: 4rem;
	}

	#testimonial-wrapper .sub {
		margin-bottom: 35px;
	}
	
	#contact-wrapper {
		padding: 4.5rem 5rem 1.5rem 5rem;
	}
	
	#contact-wrapper .col-left {
		padding-right: 0;
	}
	
	#contact-wrapper .text p {
		font-size: 2.2rem;
	}

	#contact-wrapper .vc_empty_space {
		display: none;
	}

	#contact-wrapper .col-left a {
		font-size: 2.5rem;
	}

	/* Estrutura das Paginas Internas */
	#page-title-wrapper {
		padding: 2rem 0 5rem 0;
	}

	#page-title-wrapper .conteudo {
		flex-direction: column;
    	align-items: flex-start;
	}

	.sub h2 br {
		display: none
	}

	/* Pag - Sobre Mim */
	#purpose-who {
		background: var(--cor1);
	}

	#purpose-who .col-left {
		max-width: 100%;
		padding-right: unset;
	}

	#services-who .line {
		flex-direction: column;
		gap: 3rem;
		padding-top: 0;
		padding-bottom: 0;
	}

	/* Faixa CTA */
	#faixa-cta > .vc_row > .wpb_column > .vc_column-inner > .wpb_wrapper, #faixa-cta .linha {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#faixa-cta .cta {
		margin-top: 3rem;
	}

	/* Pag - Blog */
	#page-title-wrapper .descricao-direita {
		text-align: left;
	}

	.blog-list {
		grid-template-columns: repeat(1, 1fr);
	}

	/* Single - Blog Post */
	article.single-blog {
		width: 100%;
		margin: 2rem auto 5rem auto;
	}

	.single-blog .post-content h3 {
		font-size: 3rem;
	}

	/* Pag - Contato */
	.page-id-37 #contact-wrapper {
		padding: 0;
		margin: 0;
		margin-top: 2rem;
	}

	/* Single - Portfolio */
	.container.port-images {
		max-width: 100% !important;
	}

	.portfolio-images {
		margin-top: 3rem;
	}
	

	
}

/**********************************************
Ate 480px
**********************************************/
@media screen and (max-width: 480px) {

}
