/* =========================================
   NOVAS SEÇÕES - ESTILO MAGAZINE
   ========================================= */

/* =========================================
   RESET E FONTES
   ========================================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Fontes do Site - Roboto */
body {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
	font-weight: 400;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-weight: 700;
	line-height: 1.2;
}

/* Cores da Marca */
:root {
	--color-blue: #264566;
	--color-red: #e11f30;
	--color-green: #0f7c3a;
	--color-white: #ffffff;
	--color-bg-light: #f4f6f8;
}

/* Container mais largo */
.site-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
	background-color: #2f3c50;
	padding: 15px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 1000;
	transition: background 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	overflow: hidden;
}

/* Faixa de cores no canto esquerdo */
.site-header::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 18px;
	background: linear-gradient(to right, #0f7c3a 0%, #0f7c3a 33.33%, #ffffff 33.33%, #ffffff 66.66%, #e11f30 66.66%, #e11f30 100%);
	z-index: 0;
	pointer-events: none;
}

/* Header transparente quando está na hero section */
.site-header.in-hero {
	background-color: transparent;
}



.header-container {
	position: relative;
	z-index: 1;
	max-width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

/* Menu Hamburger (Direita) */
.menu-toggle {
	position: absolute;
	left: 60px;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: opacity 0.3s;
	z-index: 2;
	margin-top: 6px;
}

.menu-toggle:hover {
	opacity: 0.8;
}

.menu-text {
	color: var(--color-white);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Roboto', sans-serif;
}

.hamburger-menu {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	position: relative;
	width: 38px;
	height: 30px;
	justify-content: center;
	align-items: center;
}

.hamburger-menu span {
	display: block;
	width: 38px;
	height: 2.5px;
	background-color: var(--color-white);
	transition: all 0.3s ease;
	border-radius: 1px;
	position: absolute;
	left: 0;
	transform-origin: center;
}

.hamburger-menu span:nth-child(1) {
	top: 7px;
}

.hamburger-menu span:nth-child(2) {
	top: 13.75px;
}

.hamburger-menu span:nth-child(3) {
	top: 20.5px;
}

/* Hover: Transforma em + */
.hamburger-menu:hover span:nth-child(1) {
	transform: rotate(90deg);
	top: 13.75px;
	left: 0;
	width: 38px;
	height: 2.5px;
}

.hamburger-menu:hover span:nth-child(2) {
	opacity: 1;
	transform: rotate(0deg);
	top: 13.75px;
	left: 0;
	width: 38px;
	height: 2.5px;
}

.hamburger-menu:hover span:nth-child(3) {
	opacity: 0;
	transform: none;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
	top: 13.75px;
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(10px, -10px);
	top: 13.75px;
}

/* Quando está ativo, não mostrar o hover */
.hamburger-menu.active:hover span:nth-child(1),
.hamburger-menu.active:hover span:nth-child(3) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active:hover span:nth-child(2) {
	opacity: 0;
}

/* Logo Central */
.site-branding {
	position: relative;
	flex: 0 1 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.site-logo-link {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo-img {
	max-height: 38px;
	width: auto;
	height: auto;
	display: block;
	transition: transform 0.3s;
}

.logo-img:hover {
	transform: scale(1.05);
}

/* Botões Header (Direita) */
.header-buttons {
	display: flex;
	gap: 12px;
	align-items: center;
}

.header-btn {
	padding: 10px 20px;
	border-radius: 0;
	background-color: rgba(255, 255, 255, 0.15);
	color: var(--color-white);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	font-family: 'Roboto', sans-serif;
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.header-btn:hover {
	background-color: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.4);
	color: var(--color-white);
}

/* Side Menu */
.side-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 33.333%;
	min-width: 350px;
	max-width: 500px;
	height: 100vh;
	background-color: rgba(38, 69, 102, 0.85);
	z-index: 9999;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	overflow-y: auto;
	overflow-x: hidden;
	box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
	display: flex;
	flex-direction: column;
	-webkit-overflow-scrolling: touch;
}

/* Estilo da barra de rolagem */
.side-menu::-webkit-scrollbar {
	width: 8px;
}

.side-menu::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

.side-menu::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.3);
	border-radius: 4px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.5);
}

.side-menu::before {
	content: 'SOBRE A IVE TINTAS RJ';
	position: absolute;
	bottom: 80px;
	left: 30px;
	right: 30px;
	font-size: 100px;
	font-weight: 900;
	color: rgba(30, 55, 82, 0.2);
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 1.1;
	white-space: normal;
	word-wrap: break-word;
	pointer-events: none;
	z-index: 0;
	opacity: 0.3;
}

.side-menu.active {
	transform: translateX(0);
}

/* Ocultar header quando o side menu estiver aberto */
body.side-menu-open .site-header {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* Side Menu Header */
.side-menu-header {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 10;
	padding: 30px 30px 20px;
}

.side-menu-header .side-menu-close {
	align-self: flex-end;
	margin-bottom: 20px;
}

.side-menu-logo {
	margin-top: 0;
}

.side-menu-logo {
	display: flex;
	align-items: center;
}

.side-logo-img {
	max-height: 60px;
	width: auto;
	height: auto;
}

.side-menu-close {
	background: none;
	border: none;
	color: var(--color-white);
	cursor: pointer;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s ease;
	padding: 0;
	position: relative;
}

.side-menu-close:hover {
	opacity: 0.7;
}

.side-menu-close span {
	display: block;
	width: 30px;
	height: 1px;
	background-color: var(--color-white);
	position: absolute;
	transition: all 0.3s ease;
}

.side-menu-close span:nth-child(1) {
	transform: rotate(45deg);
}

.side-menu-close span:nth-child(2) {
	transform: rotate(-45deg);
}

/* Side Menu Content */
.side-menu-content {
	padding: 20px 30px;
	flex: 1;
	position: relative;
	z-index: 10;
	min-height: 0;
	display: block;
	overflow-y: auto;
}

.side-menu-list,
.side-menu-content ul,
#primary-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex !important;
	flex-direction: column;
	width: 100%;
}

.side-menu-list li,
.side-menu-content ul li,
#primary-menu li {
	margin: 0;
}

.side-menu-list a,
.side-menu-content ul a,
#primary-menu a {
	color: var(--color-white);
	text-decoration: none;
	font-weight: 400;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	padding: 14px 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	position: relative;
}

.side-menu-list a::after,
.side-menu-content ul a::after,
#primary-menu a::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 30px;
	width: 0;
	height: 2px;
	background-color: var(--color-white);
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
}

.side-menu-list a.active,
.side-menu-content ul a:hover,
#primary-menu a:hover,
#primary-menu .current-menu-item > a,
#primary-menu .current_page_item > a {
	color: var(--color-white);
}

.side-menu-list a.active::after,
.side-menu-content ul a:hover::after,
#primary-menu a:hover::after,
#primary-menu .current-menu-item > a::after,
#primary-menu .current_page_item > a::after {
	width: calc(100% - 60px);
	opacity: 1;
}

/* Não sublinhar a seta no hover */
.side-menu-content .menu-item-has-children > a:hover::after,
#primary-menu .menu-item-has-children > a:hover::after {
	text-decoration: none;
}

.side-menu-list a .arrow,
.side-menu-content .menu-item-has-children > a::after,
#primary-menu .menu-item-has-children > a::after {
	display: none;
}

.side-menu-content .menu-item-has-children > a .wa-icon,
#primary-menu .menu-item-has-children > a .wa-icon {
	display: inline-block;
	margin-left: 10px;
	font-size: 12px;
	color: var(--color-white);
	transition: transform 0.3s ease;
	opacity: 0.8;
	vertical-align: middle;
}

/* Submenus */
.side-menu-content .sub-menu,
#primary-menu .sub-menu {
	display: none !important;
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: rgba(0, 0, 0, 0.1);
}

.side-menu-content .menu-item-has-children.open > .sub-menu,
#primary-menu .menu-item-has-children.open > .sub-menu {
	display: block !important;
}

.side-menu-content .menu-item-has-children.open > a .wa-icon,
#primary-menu .menu-item-has-children.open > a .wa-icon {
	transform: rotate(90deg);
	opacity: 1;
}

/* Não sublinhar o ícone no hover */
.side-menu-content .menu-item-has-children > a:hover .wa-icon,
#primary-menu .menu-item-has-children > a:hover .wa-icon {
	text-decoration: none;
}

.side-menu-content .sub-menu li,
#primary-menu .sub-menu li {
	margin: 0;
}

.side-menu-content .sub-menu a,
#primary-menu .sub-menu a {
	padding: 12px 30px 12px 50px;
	font-size: 14px;
	letter-spacing: 0.5px;
}

.side-menu-content .menu-item-has-children > a,
#primary-menu .menu-item-has-children > a {
	cursor: pointer;
	position: relative;
}

/* Responsivo */
@media (max-width: 1024px) {
	.side-menu {
		width: 50%;
		min-width: 300px;
	}
	
	.side-menu::before {
		font-size: 80px;
	}
}

@media (max-width: 768px) {
	.side-menu {
		width: 100%;
		max-width: 100vw;
		min-width: 100%;
	}
	
	.side-menu::before {
		font-size: 60px;
		bottom: 50px;
	}
	
	.side-menu-list a,
	.side-menu-content ul a,
	#primary-menu a {
		font-size: 14px;
		padding: 12px 25px;
	}
	
	.side-menu-content .sub-menu a,
	#primary-menu .sub-menu a {
		padding: 10px 25px 10px 40px;
		font-size: 13px;
	}
}

/* Ajuste do body quando header é fixo */
body {
	padding-top: 70px;
}

/* Ajuste para hero section quando header é fixo */
.section-hero-cores {
	margin-top: -70px;
	padding-top: 70px;
}

/* Utilitários */
.btn-main {
	display: inline-block;
	background-color: var(--color-green);
	color: var(--color-white);
	padding: 12px 30px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid var(--color-green);
}
.btn-main:hover {
	background-color: var(--color-blue);
	border-color: var(--color-blue);
	transform: translateY(-2px);
}

.btn-outline {
	display: inline-block;
	border: 2px solid var(--color-blue);
	padding: 10px 25px;
	border-radius: 0;
	text-decoration: none;
	color: var(--color-blue);
	font-weight: 600;
	transition: all 0.3s ease;
	font-size: 14px;
}
.btn-outline:hover {
	background-color: var(--color-blue);
	color: var(--color-white);
}

/* --- Seção Sobre - Cores à Vida --- */
/* --- Seção Divisor --- */
.section-divisor {
	display: grid;
	grid-template-columns: 1fr 1fr;
	height: 10vh;
	width: 100%;
	overflow: hidden;
	position: relative;
	margin-top: -3%;
}

.divisor-col {
	width: 100%;
	height: 100%;
}

.divisor-col-black {
	background-color: #fdfeff;
	clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
	z-index: 15;
}

.divisor-col-transparent {
	background-color: transparet;
}

.section-sobre-cores {
	padding: 50px 0;
	background: radial-gradient(circle at 80% 50%, rgba(240, 248, 255, 0.8) 0%, rgba(255, 255, 255, 1) 60%);
	overflow: hidden;
	position: relative;
}

/* Elemento decorativo de fundo */
.section-sobre-cores::before {
	content: '';
	position: absolute;
	top: -10%;
	right: -10%;
	width: 50%;
	height: 120%;
	background: radial-gradient(circle, rgba(34, 139, 34, 0.03) 0%, transparent 70%);
	z-index: 0;
	pointer-events: none;
}

/* Formas decorativas no background */
.decorative-shapes-sobre {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.floating-shape-sobre {
	position: absolute;
	background: linear-gradient(135deg, rgba(100, 100, 100, 0.03) 0%, rgba(100, 100, 100, 0.01) 100%);
	border-radius: 50%;
	animation: floatSobre 10s ease-in-out infinite;
	backdrop-filter: blur(50px);
	border: none;
}

.floating-shape-sobre:nth-child(1) {
	width: 350px;
	height: 350px;
	top: 10%;
	left: 5%;
	animation-delay: 0s;
}

.floating-shape-sobre:nth-child(2) {
	width: 300px;
	height: 300px;
	top: 60%;
	right: 8%;
	animation-delay: 3s;
}

.floating-shape-sobre:nth-child(3) {
	width: 320px;
	height: 320px;
	bottom: 20%;
	left: 12%;
	animation-delay: 6s;
}

.image-cutout {
	position: absolute;
	width: 180px;
	height: 180px;
	overflow: hidden;
	border: none;
	transform: rotate(15deg);
	z-index: 10;
}

.image-cutout img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-cutout-1 {
	top: 15%;
	right: 20%;
	transform: rotate(15deg);
}

.image-cutout-2 {
	top: 35%;
	right: 10%;
	transform: rotate(-12deg);
}

.image-cutout-3 {
	top: 55%;
	right: 25%;
	transform: rotate(20deg);
}

.image-cutout-4 {
	bottom: 25%;
	right: 15%;
	transform: rotate(-18deg);
}

.image-cutout-5 {
	bottom: 15%;
	right: 30%;
	transform: rotate(10deg);
}

@keyframes floatSobre {
	0%, 100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

@keyframes rotateSobre {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes floatCutout {
	0%, 100% {
		transform: translateY(0px) rotate(var(--cutout-rotation, 15deg));
	}
	50% {
		transform: translateY(-15px) rotate(var(--cutout-rotation, 15deg));
	}
}

.sobre-cores-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

/* Coluna Texto */
.cores-vida-section {
	margin-bottom: 60px;
}

.section-header-line {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.line-red {
	width: 60px;
	height: 2px;
	background-color: var(--color-green);
}

.label-text {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #333;
	font-weight: 500;
}

.section-description-cores {
	font-size: 32px;
	line-height: 1.4;
	color: #333;
	font-weight: 300;
	font-family: 'Roboto', sans-serif;
}

.section-description-cores .highlight {
	color: var(--color-green);
	font-weight: 700;
}

/* Bloco Sobre a IVE */
.section-title-sobre {
	font-size: 24px;
	color: var(--color-green);
	margin-bottom: 20px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
}

.section-text-sobre {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 30px;
	max-width: 500px;
}

.btn-conheca-ive {
	color: var(--color-green);
	font-weight: 700;
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-conheca-ive:hover {
	color: var(--color-blue);
}

.btn-conheca-ive .arrow-right {
	font-size: 16px;
}

/* --- Seção LECHLER TECH --- */
.section-lechler-tech {
	padding: 0;
	background-color: #fff;
}

.lechler-tech-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 100%;
	margin: 0;
	min-height: 500px;
}

/* Coluna Esquerda: Visual */
.lechler-tech-visual {
	position: relative;
	overflow: hidden;
}

.lechler-visual-bg {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

/* Overlay removido - apenas imagem de fundo */

/* Coluna Direita: Conteúdo */
.lechler-tech-content {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 60px;
}

.lechler-content-box {
	width: 100%;
	max-width: 500px;
}

.lechler-tech-title {
	color: var(--color-red);
	font-size: 48px;
	font-weight: 900;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Roboto', sans-serif;
}

.lechler-tech-description {
	color: #333;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 40px 0;
	font-weight: 400;
}

.btn-lechler-saiba-mais {
	color: var(--color-red);
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-lechler-saiba-mais:hover {
	color: var(--color-blue);
}

.btn-lechler-saiba-mais .arrow-right {
	font-size: 18px;
	font-weight: 700;
}

/* Imagem Flor */
.sobre-cores-image {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 1;
}

.flor-colorida-img {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	position: relative;
	z-index: 1;
	transition: transform 0.5s ease;
}

.sobre-cores-image:hover .flor-colorida-img {
	transform: scale(1.1);
}

/* --- Seção Segmentos --- */
.section-segmentos {
	padding: 80px 0;
	background-color: #fff;
}

.section-segmentos .section-header-line {
	margin-bottom: 50px;
	justify-content: flex-end;
}

.section-segmentos .line-red {
	background-color: #0f7c3a;
}

.section-segmentos .label-text {
	color: #4f4f4f;
	font-size: 16px;
}

.segmentos-grid-layout {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.segmento-item {
	position: relative;
	overflow: visible;
	display: flex;
	flex-direction: column;
	cursor: pointer;
	border-radius: 0;
}

.segmento-img-container {
	width: 100%;
	height: 500px;
	margin: 0;
	overflow: hidden;
	position: relative;
	border-radius: 0;
}

.segmento-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.segmento-item:hover .segmento-img {
	transform: scale(1.1);
}

/* Overlay no hover */
.segmento-img-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.segmento-item:hover .segmento-img-container::after {
	opacity: 1;
}

.segmento-item-title {
	position: absolute;
	bottom: -15px;
	left: 20px;
	z-index: 3;
	background-color: #1d2327;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	padding: 12px 24px;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 0;
	box-shadow: none;
	transition: all 0.3s ease;
}

.segmento-item:hover .segmento-item-title {
	bottom: auto;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: transparent;
	padding: 0;
	font-size: 28px;
	margin: 0;
	margin-bottom: 20px;
	z-index: 2;
	white-space: nowrap;
}

.segmento-item-desc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
	opacity: 0;
	z-index: 2;
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	padding: 0 30px;
	text-align: center;
	width: 100%;
	max-width: 400px;
	transition: opacity 0.3s ease;
	pointer-events: none;
	display: block;
}

.segmento-item:hover .segmento-item-desc {
	opacity: 1;
}

/* --- Seção IVE --- */
.section-ive {
	padding: 0;
	background-color: #fff;
}

.ive-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 100%;
	margin: 0;
	min-height: 500px;
}

/* Coluna Esquerda: Visual */
.ive-visual {
	position: relative;
	overflow: hidden;
}

.ive-visual-bg {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

/* Coluna Direita: Conteúdo */
.ive-content {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 60px;
}

.ive-content-box {
	width: 100%;
	max-width: 500px;
}

.ive-title {
	color: #000;
	font-size: 72px;
	font-weight: 900;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Roboto', sans-serif;
	line-height: 1;
}

.ive-description {
	color: #000;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 40px 0;
	font-weight: 400;
}

.btn-ive-saiba-mais {
	color: #000;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-ive-saiba-mais:hover {
	color: #333;
}

.btn-ive-saiba-mais .arrow-right {
	font-size: 18px;
	font-weight: 700;
}

/* --- Seção CTA Inovação --- */
.section-cta-inovacao {
	position: relative;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center 20%;
	background-repeat: no-repeat;
	min-height: 600px;
	display: flex;
	align-items: center;
	overflow: hidden;
}

/* Overlay geral para escurecer imagem */
.section-cta-inovacao::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.cta-inovacao-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 40px;
	z-index: 2;
}

.cta-content-wrapper {
	position: relative;
	z-index: 2;
	width: 50%;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	padding: 50px;
	background: rgba(26, 107, 54, 0.9); /* Verde translúcido */
	backdrop-filter: blur(5px);
	border-radius: 4px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-content-box {
	width: 100%;
	margin-bottom: 20px;
	background: transparent;
	padding: 0;
}

.cta-title {
	color: #fff;
	font-size: 52px;
	font-weight: 900;
	margin: 0 0 15px 0;
	text-transform: uppercase;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-description {
	color: #f0f0f0;
	font-size: 18px;
	font-weight: 400;
	margin-bottom: 35px;
	text-align: left;
	max-width: 100%;
	line-height: 1.6;
}

.btn-cta-green {
	background-color: #fff;
	color: #1a6b36;
	padding: 18px 45px;
	font-size: 16px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.3s ease;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	display: inline-block;
}

.btn-cta-green:hover {
	background-color: #1a1a1a;
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* --- Seção Mapa --- */
/* ============================================
   SEÇÃO CTA CONTATO
   ============================================ */

.section-cta-contato {
	padding: 100px 0;
	background-image: url('/wp-content/uploads/2025/08/122580494_393652995346950_438632185580112524_n-1.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.section-cta-contato::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1d2327;
	opacity: 0.85;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 1;
}

.cta-contato-content {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 2;
}

.cta-contato-title {
	font-size: 56px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 25px;
	line-height: 1.2;
}

.cta-contato-description {
	font-size: 20px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 50px;
}

.cta-contato-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

.btn-cta-primary,
.btn-cta-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.btn-cta-primary {
	background: #ffffff;
	color: #264566;
	border: 2px solid #ffffff;
}

.btn-cta-primary:hover {
	background: transparent;
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-cta-whatsapp {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.btn-cta-whatsapp:hover {
	background: #ffffff;
	color: #264566;
	transform: translateY(-2px);
}

.btn-cta-primary i,
.btn-cta-whatsapp i {
	font-size: 18px;
}


@media (max-width: 968px) {
	.cta-contato-title {
		font-size: 42px;
	}

	.cta-contato-description {
		font-size: 18px;
	}
}

@media (max-width: 768px) {
	.section-cta-contato {
		padding: 80px 0;
	}

	.cta-contato-title {
		font-size: 36px;
	}

	.cta-contato-description {
		font-size: 16px;
	}

	.cta-contato-buttons {
		flex-direction: column;
	}

	.btn-cta-primary,
	.btn-cta-whatsapp {
		width: 100%;
		justify-content: center;
	}
}

/* ============================================
   SEÇÃO BLOG (Carrossel - Layout similar à IVE)
   ============================================ */

.section-blog-ive {
	padding: 0;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.blog-ive-carousel-wrapper {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.blog-ive-carousel-track {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
}

.blog-ive-slide {
	min-width: 100%;
	width: 100%;
	flex-shrink: 0;
	box-sizing: border-box;
}

.blog-ive-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	max-width: 100%;
	margin: 0;
	min-height: 500px;
}

/* Coluna Esquerda: Imagem Ponta a Ponta */
.blog-ive-visual {
	position: relative;
	overflow: hidden;
}

.blog-ive-visual-bg {
	width: 100%;
	height: 100%;
	min-height: 500px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

/* Coluna Direita: Conteúdo */
.blog-ive-content {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	padding: 60px;
}

.blog-ive-content-box {
	width: 100%;
	max-width: 500px;
}

.blog-ive-title {
	color: #000;
	font-size: 72px;
	font-weight: 900;
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: 'Roboto', sans-serif;
	line-height: 1;
}

.blog-ive-description {
	color: #000;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 40px 0;
	font-weight: 400;
}

.btn-blog-saiba-mais {
	color: #000;
	font-weight: 700;
	text-decoration: none;
	font-size: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-blog-saiba-mais:hover {
	color: #333;
}

.btn-blog-saiba-mais .arrow-right {
	font-size: 18px;
	font-weight: 700;
}

/* Botões de Navegação do Carrossel Blog */
.blog-ive-prev,
.blog-ive-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.9);
	color: #000;
	border: 2px solid rgba(0, 0, 0, 0.1);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 10;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-ive-prev {
	left: 20px;
}

.blog-ive-next {
	right: 20px;
}

.blog-ive-prev:hover,
.blog-ive-next:hover {
	background: #000;
	color: #fff;
	border-color: #000;
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Dots de Navegação do Carrossel Blog */
.blog-ive-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.blog-ive-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.3);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
}

.blog-ive-dot.active {
	background: #000;
	border-color: #000;
	transform: scale(1.2);
}

.blog-ive-dot:hover {
	background: rgba(0, 0, 0, 0.7);
	border-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 1024px) {
	.blog-ive-container {
		grid-template-columns: 1fr;
	}

	.blog-ive-visual-bg {
		min-height: 400px;
	}

	.blog-ive-title {
		font-size: 52px;
	}
}

@media (max-width: 768px) {
	.blog-ive-carousel-wrapper {
		padding: 0;
		margin: 0;
		width: 100vw;
		overflow: hidden;
	}

	.blog-ive-carousel-track {
		width: 100%;
	}

	.blog-ive-slide {
		min-width: 100%;
		width: 100%;
		flex-shrink: 0;
	}

	.blog-ive-container {
		min-height: auto;
		grid-template-columns: 1fr;
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.blog-ive-content {
		padding: 40px 20px;
	}

	.blog-ive-title {
		font-size: 36px;
		margin-bottom: 20px;
	}

	.blog-ive-description {
		font-size: 14px;
		margin-bottom: 30px;
	}

	.blog-ive-visual-bg {
		min-height: 300px;
	}

	.blog-ive-prev,
	.blog-ive-next {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}

	.blog-ive-prev {
		left: 10px;
	}

	.blog-ive-next {
		right: 10px;
	}

	.blog-ive-dots {
		bottom: 20px;
		gap: 8px;
	}

	.blog-ive-dot {
		width: 10px;
		height: 10px;
	}
}

.section-mapa {
	position: relative;
	width: 100%;
	height: 450px;
	background-color: #f0f0f0;
}

.mapa-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.mapa-container iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(0%);
}

/* Box flutuante com endereço */
.mapa-info-overlay {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	background-color: #fff;
	padding: 40px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	border-radius: 4px;
	max-width: 350px;
	z-index: 10;
	border-left: 5px solid var(--color-red);
}

.mapa-title {
	font-size: 24px;
	font-weight: 800;
	color: #000;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.mapa-address {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 25px;
}

.btn-rota {
	display: inline-block;
	background-color: var(--color-red);
	color: #fff;
	padding: 12px 25px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 0.3s;
}

.btn-rota:hover {
	background-color: var(--color-blue);
	color: #fff;
}

/* Media Queries para as novas seções */
@media (max-width: 1024px) {
	.sobre-cores-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}
	
	.section-header-line {
		justify-content: center;
	}
	
	.section-text-sobre {
		margin: 0 auto 30px;
	}
	
	.segmentos-grid-layout {
		grid-template-columns: repeat(2, 1fr);
	}
	
	/* Responsivo LECHLER TECH */
	.lechler-tech-container {
		grid-template-columns: 1fr;
	}
	
	.lechler-visual-bg {
		min-height: 400px;
	}
	
	.lechler-tech-title {
		font-size: 36px;
	}
	
	/* Responsivo IVE */
	.ive-container {
		grid-template-columns: 1fr;
	}
	
	/* Responsivo Mapa */
	.mapa-info-overlay {
		left: 50%;
		transform: translate(-50%, -50%);
		width: 90%;
	}
	
	.ive-visual-bg {
		min-height: 400px;
	}
	
	.ive-title {
		font-size: 52px;
	}
}

@media (max-width: 768px) {
	.section-description-cores {
		font-size: 24px;
	}
	
	.segmentos-grid-layout {
		grid-template-columns: 1fr;
	}
	
	/* Responsivo LECHLER TECH Mobile */
	.lechler-tech-content {
		padding: 40px 20px;
	}
	
	.lechler-tech-title {
		font-size: 32px;
	}
	
	/* Responsivo IVE Mobile */
	.ive-content {
		padding: 40px 20px;
	}
	
	.ive-title {
		font-size: 48px;
	}
	
	/* Responsivo Mapa Mobile */
	.mapa-info-overlay {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		box-shadow: none;
		border-left: none;
		border-top: 5px solid var(--color-red);
	}
	
	.section-mapa {
		height: auto;
		display: flex;
		flex-direction: column-reverse;
	}
	
	.mapa-container iframe {
		height: 300px;
	}
	
	/* Responsivo CTA */
	.section-cta-inovacao {
		flex-direction: column;
		height: auto;
		justify-content: center;
		min-height: 400px;
	}
	
	.cta-content-wrapper {
		width: 100%;
		padding: 60px 20px;
		background-color: rgba(0, 0, 0, 0.4); /* Fundo escuro para legibilidade no mobile */
	}
	
	.cta-title {
		font-size: 32px;
	}
}

.placeholder-bg {
	background-color: var(--color-bg-light);
	width: 100%;
	height: 100%;
	border-radius: 12px;
	position: relative;
	border: 1px solid #e0e0e0;
}
.placeholder-bg::after {
	content: '';
	/* Ícone ou imagem de fundo opcional */
}

/* --- Hero Magazine --- */
.section-hero-magazine {
	padding: 80px 0;
	background-color: var(--color-white);
}

.hero-magazine-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 60px;
	align-items: center;
}

.hero-title-mag {
	font-size: 56px;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--color-blue);
	font-weight: 800;
}

.hero-title-mag .highlight {
	color: var(--color-red);
	font-style: normal;
	position: relative;
}
/* Sublinhado estilizado no destaque */
.hero-title-mag .highlight::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 8px;
	background-color: rgba(15, 124, 58, 0.2); /* Verde transparente */
	z-index: -1;
}

.hero-desc-mag {
	font-size: 18px;
	color: #555;
	margin-bottom: 35px;
	max-width: 90%;
	line-height: 1.6;
}

.hero-images-grid {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 500px;
}

.img-box {
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--color-bg-light);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.img-hero-main {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

/* --- Products (Grid) --- */
.section-products-grid {
	padding: 80px 0;
	background-color: #fafafa;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--color-blue);
}

.filter-link {
	text-decoration: none;
	color: #777;
	font-weight: 600;
	font-size: 15px;
	padding-bottom: 5px;
	transition: all 0.3s;
}
.filter-link.active, .filter-link:hover {
	color: var(--color-red);
	border-bottom: 2px solid var(--color-red);
}

.product-card {
	display: flex;
	flex-direction: column;
	gap: 15px;
	transition: transform 0.3s;
}
.product-card:hover {
	transform: translateY(-5px);
}

.card-info h3 {
	font-size: 18px;
	margin: 5px 0 2px;
	color: var(--color-blue);
}

/* --- Blog (Mixed Layout) --- */
.section-blog-news {
	padding: 80px 0;
}

.category-tag {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--color-red);
	font-weight: 700;
}

.featured-content h3 {
	font-size: 28px;
	margin: 10px 0;
	color: var(--color-blue);
}

.side-content h4 {
	font-size: 16px;
	margin: 5px 0;
	color: var(--color-blue);
	font-weight: 600;
}

/* --- Highlights (3 Cols) --- */
.section-highlights {
	padding: 80px 0;
	background-color: var(--color-bg-light);
}

.rating {
	color: #FFD700;
	font-size: 16px;
	margin-bottom: 10px;
}

.play-icon {
	background: var(--color-red);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	box-shadow: 0 5px 15px rgba(225, 31, 48, 0.4);
	transition: transform 0.3s;
}
.video-box:hover .play-icon {
	transform: scale(1.1);
}

/* --- Newsletter --- */
.section-newsletter {
	background-color: var(--color-blue);
	padding: 100px 20px;
	text-align: center;
	color: var(--color-white);
}

.newsletter-form button {
	padding: 12px 35px;
	background-color: var(--color-red);
	color: #fff;
	border: none;
	border-radius: 0;
	cursor: pointer;
	font-weight: 700;
	transition: background 0.3s;
}
.newsletter-form button:hover {
	background-color: #c01525;
}

.disclaimer {
	font-size: 12px;
	opacity: 0.8;
}

/* Responsividade Básica das Novas Seções */
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.highlights-grid {
		grid-template-columns: 1fr;
	}
	.highlight-col-image {
		order: -1;
	}
}

@media (max-width: 768px) {
	.hero-magazine-grid,
	.news-grid-layout {
		grid-template-columns: 1fr;
	}
	
	.hero-images-grid {
		height: 300px;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.section-filters {
		overflow-x: auto;
		width: 100%;
		padding-bottom: 10px;
	}

	.newsletter-form {
		flex-direction: column;
	}
}

/* =========================================
   ESTILO ITALY TINTAS - NOVAS SEÇÕES
   ========================================= */

/* Hero Section - Carrossel de imagens */
.section-hero-cores {
	position: relative;
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.section-hero-cores .site-container {
	position: relative;
	z-index: 10;
}

/* Carrossel de imagens */
.hero-carousel {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
	opacity: 1;
	z-index: 1;
}

.hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Filtro cinza sobre as imagens */
.hero-overlay-filter {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(60, 60, 60, 0.7) 0%, rgba(80, 80, 80, 0.6) 50%, rgba(60, 60, 60, 0.7) 100%);
	z-index: 2;
	pointer-events: none;
}

/* Texto de fundo removido */

.hero-cores-content {
	position: relative;
	z-index: 10;
	max-width: 1200px;
	padding-left: 40px;
	padding-right: 40px;
	color: var(--color-white);
}

.hero-brand-title {
	font-size: 68px;
	font-weight: 900;
	font-family: 'Roboto', sans-serif;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.hero-title-cores {
	font-size: 52px;
	line-height: 1.25;
	color: var(--color-white);
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 30px;
	letter-spacing: -0.5px;
}

.hero-description-cores {
	font-size: 19px;
	color: rgba(255, 255, 255, 0.95);
	line-height: 1.8;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 45px;
	max-width: 650px;
}

/* Botão com gradiente verde */
.btn-hero-cta {
	display: inline-block;
	background: linear-gradient(90deg, #0f7c3a 0%, #15a052 100%);
	color: var(--color-white);
	padding: 18px 45px;
	border-radius: 0;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(15, 124, 58, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-hero-cta::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn-hero-cta:hover::before {
	left: 100%;
}

.btn-hero-cta:hover {
	background: linear-gradient(90deg, #15a052 0%, #0f7c3a 100%);
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(15, 124, 58, 0.4);
	color: var(--color-white);
}

.btn-hero-cta span {
	position: relative;
	z-index: 1;
}

/* Seção Sobre */
.section-sobre {
	padding: 80px 0;
	background-color: #fafafa;
}

.sobre-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.section-label {
	display: block;
	font-size: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--color-red);
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 25px;
}

.section-title-main {
	font-size: 36px;
	line-height: 1.4;
	color: var(--color-blue);
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 25px;
}

.section-text {
	font-size: 18px;
	color: #555;
	line-height: 1.7;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 35px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

/* Seção Segmentos */
.section-segmentos {
	padding: 80px 0;
	background-color: var(--color-white);
}

.segmentos-header {
	text-align: center;
	margin-bottom: 60px;
}

.segmentos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

.segmento-card {
	padding: 40px 35px;
	background-color: #fafafa;
	border-radius: 12px;
	border: 1px solid #e0e0e0;
	transition: all 0.3s ease;
	min-height: 280px;
	display: flex;
	flex-direction: column;
}

.segmento-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	border-color: var(--color-green);
}

.segmento-label {
	display: block;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--color-red);
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 15px;
}

.segmento-title {
	font-size: 22px;
	line-height: 1.5;
	color: var(--color-blue);
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
	flex-grow: 1;
}

.btn-segmento {
	display: inline-block;
	color: var(--color-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	align-self: flex-start;
	transition: color 0.3s;
}

.btn-segmento:hover {
	color: var(--color-blue);
}

/* Seção Blog */
.section-blog-italy {
	padding: 80px 0;
	background-color: #fafafa;
}

.blog-italy-header {
	text-align: center;
	margin-bottom: 60px;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-post-card {
	background-color: var(--color-white);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s;
}

.blog-post-card:hover {
	transform: translateY(-5px);
}

.blog-post-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.blog-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-post-content {
	padding: 25px;
}

.blog-post-title {
	font-size: 20px;
	color: var(--color-blue);
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 15px;
	line-height: 1.3;
}

.blog-post-excerpt {
	font-size: 15px;
	color: #666;
	line-height: 1.6;
	font-family: 'Roboto', sans-serif;
	margin-bottom: 20px;
}

.blog-post-link {
	color: var(--color-green);
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
}

.blog-post-link:hover {
	color: var(--color-blue);
}

/* Seção Clientes */
.section-clientes {
	padding: 80px 0;
	background-color: var(--color-white);
}

.clientes-content {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.clientes-text {
	font-size: 18px;
	color: #555;
	line-height: 1.8;
	font-family: 'Roboto', sans-serif;
	margin-top: 25px;
}

/* Footer Estilo Italy */
/* Footer - Linha decorativa no topo (Bandeira italiana com gradientes) */
.footer-top-stripe {
	height: 9px;
	background: linear-gradient(
		to right,
		#0f7c3a 0%,
		#28a55f 25%,
		#6bc191 30%,
		#a8dcc3 32%,
		#ffffff 33%,
		#ffffff 34%,
		#ffffff 65%,
		#ffffff 66%,
		#ffb3c1 68%,
		#ff7d96 70%,
		#e11f30 75%,
		#b8001a 100%
	);
	width: 100%;
}

.site-footer {
	background-color: #000000;
	padding: 60px 0 0;
}

.footer-content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.footer-col {
	display: flex;
	flex-direction: column;
}

/* Coluna 1: Logo e Descrição */
.footer-logo-container {
	margin-bottom: 20px;
}

.footer-logo-img {
	max-width: 200px;
	height: auto;
	margin-bottom: 20px;
}

.footer-description {
	color: var(--color-white);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
}

/* Títulos das colunas */
.footer-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color-white);
	margin-bottom: 20px;
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Menus */
.footer-menu-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-menu-list li {
	margin-bottom: 12px;
}

.footer-menu-list a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 15px;
	font-family: 'Roboto', sans-serif;
	transition: opacity 0.3s;
	display: block;
}

.footer-menu-list a:hover {
	opacity: 0.8;
}

/* Esconder submenus no footer */
.footer-menu-list .sub-menu,
.footer-menu-list .menu-item-has-children .sub-menu {
	display: none !important;
}

/* Coluna 4: Logos dos Parceiros */
.footer-social-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-social-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	font-family: 'Roboto', sans-serif;
	transition: all 0.3s ease;
	opacity: 0.9;
}

.footer-social-link:hover {
	opacity: 1;
	color: var(--color-white);
	transform: translateX(5px);
}

.footer-social-link i {
	font-size: 18px;
	width: 20px;
	text-align: center;
}

.footer-social-link span {
	flex: 1;
}

.footer-partner-logos {
	display: flex;
	flex-direction: row;
	gap: 20px;
	align-items: center;
	flex-wrap: nowrap;
}

.partner-logo-img {
	max-width: 100px;
	height: auto;
	opacity: 0.9;
	transition: opacity 0.3s;
	filter: brightness(0) invert(1);
}

.partner-logo-img:hover {
	opacity: 1;
}

/* Linha separadora */
.footer-separator {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	width: 100%;
	margin-bottom: 30px;
}

/* Rodapé inferior */
.footer-bottom {
	padding: 30px 0;
}

.footer-copyright {
	color: var(--color-white);
	font-size: 14px;
	margin: 0;
	font-family: 'Roboto', sans-serif;
	text-align: center;
}

.developer-link {
	display: inline-block;
	vertical-align: middle;
	text-decoration: none;
	margin-left: 8px;
	transition: opacity 0.3s;
}

.developer-link:hover {
	opacity: 0.8;
}

.developer-signature {
	height: 18px;
	width: auto;
	vertical-align: middle;
	display: inline-block;
}

/* Responsividade das Novas Seções */
@media (max-width: 1024px) {
	
	.hero-cores-content {
		padding-left: 20px;
		max-width: 1000px;
	}
	
	.hero-brand-title {
		font-size: 58px;
		letter-spacing: 2px;
		color: rgba(255, 255, 255, 0.5);
		margin-bottom: 8px;
	}
	
	.hero-title-cores {
		font-size: 42px;
	}
	
	.hero-description-cores {
		font-size: 17px;
	}
	
	.segmentos-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}

	.footer-social-links {
		gap: 10px;
	}

	.footer-social-link {
		font-size: 13px;
	}

	.footer-social-link i {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	/* Header Responsivo */
	.site-header {
		padding: 12px 0;
	}
	
	.header-container {
		padding: 0 20px;
	}
	
	.menu-toggle {
		left: 30px;
		margin-top: 6px;
	}
	
	.menu-text {
		font-size: 12px;
	}
	
	.logo-img {
		max-height: 30px;
	}
	
	.header-btn {
		padding: 8px 15px;
		font-size: 11px;
	}
	
	.header-buttons {
		gap: 8px;
	}
	
	.main-navigation {
		top: 60px;
		padding: 20px;
	}
	
	body {
		padding-top: 60px;
	}
	
	.section-hero-cores {
		margin-top: -60px;
		padding-top: 60px;
		min-height: 90vh;
		height: auto;
		padding-bottom: 80px;
	}
	
	
	.hero-cores-content {
		padding-left: 20px;
		padding-right: 20px;
		max-width: 100%;
	}
	
	.hero-brand-title {
		font-size: 42px;
		letter-spacing: 2px;
		margin-bottom: 6px;
		color: rgba(255, 255, 255, 0.5);
	}
	
	.hero-title-cores {
		font-size: 34px;
		margin-bottom: 20px;
	}
	
	.hero-description-cores {
		font-size: 16px;
		margin-bottom: 35px;
	}
	
	.btn-hero-cta {
		padding: 16px 35px;
		font-size: 14px;
	}
	
	.section-title-main {
		font-size: 28px;
	}
	
	.segmentos-grid,
	.blog-posts-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-content {
		grid-template-columns: 1fr;
	}
	
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 480px) {
	.header-btn {
		padding: 6px 12px;
		font-size: 10px;
	}
	
	.menu-text {
		display: none;
	}
	
	
	.hero-brand-title {
		font-size: 36px;
		letter-spacing: 2px;
		margin-bottom: 6px;
		color: rgba(255, 255, 255, 0.5);
	}
	
	.hero-title-cores {
		font-size: 28px;
	}
	
	.hero-description-cores {
		font-size: 15px;
	}
	
	.btn-hero-cta {
		padding: 14px 30px;
		font-size: 13px;
		letter-spacing: 1px;
	}
}

/* --- Botão Flutuante WhatsApp --- */
.whatsapp-wrapper {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	align-items: center;
	gap: 12px;
	z-index: 9999;
}

.whatsapp-bubble {
	background-color: #ffffff;
	padding: 10px 16px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	position: relative;
	opacity: 0;
	transform: translateX(10px);
	animation: slideInBubble 0.5s ease-out 0.5s forwards;
}

.whatsapp-bubble::after {
	content: '';
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 10px;
	border-color: transparent transparent transparent #ffffff;
}

.whatsapp-bubble-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1.2;
}

.whatsapp-question {
	color: #8a8a8a;
	font-size: 11px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

.whatsapp-call {
	color: #4f4f4f;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Roboto', sans-serif;
}

@keyframes slideInBubble {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.whatsapp-float {
	width: 64px;
	height: 64px;
	padding: 0;
	background-color: #25D366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-float:hover {
	transform: translateY(-3px) scale(1.05);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	background-color: #20BA5A;
}

.whatsapp-float i {
	font-size: 32px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

.whatsapp-text {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Roboto', sans-serif;
}

@media (max-width: 768px) {
	.whatsapp-wrapper {
		bottom: 20px;
		right: 20px;
		gap: 8px;
	}

	.whatsapp-bubble {
		padding: 8px 12px;
	}

	.whatsapp-question {
		font-size: 10px;
	}

	.whatsapp-call {
		font-size: 12px;
	}

	.whatsapp-float {
		width: 56px;
		height: 56px;
	}
	
	.whatsapp-float i {
		font-size: 28px;
	}
}

/* --- Página Sobre --- */
.page-sobre {
	padding-top: 0;
	margin-top: 0;
}

.page-sobre .site-main {
	padding-top: 0;
	margin-top: 0;
}

.page-sobre-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2025/09/Produto-IVE-aplicacao-cores.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.page-sobre-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.page-sobre-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-sobre-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-sobre-thumbnail {
	margin: 40px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-sobre-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.page-sobre-content {
	padding: 80px 0;
	background-color: #fff;
}

.sobre-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	align-items: start;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.sobre-content-left,
.sobre-content-right {
	width: 100%;
	min-width: 0; /* Permite que o grid funcione corretamente */
}

/* Coluna Esquerda: História */
.sobre-content-left {
	position: relative;
}

.sobre-section-title {
	font-size: 22px;
	font-weight: 700;
	color: #000;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 35px 0;
	position: relative;
	padding-left: 15px;
	font-family: 'Roboto', sans-serif;
}

.sobre-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: var(--color-red);
}

.sobre-content-left .entry-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #000;
	margin-bottom: 20px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

/* Coluna Direita: Logo e Texto */
.sobre-content-right {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.sobre-logo-container {
	margin-bottom: 20px;
}

.sobre-logo-img {
	max-width: 250px;
	height: auto;
	display: block;
	filter: brightness(0) invert(20%);
	margin-bottom: 30px;
}

.sobre-right-text p {
	font-size: 16px;
	line-height: 1.8;
	color: #000;
	margin-bottom: 20px;
	font-weight: 400;
	font-family: 'Roboto', sans-serif;
}

/* --- Página Lechler --- */
.page-lechler {
	padding-top: 0;
	margin-top: 0;
}

.page-lechler .site-main {
	padding-top: 0;
	margin-top: 0;
}

.page-lechler-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background-color: #fff;
	position: relative;
}

.page-lechler-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-lechler-title {
	font-size: 64px;
	font-weight: 900;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
}

.page-lechler-thumbnail {
	margin: 40px 0;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.page-lechler-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.page-lechler-content {
	padding: 80px 0;
	background-color: #fff;
}

.lechler-content-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	max-width: 1200px;
	margin: 0 auto;
}

/* Coluna Esquerda: História */
.lechler-content-left {
	position: relative;
}

.lechler-section-title {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	position: relative;
	padding-left: 20px;
}

.lechler-section-title::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background-color: var(--color-red);
}

.lechler-content-left .entry-content p,
.lechler-content-left .entry-content li {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 25px;
	font-weight: 400;
}

.lechler-content-left .entry-content ul {
	list-style: none;
	padding-left: 0;
}

.lechler-content-left .entry-content li {
	margin-bottom: 15px;
}

/* Coluna Direita: Logo e Texto */
.lechler-content-right {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.lechler-logo-container {
	margin-bottom: 20px;
}

.lechler-logo-img {
	max-width: 250px;
	height: auto;
	display: block;
}

.lechler-right-text p {
	font-size: 16px;
	line-height: 1.8;
	color: #666;
	margin-bottom: 25px;
	font-weight: 400;
}

.page-sobre-values {
	padding: 100px 0;
	background: linear-gradient(135deg, #1a1a1a 0%, #27251f 100%);
	position: relative;
	overflow: hidden;
}

.page-sobre-values::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	pointer-events: none;
}

.sobre-values-grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	position: relative;
	z-index: 1;
}

.value-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 0 15px;
}


.value-icon {
	width: 100px;
	height: 100px;
	margin-bottom: 30px;
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.1) 100%);
	border: 3px solid rgba(59, 130, 246, 0.5);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.value-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.4s ease, height 0.4s ease;
}

.value-item:hover .value-icon::before {
	width: 150px;
	height: 150px;
}

.value-item:hover .value-icon {
	transform: scale(1.1) rotate(5deg);
	border-color: rgba(59, 130, 246, 0.8);
	box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.value-icon i {
	font-size: 42px;
	color: #fff;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
	transition: transform 0.4s ease;
}

.value-item:hover .value-icon i {
	transform: scale(1.1);
}

.value-title {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px 0;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	position: relative;
}

.value-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 40px;
	height: 2px;
	background: linear-gradient(to right, transparent, rgba(59, 130, 246, 0.8), transparent);
	transition: width 0.3s ease;
}

.value-item:hover .value-title::after {
	width: 80px;
}

.value-description {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	margin-top: 20px;
	transition: color 0.3s ease;
}

.value-item:hover .value-description {
	color: rgba(255, 255, 255, 0.9);
}

/* Responsivo Página Sobre */
@media (max-width: 1024px) {
	.sobre-values-grid {
		gap: 20px;
		padding: 0 20px;
	}
	
	.value-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}
	
	.value-icon i {
		font-size: 32px;
	}
	
	.value-title {
		font-size: 16px;
	}
	
	.value-description {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.page-sobre-title {
		font-size: 42px;
		letter-spacing: 1px;
	}
	
	.page-sobre-hero {
		margin-top: -60px;
		min-height: 250px;
	}
	
	.page-sobre-hero .site-container {
		padding: 80px 20px 50px;
		margin-top: 60px;
	}
	
	.page-sobre-content {
		padding: 60px 0;
	}
	
	.sobre-content-grid {
		grid-template-columns: 1fr;
		gap: 60px;
		padding: 0 20px;
	}
	
	.sobre-section-title {
		font-size: 22px;
		margin-bottom: 30px;
	}
	
	.sobre-content-left .entry-content p,
	.sobre-right-text p {
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.sobre-logo-img {
		max-width: 180px;
	}
	
	.page-sobre-values {
		padding: 80px 0;
	}
	
	.sobre-values-grid {
		flex-wrap: wrap;
		gap: 30px;
		padding: 0 20px;
	}
	
	.value-item {
		flex: 1 1 calc(50% - 15px);
		min-width: 200px;
	}
	
	.value-icon {
		width: 80px;
		height: 80px;
		margin-bottom: 20px;
	}
	
	.value-icon i {
		font-size: 32px;
	}
	
	.value-title {
		font-size: 16px;
	}
	
	.value-description {
		font-size: 13px;
	}
	
	/* Responsivo Página Lechler */
	.page-lechler-title {
		font-size: 42px;
		letter-spacing: 1px;
	}
	
	.page-lechler-hero {
		margin-top: -60px;
		min-height: 250px;
	}
	
	.page-lechler-hero .site-container {
		padding: 80px 20px 50px;
		margin-top: 60px;
	}
	
	.page-lechler-content {
		padding: 60px 0;
	}
	
	.lechler-content-grid {
		grid-template-columns: 1fr;
		gap: 60px;
		padding: 0 20px;
	}
	
	.lechler-section-title {
		font-size: 22px;
		margin-bottom: 30px;
	}
	
	.lechler-content-left .entry-content p,
	.lechler-content-left .entry-content li,
	.lechler-right-text p {
		font-size: 15px;
		margin-bottom: 20px;
	}
	
	.lechler-logo-img {
		max-width: 200px;
	}
}

/* ============================================
   PÁGINA CONTATO
   ============================================ */

/* Hero da Página Contato */
.page-contato-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2025/08/family-in-home-WUL9XV9.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.page-contato-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.page-contato-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-contato-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Conteúdo da Página Contato */
.page-contato-content {
	padding: 80px 0;
	background-color: #fff;
}

.contato-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 100px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	align-items: start;
}

.contato-section-title {
	font-size: 32px;
	font-weight: 700;
	color: #333;
	margin: 0 0 50px 0;
	text-transform: none;
	letter-spacing: 0;
	font-family: 'Roboto', sans-serif;
}

/* Formulário de Contato */
.contato-form-wrapper {
	width: 100%;
}

.contato-form {
	width: 100%;
}

/* Mensagens de Feedback */
.contato-message {
	padding: 16px 20px;
	margin-bottom: 30px;
	border-radius: 4px;
	font-size: 15px;
	line-height: 1.6;
	display: flex;
	align-items: center;
	gap: 12px;
	animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.contato-message-success {
	background-color: #d1fae5;
	border-left: 4px solid #10b981;
	color: #065f46;
}

.contato-message-success i {
	color: #10b981;
}

.contato-message-error {
	background-color: #fee2e2;
	border-left: 4px solid #ef4444;
	color: #991b1b;
}

.contato-message-error i {
	color: #ef4444;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
	margin-bottom: 25px;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #666;
	margin-bottom: 10px;
	text-transform: none;
	letter-spacing: 0;
	display: block;
}

.form-group label {
	color: #666;
}

.form-group label .required-asterisk {
	color: #dc2626;
	margin-left: 2px;
	font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 0;
	border: none;
	border-bottom: 2px solid #e0e0e0;
	border-radius: 0;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
	color: #333;
	background-color: transparent;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-bottom-color: #333;
	border-bottom-width: 3px;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
	border-bottom-color: #ef4444;
}

.form-group input:valid:not(:focus):not(:placeholder-shown),
.form-group select:valid:not(:focus),
.form-group textarea:valid:not(:focus):not(:placeholder-shown) {
	border-bottom-color: #10b981;
}

.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 0 center;
	background-size: 20px;
	padding-right: 30px;
}

.form-group textarea {
	resize: vertical;
	min-height: 150px;
	font-family: 'Roboto', sans-serif;
}

.btn-contato-submit {
	width: 100%;
	padding: 18px 40px;
	background-color: #0f172a;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
}

.btn-contato-submit::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transform: translate(-50%, -50%);
	transition: width 0.6s ease, height 0.6s ease;
}

.btn-contato-submit:hover::before {
	width: 300px;
	height: 300px;
}

.btn-contato-submit:hover {
	background-color: #1e293b;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(15, 23, 42, 0.4);
}

.btn-contato-submit:active {
	transform: translateY(0);
}

.btn-contato-submit:disabled {
	background-color: #9ca3af;
	cursor: not-allowed;
	opacity: 0.7;
}

.btn-contato-submit:disabled:hover {
	transform: none;
	box-shadow: none;
}

.btn-contato-submit i {
	font-size: 18px;
}

/* Informações de Contato */
.contato-info-wrapper {
	width: 100%;
}

.contato-info-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.contato-info-item {
	display: flex;
	gap: 25px;
	align-items: flex-start;
}

.contato-info-icon {
	width: 60px;
	height: 60px;
	background-color: #f5f5f5;
	border: none;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.contato-info-item:hover .contato-info-icon {
	background-color: #eeeeee;
}

.contato-info-icon i {
	font-size: 24px;
	color: #333;
}

.contato-info-content {
	flex: 1;
}

.contato-info-title {
	font-size: 16px;
	font-weight: 700;
	color: #333;
	margin: 0 0 8px 0;
	text-transform: none;
	letter-spacing: 0;
}

.contato-info-text {
	font-size: 15px;
	line-height: 1.8;
	color: #666;
	margin: 0;
}

.contato-info-text a {
	color: #666;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contato-info-text a:hover {
	color: #333;
	text-decoration: underline;
}

/* Mapa da Página Contato */
.page-contato-mapa {
	position: relative;
	width: 100%;
	height: 500px;
	background-color: #f0f0f0;
}

.page-contato-mapa .mapa-container {
	width: 100%;
	height: 100%;
	position: relative;
}

.page-contato-mapa .mapa-container iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(0%);
}

/* Responsivo Página Contato */
@media (max-width: 1024px) {
	.contato-grid {
		gap: 60px;
		padding: 0 30px;
	}
	
	.form-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.page-contato-title {
		font-size: 42px;
		letter-spacing: 1px;
	}
	
	.page-contato-hero {
		margin-top: -60px;
		min-height: 250px;
	}
	
	.page-contato-hero .site-container {
		padding: 80px 20px 50px;
		margin-top: 60px;
	}
	
	.page-contato-content {
		padding: 60px 0;
	}
	
	.contato-grid {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 0 20px;
	}
	
	/* Inverte a ordem no mobile: formulário primeiro, informações depois */
	.contato-form-wrapper {
		order: 1;
	}
	
	.contato-info-wrapper {
		order: 2;
	}
	
	.contato-section-title {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.contato-info-item {
		gap: 20px;
	}
	
	.contato-info-icon {
		width: 50px;
		height: 50px;
	}
	
	.contato-info-icon i {
		font-size: 20px;
	}
	
	.contato-info-title {
		font-size: 16px;
	}
	
	.contato-info-text {
		font-size: 15px;
	}
	
	.page-contato-mapa {
		height: 400px;
	}
	
	.page-contato-mapa .mapa-info-overlay {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		box-shadow: none;
		border-left: none;
		border-top: 5px solid rgba(59, 130, 246, 0.8);
	}
}

/* ============================================
   PÁGINA BLOG
   ============================================ */

.page-blog-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background-image: url('/wp-content/uploads/2025/09/maxresdefault-rotated.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.page-blog-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

.page-blog-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-blog-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-blog-content {
	padding: 80px 0;
	background-color: #fff;
}

.page-blog-intro {
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
	color: #666;
}

.blog-section-title {
	font-size: 42px;
	font-weight: 700;
	color: #1f2937;
	text-align: center;
	margin: 0 0 60px 0;
	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.blog-post-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.blog-post-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-post-thumbnail {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 250px;
}

.blog-post-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-img {
	transform: scale(1.1);
}

.blog-post-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.blog-post-categories {
	display: flex;
	gap: 8px;
	margin-bottom: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.blog-post-category {
	display: inline-block;
	padding: 6px 12px;
	background-color: #f3f4f6;
	color: #333;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 4px;
}

.blog-post-title {
	font-size: 24px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.blog-post-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.blog-post-title a:hover {
	color: rgba(38, 69, 102, 0.9);
}

.blog-post-meta {
	display: flex;
	gap: 20px;
	margin-bottom: 15px;
	font-size: 14px;
	color: #9ca3af;
	flex-wrap: wrap;
}

.blog-post-meta span {
	display: flex;
	align-items: center;
	gap: 6px;
}

.blog-post-meta i {
	font-size: 12px;
}

.blog-post-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 20px;
	flex: 1;
}

.blog-post-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(38, 69, 102, 0.9);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.blog-post-link:hover {
	color: rgba(59, 130, 246, 1);
	gap: 12px;
}

.blog-pagination {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 60px;
	padding: 0 40px;
	flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
	padding: 10px 18px;
	border-radius: 4px;
	text-decoration: none;
	color: #333;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid #e5e7eb;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.blog-pagination a:hover {
	background-color: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

.blog-pagination .current {
	background-color: #0f172a;
	color: #fff;
	border-color: #0f172a;
}

.blog-no-posts {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 20px;
	color: #666;
	font-size: 18px;
}

/* ============================================
   PÁGINA PRODUTOS (Lechler e IVE)
   ============================================ */

.page-produtos-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #1a1a1a 0%, #27251f 100%);
	position: relative;
	overflow: hidden;
}

.page-produtos-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	z-index: 1;
}

/* Imagem de fundo específica para página Produtos Lechler */
.page-produtos-lechler .page-produtos-hero {
	background-image: url('/wp-content/uploads/2025/08/ChatGPT-Image-23-de-ago.-de-2025-20_56_38.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 500px;
}

.page-produtos-lechler .page-produtos-hero::before {
	display: none;
}

/* Imagem de fundo específica para página Produtos IVE */
.page-produtos-ive .page-produtos-hero {
	background-image: url('/wp-content/uploads/2025/08/ChatGPT-Image-23-de-ago.-de-2025-20_53_14.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 500px;
}

.page-produtos-ive .page-produtos-hero::before {
	display: none;
}

.page-produtos-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-produtos-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-produtos-content {
	padding: 80px 0;
	background-color: #fff;
}

/* ============================================
   SEÇÃO IVE / LECHLER TECH
   ============================================ */

.container-ive {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.ive-section {
	min-height: 100vh;
	background: #ffffff;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 80px 0;
}

.ive-content-ive {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	width: 100%;
}

.ive-text-ive {
	padding-right: 40px;
	position: relative;
}

.ive-logo-ive {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 100;
	color: #1d1d1f;
	margin-bottom: 40px;
	letter-spacing: -0.02em;
	line-height: 0.9;
	position: relative;
	opacity: 1;
	animation: slideInLeft 1s ease-out 0.3s;
}

.ive-logo-ive::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 0;
	width: 60px;
	height: 2px;
	background: linear-gradient(90deg, #1d1d1f, #6e6e73);
	border-radius: 1px;
	opacity: 0;
	animation: expandLine 0.8s ease-out 1.2s forwards;
}

.ive-description-ive {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.7;
	margin-bottom: 30px;
	color: #1d1d1f;
	font-weight: 400;
	opacity: 1;
	animation: fadeInUp 1s ease-out;
}

.ive-description-ive:nth-child(2) {
	animation-delay: 0.6s;
}

.ive-description-ive:nth-child(3) {
	animation-delay: 0.9s;
}

.ive-description-ive:last-child {
	margin-bottom: 0;
}

.ive-image-ive {
	position: relative;
	width: 100%;
	height: 600px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	background: #f8f9fa;
	opacity: 1;
	animation: slideInRight 1.2s ease-out 0.5s;
}

.ive-image-ive img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

.ive-image-ive:hover img {
	transform: scale(1.05);
}

.ive-image-ive::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 50%, rgba(0,0,0,0.05) 100%);
	z-index: 1;
	pointer-events: none;
}

.decorative-elements-ive {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.floating-shape-ive {
	position: absolute;
	background: rgba(0, 0, 0, 0.03);
	border-radius: 50%;
	animation: float 8s ease-in-out infinite;
}

.floating-shape-ive:nth-child(1) {
	width: 120px;
	height: 120px;
	top: 15%;
	left: 5%;
	animation-delay: 0s;
}

.floating-shape-ive:nth-child(2) {
	width: 80px;
	height: 80px;
	top: 70%;
	right: 8%;
	animation-delay: 3s;
}

.floating-shape-ive:nth-child(3) {
	width: 60px;
	height: 60px;
	bottom: 20%;
	left: 10%;
	animation-delay: 6s;
}

.highlight-text-ive {
	background: linear-gradient(135deg, #1d1d1f 0%, #6e6e73 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	position: relative;
}

.highlight-text-ive::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(90deg, #1d1d1f, #6e6e73);
	opacity: 0.3;
	animation: underlineExpand 0.6s ease-out 1.5s forwards;
}

.decorative-line-ive {
	position: absolute;
	top: 50%;
	left: -40px;
	width: 2px;
	height: 100px;
	background: linear-gradient(180deg, transparent, #1d1d1f, transparent);
	opacity: 1;
	animation: lineAppear 1s ease-out 1.8s;
}

.decorative-dots-ive {
	position: absolute;
	top: 20%;
	right: -30px;
	width: 4px;
	height: 4px;
	background: #1d1d1f;
	border-radius: 50%;
	opacity: 1;
	animation: dotAppear 0.5s ease-out 2s;
}

.decorative-dots-ive::before,
.decorative-dots-ive::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 4px;
	background: #1d1d1f;
	border-radius: 50%;
}

.decorative-dots-ive::before {
	top: 20px;
	left: 0;
	animation: dotAppear 0.5s ease-out 2.2s forwards;
}

.decorative-dots-ive::after {
	top: 40px;
	left: 0;
	animation: dotAppear 0.5s ease-out 2.4s forwards;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-15px) scale(1.05);
	}
}

@keyframes slideInLeft {
	0% {
		transform: translateX(-50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes slideInRight {
	0% {
		transform: translateX(50px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}
	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes expandLine {
	from {
		width: 0;
		opacity: 0;
	}
	to {
		width: 60px;
		opacity: 1;
	}
}

@keyframes underlineExpand {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}

@keyframes lineAppear {
	0% {
		transform: scaleY(0);
	}
	100% {
		transform: scaleY(1);
	}
}

@keyframes dotAppear {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 968px) {
	.ive-content-ive {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.ive-text-ive {
		padding-right: 0;
		text-align: center;
	}

	.ive-image-ive {
		height: 400px;
	}
}

@media (max-width: 768px) {
	.ive-section {
		padding: 60px 0;
		min-height: auto;
	}

	.ive-content-ive {
		gap: 40px;
	}

	.ive-image-ive {
		height: 300px;
	}

	.floating-shape-ive {
		display: none;
	}

	.decorative-line-ive,
	.decorative-dots-ive {
		display: none;
	}
}

/* ============================================
   GALERIA LECHLER TECH
   ============================================ */

.lechler-gallery-section {
	padding: 80px 0;
	background-color: #f9fafb;
}

.lechler-gallery-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.lechler-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.lechler-gallery-item {
	display: flex;
	align-items: center;
	justify-content: center;
}

.lechler-gallery-item img {
	max-width: 100%;
	height: auto;
	width: auto;
	max-height: 250px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.lechler-gallery-item:hover img {
	transform: scale(1.05);
}

@media (max-width: 1024px) {
	.lechler-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media (max-width: 768px) {
	.lechler-gallery-section {
		padding: 60px 0;
	}

	.lechler-gallery-wrapper {
		padding: 0 20px;
	}

	.lechler-gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.lechler-gallery-item img {
		max-height: 180px;
	}
}

@media (max-width: 480px) {
	.lechler-gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.lechler-gallery-item img {
		max-height: 200px;
	}
}

.page-produtos-intro {
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
	color: #666;
}

.produtos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.produto-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.produto-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.produto-thumbnail {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 250px;
	background-color: #f3f4f6;
}

.produto-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.produto-card:hover .produto-img {
	transform: scale(1.1);
}

.produto-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.produto-title {
	font-size: 22px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.produto-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.produto-title a:hover {
	color: rgba(38, 69, 102, 0.9);
}

.produto-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 20px;
	flex: 1;
}

.produto-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(38, 69, 102, 0.9);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.produto-link:hover {
	color: rgba(59, 130, 246, 1);
	gap: 12px;
}

.produtos-placeholder {
	grid-column: 1 / -1;
}

/* ============================================
   PÁGINA CATÁLOGOS
   ============================================ */

.page-catalogos-hero {
	padding: 0;
	margin-top: -70px;
	min-height: 350px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #1a1a1a 0%, #27251f 100%);
	position: relative;
	overflow: hidden;
}

.page-catalogos-hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
	z-index: 1;
}

/* Imagem de fundo específica para página Catálogos */
.page-catalogos .page-catalogos-hero {
	background-image: url('/wp-content/uploads/2025/09/catalogo-italy-banner-principal.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 500px;
}

.page-catalogos .page-catalogos-hero::before {
	display: none;
}

.page-catalogos-hero .site-container {
	position: relative;
	z-index: 2;
	padding: 100px 20px 60px;
	width: 100%;
	margin-top: 70px;
}

.page-catalogos-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 40px 0;
	font-family: 'Roboto', sans-serif;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.page-catalogos-content {
	padding: 80px 0;
	background-color: #fff;
}

.page-catalogos-intro {
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
	font-size: 18px;
	line-height: 1.8;
	color: #666;
}

.catalogos-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 40px;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

.catalogo-card {
	background-color: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
}

.catalogo-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.catalogo-thumbnail {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 300px;
	background-color: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.catalogo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.catalogo-placeholder {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	color: #fff;
	font-size: 60px;
}

.catalogo-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #fff;
	font-size: 40px;
}

.catalogo-thumbnail:hover .catalogo-overlay {
	opacity: 1;
}

.catalogo-thumbnail:hover .catalogo-img {
	transform: scale(1.1);
}

.catalogo-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.catalogo-title {
	font-size: 22px;
	font-weight: 700;
	color: #1f2937;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.catalogo-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.catalogo-title a:hover {
	color: rgba(38, 69, 102, 0.9);
}

.catalogo-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 20px;
	flex: 1;
}

.catalogo-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(38, 69, 102, 0.9);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.catalogo-link:hover {
	color: rgba(59, 130, 246, 1);
	gap: 12px;
}

.catalogos-placeholder {
	grid-column: 1 / -1;
}

/* ============================================
   SEÇÃO CATÁLOGOS (NOVA)
   ============================================ */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.catalog-section {
	min-height: 100vh;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 80px 0;
}

.section-header {
	text-align: center;
	margin-bottom: 80px;
	opacity: 1;
	animation: fadeInUp 1s ease-out 0.3s forwards;
}

.section-title {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 300;
	color: #1e293b;
	margin-bottom: 20px;
	letter-spacing: -0.02em;
	line-height: 1.1;
}

.section-subtitle {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	color: #6e6e73;
	font-weight: 400;
	max-width: 600px;
	margin: 0 auto;
}

.catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
	width: 100%;
}

.catalog-card {
	background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(30, 41, 59, 0.08), 0 8px 25px rgba(30, 41, 59, 0.04);
	border: 1px solid rgba(30, 41, 59, 0.06);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
	transform: translateY(0);
	animation: slideUpFade 0.8s ease-out forwards;
	position: relative;
}

.catalog-card:nth-child(1) {
	animation-delay: 0.2s;
}

.catalog-card:nth-child(2) {
	animation-delay: 0.4s;
}

.catalog-card:hover {
	transform: translateY(-12px) scale(1.02);
	box-shadow: 0 32px 80px rgba(30, 41, 59, 0.15), 0 12px 40px rgba(30, 41, 59, 0.08);
	border-color: rgba(30, 41, 59, 0.12);
}

.catalog-image {
	width: 100%;
	height: 320px;
	background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px 20px 0 0;
	margin: 8px 8px 0 8px;
	box-shadow: inset 0 2px 8px rgba(30, 41, 59, 0.04);
}

.catalog-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	border-radius: 16px 16px 0 0;
	filter: brightness(1.05) contrast(1.02);
}

.catalog-card:hover .catalog-image img {
	transform: scale(1.08);
	filter: brightness(1.1) contrast(1.05);
}

.catalog-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.1) 100%);
	z-index: 1;
}

.catalog-icon {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #1e293b;
	z-index: 2;
	backdrop-filter: blur(20px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 25px rgba(30, 41, 59, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.catalog-card:hover .catalog-icon {
	background: #1e293b;
	color: #ffffff;
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 12px 35px rgba(30, 41, 59, 0.25);
}

.catalog-content {
	padding: 32px 28px 28px 28px;
	background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
	border-radius: 0 0 20px 20px;
	margin: 0 8px 8px 8px;
	position: relative;
}

.catalog-title {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 16px;
	line-height: 1.3;
	letter-spacing: -0.01em;
	position: relative;
}

.catalog-description {
	font-size: 0.95rem;
	color: #6e6e73;
	line-height: 1.6;
	margin-bottom: 20px;
}

.catalog-features {
	list-style: none;
	margin-bottom: 25px;
	padding: 0;
}

.catalog-features li {
	font-size: 0.9rem;
	color: #1e293b;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	font-weight: 400;
}

.catalog-features li::before {
	content: '\f00c';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	color: #34c759;
	margin-right: 10px;
	font-size: 12px;
}

.catalog-button {
	width: 100%;
	background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
	color: #ffffff;
	border: none;
	padding: 16px 24px;
	border-radius: 16px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	box-shadow: 0 4px 15px rgba(30, 41, 59, 0.2);
	position: relative;
	overflow: hidden;
}

.catalog-button:hover {
	background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 35px rgba(30, 41, 59, 0.35);
}

.decorative-elements {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.floating-shape {
	position: absolute;
	background: linear-gradient(135deg, rgba(30, 41, 59, 0.08) 0%, rgba(30, 41, 59, 0.04) 100%);
	border-radius: 50%;
	animation: floatCatalog 12s ease-in-out infinite;
	backdrop-filter: blur(75px);
	border: 1px solid rgba(30, 41, 59, 0.05);
}

.floating-shape:nth-child(1) {
	width: 280px;
	height: 280px;
	top: 10%;
	left: 8%;
	animation-delay: 0s;
}

.floating-shape:nth-child(2) {
	width: 220px;
	height: 220px;
	top: 60%;
	right: 12%;
	animation-delay: 4s;
}

.floating-shape:nth-child(3) {
	width: 320px;
	height: 320px;
	bottom: 15%;
	left: 15%;
	animation-delay: 8s;
}

.floating-shape:nth-child(4) {
	width: 240px;
	height: 240px;
	top: 25%;
	right: 25%;
	animation-delay: 2s;
}

.floating-shape:nth-child(5) {
	width: 260px;
	height: 260px;
	top: 75%;
	left: 5%;
	animation-delay: 6s;
}

.floating-shape:nth-child(6) {
	width: 200px;
	height: 200px;
	bottom: 30%;
	right: 8%;
	animation-delay: 10s;
}

.geometric-shape {
	position: absolute;
	background: linear-gradient(45deg, rgba(30, 41, 59, 0.06) 0%, rgba(30, 41, 59, 0.02) 100%);
	border: 1px solid rgba(30, 41, 59, 0.04);
	animation: rotateCatalog 20s linear infinite;
}

.geometric-shape:nth-child(7) {
	width: 32px;
	height: 32px;
	top: 15%;
	left: 50%;
	border-radius: 8px;
	animation-delay: 0s;
}

.geometric-shape:nth-child(8) {
	width: 28px;
	height: 28px;
	top: 45%;
	left: 25%;
	border-radius: 50%;
	animation-delay: 5s;
}

.geometric-shape:nth-child(9) {
	width: 38px;
	height: 38px;
	top: 80%;
	right: 30%;
	border-radius: 12px;
	animation-delay: 10s;
}

.geometric-shape:nth-child(10) {
	width: 42px;
	height: 42px;
	top: 35%;
	right: 45%;
	border-radius: 50%;
	animation-delay: 15s;
}

@keyframes rotateCatalog {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(180deg) scale(1.1);
	}
	100% {
		transform: rotate(360deg) scale(1);
	}
}

@keyframes floatCatalog {
	0%, 100% {
		transform: translateY(0px) scale(1);
	}
	50% {
		transform: translateY(-20px) scale(1.05);
	}
}

@keyframes slideUpFade {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 768px) {
	.catalog-section {
		padding: 60px 0;
	}

	.section-header {
		margin-bottom: 60px;
	}

	.catalog-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.catalog-content {
		padding: 25px;
	}

	.catalog-image {
		height: 240px;
	}
}

/* Responsivo para todas as páginas */
@media (max-width: 1024px) {
	.blog-posts-grid,
	.produtos-grid,
	.catalogos-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 30px;
		padding: 0 30px;
	}
}

@media (max-width: 768px) {
	.page-blog-title,
	.page-produtos-title,
	.page-catalogos-title {
		font-size: 42px;
		letter-spacing: 1px;
	}
	
	.page-blog-hero,
	.page-produtos-hero,
	.page-catalogos-hero {
		margin-top: -60px;
		min-height: 250px;
	}
	
	.page-blog-hero .site-container,
	.page-produtos-hero .site-container,
	.page-catalogos-hero .site-container {
		padding: 80px 20px 50px;
		margin-top: 60px;
	}
	
	.page-blog-content,
	.page-produtos-content,
	.page-catalogos-content {
		padding: 60px 0;
	}
	
	.blog-posts-grid,
	.produtos-grid,
	.catalogos-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 20px;
	}
	
	.page-blog-intro,
	.page-produtos-intro,
	.page-catalogos-intro {
		font-size: 16px;
		margin-bottom: 40px;
		padding: 0 20px;
	}
}

/* ============================================
   PÁGINAS DE POST INDIVIDUAIS DO BLOG
   ============================================ */

.blog-post-single {
	min-height: 100vh;
}

/* Hero do Post Individual */
.blog-post-hero {
	position: relative;
	width: 100%;
	min-height: 600px;
	margin-top: -70px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blog-post-hero-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.blog-post-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.blog-post-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.4) 100%);
	z-index: 1;
}

.blog-post-header {
	position: relative;
	z-index: 2;
	padding: 120px 40px 80px;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	margin-top: 70px;
	text-align: center;
}

.blog-post-hero-title {
	font-size: 64px;
	font-weight: 900;
	color: #fff;
	margin: 30px 0 40px 0;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.2;
	text-shadow: 0 4px 20px rgba(0,0,0,0.6);
	font-family: 'Roboto', sans-serif;
}

.blog-post-meta-header {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
	color: rgba(255, 255, 255, 0.95);
	font-size: 16px;
	margin-top: 30px;
}

.blog-post-meta-header span {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 20px;
}

.blog-post-meta-header i {
	font-size: 14px;
	opacity: 0.9;
}

/* Conteúdo do Post */
.blog-post-article {
	padding: 100px 0;
	background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.blog-post-content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.blog-post-main-content {
	background-color: #fff;
	border-radius: 12px;
	padding: 60px 80px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.blog-post-entry-content {
	font-size: 19px;
	line-height: 1.95;
	color: #0f172a;
}

.blog-post-entry-content h2 {
	font-size: 36px;
	font-weight: 700;
	color: #0f172a;
	margin: 60px 0 30px 0;
	line-height: 1.3;
	padding-bottom: 15px;
	border-bottom: 3px solid rgba(38, 69, 102, 0.2);
	position: relative;
}

.blog-post-entry-content h2:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-bottom: none;
	padding-bottom: 0;
}

.blog-post-entry-content h2::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 80px;
	height: 3px;
	background: rgba(38, 69, 102, 0.8);
}

.blog-post-entry-content p {
	margin-bottom: 28px;
	font-size: 19px;
	line-height: 1.95;
	color: #0f172a;
	font-weight: 400;
}

.blog-post-entry-content p:first-of-type {
	font-size: 22px;
	line-height: 1.9;
	color: #0f172a;
	font-weight: 500;
	margin-bottom: 40px;
	padding-left: 20px;
	border-left: 4px solid rgba(38, 69, 102, 0.8);
}

.blog-post-entry-content strong {
	color: #0f172a;
	font-weight: 700;
	font-size: 20px;
}

.blog-post-features {
	list-style: none;
	padding: 0;
	margin: 40px 0;
	background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
	border-radius: 8px;
	padding: 30px 25px;
	border-left: 4px solid rgba(38, 69, 102, 0.8);
}

.blog-post-features li {
	padding: 18px 0 18px 45px;
	border-bottom: 1px solid rgba(229, 231, 235, 0.8);
	position: relative;
	font-size: 18px;
	line-height: 1.85;
	color: #0f172a;
	transition: all 0.3s ease;
}

.blog-post-features li:hover {
	padding-left: 50px;
	color: #0f172a;
}

.blog-post-features li:last-child {
	border-bottom: none;
}

.blog-post-features li::before {
	content: '';
	position: absolute;
	left: 10px;
	top: 18px;
	width: 8px;
	height: 8px;
	background: #0f172a;
	border-radius: 50%;
}

.blog-post-benefits {
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin: 60px 0;
}

.blog-post-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding: 35px;
	background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
	border-radius: 12px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 2px solid #f3f4f6;
	border-left: 5px solid rgba(38, 69, 102, 0.8);
	position: relative;
	overflow: hidden;
}

.blog-post-benefit-item:hover {
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	border-color: rgba(38, 69, 102, 0.3);
	border-left-color: rgba(38, 69, 102, 1);
}

.benefit-icon {
	width: 70px;
	height: 70px;
	flex-shrink: 0;
	background: linear-gradient(135deg, rgba(38, 69, 102, 0.15) 0%, rgba(38, 69, 102, 0.08) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	border: 3px solid rgba(38, 69, 102, 0.2);
}

.blog-post-benefit-item:hover .benefit-icon {
	background: linear-gradient(135deg, rgba(38, 69, 102, 0.25) 0%, rgba(38, 69, 102, 0.15) 100%);
	transform: scale(1.1);
	border-color: rgba(38, 69, 102, 0.5);
	box-shadow: 0 8px 25px rgba(38, 69, 102, 0.3);
}

.benefit-icon i {
	font-size: 32px;
	color: rgba(38, 69, 102, 0.9);
	transition: transform 0.4s ease;
}

.blog-post-benefit-item:hover .benefit-icon i {
	transform: scale(1.1);
}

.blog-post-benefit-content {
	flex: 1;
}

.blog-post-benefit-item h3 {
	font-size: 24px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 12px 0;
	letter-spacing: 0.5px;
}

.blog-post-benefit-item p {
	font-size: 17px;
	line-height: 1.8;
	color: #0f172a;
	margin: 0;
	opacity: 0.8;
}

.blog-post-cta {
	background: linear-gradient(135deg, rgba(38, 69, 102, 0.05) 0%, rgba(38, 69, 102, 0.02) 100%);
	border-left: 5px solid rgba(38, 69, 102, 0.9);
	padding: 40px 35px;
	border-radius: 8px;
	font-size: 20px;
	font-weight: 600;
	color: #1f2937;
	margin: 60px 0 0 0;
	line-height: 1.85;
	position: relative;
	box-shadow: 0 5px 20px rgba(38, 69, 102, 0.1);
}

/* Navegação entre Posts */
.blog-post-navigation {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 100px;
	padding-top: 50px;
	border-top: 2px solid #e5e7eb;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.blog-post-back,
.blog-post-prev,
.blog-post-next {
	padding: 18px 35px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	border: 2px solid transparent;
}

.blog-post-back {
	background-color: #f3f4f6;
	color: #333;
	border-color: #e5e7eb;
}

.blog-post-back:hover {
	background-color: #e5e7eb;
	color: #000;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-post-prev,
.blog-post-next {
	background-color: #0f172a;
	color: #fff;
}

.blog-post-prev:hover,
.blog-post-next:hover {
	background-color: #1e293b;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.4);
	gap: 15px;
}

/* Responsivo Posts Individuais */
@media (max-width: 1024px) {
	.blog-post-content-wrapper {
		max-width: 1000px;
	}
	
	.blog-post-main-content {
		padding: 50px 60px;
	}
	
	.blog-post-navigation {
		flex-direction: column;
		align-items: stretch;
	}
	
	.blog-post-back,
	.blog-post-prev,
	.blog-post-next {
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.blog-post-hero {
		min-height: 450px;
		margin-top: -60px;
	}
	
	.blog-post-header {
		padding: 100px 20px 50px;
		margin-top: 60px;
	}
	
	.blog-post-hero-title {
		font-size: 38px;
		margin: 20px 0 25px 0;
	}
	
	.blog-post-meta-header {
		font-size: 14px;
		gap: 15px;
	}
	
	.blog-post-meta-header span {
		padding: 6px 12px;
	}
	
	.blog-post-article {
		padding: 60px 0;
	}
	
	.blog-post-content-wrapper {
		padding: 0 20px;
		max-width: 100%;
	}
	
	.blog-post-main-content {
		padding: 40px 30px;
		border-radius: 8px;
	}
	
	.blog-post-entry-content {
		font-size: 17px;
	}
	
	.blog-post-entry-content h2 {
		font-size: 28px;
		margin: 50px 0 25px 0;
	}
	
	.blog-post-entry-content p {
		font-size: 17px;
		margin-bottom: 25px;
	}
	
	.blog-post-entry-content p:first-of-type {
		font-size: 19px;
		padding-left: 15px;
		margin-bottom: 35px;
	}
	
	.blog-post-features {
		padding: 25px 20px;
		margin: 35px 0;
	}
	
	.blog-post-features li {
		font-size: 17px;
		padding: 15px 0 15px 40px;
	}
	
	.blog-post-features li::before {
		left: 5px;
		top: 15px;
		width: 6px;
		height: 6px;
	}
	
	.blog-post-benefits {
		gap: 25px;
		margin: 50px 0;
	}
	
	.blog-post-benefit-item {
		flex-direction: column;
		text-align: center;
		padding: 30px 25px;
	}
	
	.benefit-icon {
		width: 70px;
		height: 70px;
		margin: 0 auto 20px;
	}
	
	.benefit-icon i {
		font-size: 30px;
	}
	
	.blog-post-benefit-item h3 {
		font-size: 20px;
	}
	
	.blog-post-benefit-item p {
		font-size: 15px;
	}
	
		.blog-post-cta {
			padding: 30px 25px;
			font-size: 18px;
			margin: 50px 0 0 0;
		}
		
		.blog-post-navigation {
		margin-top: 70px;
		padding-top: 40px;
		flex-direction: column;
	}
	
	.blog-post-back,
	.blog-post-prev,
	.blog-post-next {
		width: 100%;
		justify-content: center;
		padding: 16px 25px;
	}
}
