/**
 * VoozzDigital 2026 Theme Stylesheet
 *
 * Estilos estruturados com CSS Moderno e estética Premium
 */

/* ==========================================
   0. VARIAVEIS E RESETS
   ========================================== */
:root {
	--bg-color: #02150d;
	--bg-secondary: #042416;
	--primary-color: #05f27c;
	--primary-hover: #00d66a;
	--text-main: #ffffff;
	--text-muted: #8fa89b;
	--text-dark: #02150d;
	--font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	
	/* Efeito Vidro (Glassmorphism) */
	--glass-bg: rgba(255, 255, 255, 0.02);
	--glass-bg-hover: rgba(255, 255, 255, 0.05);
	--glass-border: rgba(255, 255, 255, 0.06);
	--glass-blur: blur(16px);
	
	/* Bordas e Sombras */
	--border-radius-lg: 1.5rem; /* 24px */
	--border-radius-md: 0.85rem; /* 14px */
	--border-radius-sm: 0.5rem;  /* 8px */
	--border-radius-pill: 9999px;
	
	--transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
	--transition-slow: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Básico */
*, *::before, *::after {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	background-color: var(--bg-color);
	color: var(--text-main);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

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

ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.2;
}

/* Utilitários */
.container {
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
	position: relative;
}

.text-center {
	text-align: center;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

/* Efeito Glassmorphism Global */
.glass-effect {
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
}

/* Botões */
.btn-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-color);
	color: var(--text-dark);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.75rem 2rem;
	border-radius: var(--border-radius-pill);
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition: var(--transition-smooth);
}

.btn-cta:hover {
	background-color: var(--primary-hover);
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(5, 242, 124, 0.2);
}

/* ==========================================
   1. CABEÇALHO (HEADER)
   ========================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 1.5rem 0;
	transition: var(--transition-smooth);
}

/* Header reduzido no scroll */
.site-header.scrolled {
	padding: 1rem 0;
	background: rgba(2, 21, 13, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 90%;
	max-width: 1280px;
	margin: 0 auto;
}

/* Logotipo */
.site-branding {
	flex-shrink: 0;
}

.site-branding img {
	max-height: 40px;
	width: auto;
}

.site-title {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--primary-color);
	letter-spacing: -0.5px;
}

/* Menu de Navegação - Formato Pílula */
.main-navigation {
	position: relative;
}

.navigation-menu-wrapper {
	background: rgba(2, 21, 13, 0.5);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--glass-border);
	padding: 0.35rem 0.5rem;
	border-radius: var(--border-radius-pill);
}

.navigation-menu-wrapper ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.navigation-menu-wrapper ul li a {
	display: block;
	padding: 0.5rem 1.25rem;
	border-radius: var(--border-radius-pill);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--text-main);
}

.navigation-menu-wrapper ul li a:hover,
.navigation-menu-wrapper ul li.current-menu-item > a {
	color: var(--primary-color);
	background: rgba(255, 255, 255, 0.04);
}

/* Botão CTA do Header */
.header-cta {
	flex-shrink: 0;
}

.header-btn {
	font-size: 0.85rem;
	padding: 0.6rem 1.5rem;
}

/* Menu Mobile Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}

.hamburger-icon {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--text-main);
	position: relative;
	transition: var(--transition-smooth);
}

.hamburger-icon::before,
.hamburger-icon::after {
	content: '';
	position: absolute;
	width: 24px;
	height: 2px;
	background: var(--text-main);
	left: 0;
	transition: var(--transition-smooth);
}

.hamburger-icon::before { top: -8px; }
.hamburger-icon::after { bottom: -8px; }

/* Menu Mobile Aberto */
.menu-toggle[aria-expanded="true"] .hamburger-icon {
	background: transparent;
}
.menu-toggle[aria-expanded="true"] .hamburger-icon::before {
	transform: rotate(45deg);
	top: 0;
}
.menu-toggle[aria-expanded="true"] .hamburger-icon::after {
	transform: rotate(-45deg);
	bottom: 0;
}

/* Responsive Header */
@media (max-width: 991px) {
	.menu-toggle {
		display: block;
	}
	
	.navigation-menu-wrapper {
		position: absolute;
		top: calc(100% + 20px);
		right: 0;
		width: 250px;
		background: var(--bg-secondary);
		border-radius: var(--border-radius-md);
		border: 1px solid var(--glass-border);
		padding: 1rem;
		opacity: 0;
		visibility: hidden;
		transform: translateY(10px);
		transition: var(--transition-smooth);
	}
	
	.main-navigation.toggled .navigation-menu-wrapper {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
	
	.navigation-menu-wrapper ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.5rem;
	}
	
	.navigation-menu-wrapper ul li {
		width: 100%;
	}
	
	.navigation-menu-wrapper ul li a {
		border-radius: var(--border-radius-sm);
		padding: 0.75rem 1rem;
	}
	
	.header-cta {
		display: none; /* Oculta o CTA no mobile do cabeçalho */
	}
}


/* ==========================================
   2. HERO SECTION
   ========================================== */
.hero-section {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}

/* Imagens em Fade */
.hero-slider-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-slide-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	z-index: 1;
}

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

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(2, 21, 13, 0.4) 0%, rgba(2, 21, 13, 0.95) 100%);
	z-index: 3;
}

.hero-container {
	position: relative;
	z-index: 4;
	margin-top: 4rem;
}

.hero-content-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 4rem;
	align-items: center;
}

.hero-left-col {
	display: flex;
	flex-direction: column;
}

.hero-title {
	font-size: 4.8rem;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1.1;
	color: var(--text-main);
}

.hero-highlight-word {
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	padding: 0.1rem 0.75rem;
	position: relative;
	display: inline-block;
	white-space: nowrap;
}

.corner-dot {
	position: absolute;
	width: 5px;
	height: 5px;
	background-color: var(--bg-color);
	border: 1px solid var(--primary-color);
}

.corner-dot.top-left { top: -3px; left: -3px; }
.corner-dot.top-right { top: -3px; right: -3px; }
.corner-dot.bottom-left { bottom: -3px; left: -3px; }
.corner-dot.bottom-right { bottom: -3px; right: -3px; }

.hero-right-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.hero-desc {
	font-size: 1.2rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-cta-wrapper {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hero-abstract-icon {
	color: var(--primary-color);
	display: inline-flex;
	animation: pulse 3s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 0.6; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.05); }
}

/* Carrossel de Palavras (Marquee) */
.hero-marquee-wrapper {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(2, 21, 13, 0.8);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding: 1.25rem 0;
	overflow: hidden;
	z-index: 5;
}

.hero-marquee-content {
	display: flex;
	width: max-content;
	animation: marquee 25s linear infinite;
}

.marquee-item {
	display: flex;
	align-items: center;
	padding: 0 3rem;
}

.marquee-icon {
	color: var(--primary-color);
	margin-right: 0.75rem;
}

.marquee-text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--text-muted);
	white-space: nowrap;
}

@keyframes marquee {
	0% { transform: translate3d(0, 0, 0); }
	100% { transform: translate3d(-50%, 0, 0); }
}

/* Responsividade Hero */
@media (max-width: 991px) {
	.hero-title {
		font-size: 3rem;
		letter-spacing: -1px;
	}
	.hero-content-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.hero-desc {
		font-size: 1.1rem;
		margin-bottom: 1.5rem;
	}
}


/* ==========================================
   3. SEÇÃO SERVIÇOS
   ========================================== */
.services-section {
	padding: 8rem 0;
	background-color: var(--bg-color);
	border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
	margin-bottom: 5rem;
}

.section-subtitle {
	display: inline-block;
	color: var(--primary-color);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.section-title {
	font-size: 2.8rem;
	font-weight: 800;
	max-width: 700px;
	margin: 0 auto;
	letter-spacing: -1px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.service-card {
	display: flex;
	flex-direction: column;
	background: transparent;
	transition: var(--transition-smooth);
}

.service-card-image-wrapper {
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--border-radius-lg);
	overflow: hidden;
	margin-bottom: 1.5rem;
}

.service-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-slow);
}

.service-card:hover .service-card-image {
	transform: scale(1.04);
}

.service-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.service-card-title a:hover {
	color: var(--primary-color);
}

.service-card-desc {
	color: var(--text-muted);
	font-size: 0.95rem;
	line-height: 1.6;
}

/* Responsividade Serviços */
@media (max-width: 991px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
	.section-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 767px) {
	.services-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.services-section {
		padding: 5rem 0;
	}
}


/* ==========================================
   4. PORTFÓLIO (SLIDER TELA CHEIA)
   ========================================== */
.portfolio-section {
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: #010d08;
	overflow: hidden;
}

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

.portfolio-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
}

.portfolio-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: var(--bg-desktop);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
	z-index: 1;
}

.portfolio-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 2;
}

.slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 70% 30%, rgba(2, 21, 13, 0.3) 0%, rgba(2, 21, 13, 0.95) 100%);
	z-index: 2;
}

.slide-container {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	z-index: 3;
}

.slide-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	width: 100%;
}

/* Slide Esquerda */
.slide-left-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.slide-tag {
	color: var(--primary-color);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 1.5rem;
}

.slide-title {
	font-size: 3.5rem;
	font-weight: 800;
	letter-spacing: -1.5px;
	margin-bottom: 2rem;
	line-height: 1.1;
}

.slide-cta-wrapper {
	margin-bottom: 2.5rem;
}

.slide-description {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 450px;
	line-height: 1.6;
}

/* Slide Direita: Cards Flutuantes */
.slide-right-col {
	position: relative;
	height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.floating-card {
	border-radius: var(--border-radius-lg);
	padding: 1.5rem;
	width: 320px;
	position: absolute;
	box-shadow: 0 20px 40px rgba(0,0,0,0.4);
	transition: var(--transition-smooth);
}

.floating-card:hover {
	transform: translateY(-5px);
	border-color: rgba(5, 242, 124, 0.15);
}

/* Card Superior Direito */
.card-upper-right {
	top: 10px;
	right: 0;
	display: flex;
	gap: 1rem;
	align-items: center;
}

.floating-card-img-wrapper {
	width: 60px;
	height: 60px;
	border-radius: var(--border-radius-md);
	background-size: cover;
	background-position: center;
	flex-shrink: 0;
}

.floating-card-text {
	font-size: 0.85rem;
	margin: 0;
	color: var(--text-main);
	line-height: 1.4;
}

/* Card Inferior Direito */
.card-lower-right {
	bottom: 10px;
	left: 40px;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.floating-card-icon {
	color: var(--primary-color);
	display: flex;
}

.floating-card-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0;
}

.floating-card-desc {
	font-size: 0.85rem;
	color: var(--text-muted);
	margin: 0;
	line-height: 1.4;
}

.floating-card-link {
	font-size: 0.85rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-top: 0.5rem;
	display: inline-flex;
	align-items: center;
}

.floating-card-link:hover {
	color: var(--text-main);
}

/* Paginação Segmentada na Base do Slide */
.slide-navigation-progress-bar {
	position: absolute;
	bottom: 3rem;
	left: 5%;
	right: 5%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;
}

.progress-segments {
	display: flex;
	gap: 0.5rem;
	flex-grow: 1;
	max-width: 400px;
}

.progress-segment {
	height: 3px;
	flex-grow: 1;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: var(--border-radius-pill);
	transition: var(--transition-smooth);
}

.progress-segment.active {
	background-color: var(--primary-color);
}

.progress-counter {
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 1px;
	color: var(--primary-color);
}

/* Setas de Controle */
.slider-arrows {
	position: absolute;
	bottom: 8rem;
	right: 5%;
	display: flex;
	gap: 1rem;
	z-index: 10;
}

.slider-arrow {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-main);
	cursor: pointer;
	transition: var(--transition-smooth);
}

.slider-arrow:hover {
	background: var(--primary-color);
	color: var(--text-dark);
	border-color: var(--primary-color);
	transform: scale(1.05);
}

/* Responsividade Portfólio */
@media (max-width: 991px) {
	.slide-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.slide-right-col {
		height: auto;
		display: flex;
		flex-direction: row;
		gap: 1.5rem;
		justify-content: flex-start;
	}
	.floating-card {
		position: static;
		width: 100%;
		max-width: 320px;
	}
	.slide-title {
		font-size: 2.5rem;
	}
	.slider-arrows {
		bottom: 2rem;
		right: 5%;
	}
	.slide-navigation-progress-bar {
		bottom: 2.5rem;
		left: 5%;
		right: calc(5% + 130px);
	}
}

@media (max-width: 767px) {
	/* --- HERO MOBILE --- */
	.hero-right-col {
		align-items: center;
		text-align: center;
	}
	.hero-cta-wrapper {
		justify-content: center;
		width: 100%;
	}

	/* --- SERVIÇOS MOBILE --- */
	.service-card {
		text-align: center;
		align-items: center;
	}

	/* --- PORTFÓLIO MOBILE --- */
	.portfolio-section {
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
	}
	
	.portfolio-wrapper {
		height: auto;
		position: relative;
	}
	
	.portfolio-slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: auto;
		min-height: 100vh;
		min-height: 100dvh;
		background-image: var(--bg-mobile, var(--bg-desktop)); /* Carrega a imagem exclusiva de celular com fallback desktop */
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	
	.portfolio-slide.active {
		position: relative; /* Ocupa espaço no fluxo para forçar a altura e mostrar o background */
		opacity: 1;
		visibility: visible;
		display: flex;
		align-items: center;
	}
	
	.slide-container {
		padding: 5rem 0 7rem 0; /* Padding responsivo superior e inferior */
		height: auto;
	}
	
	.slide-grid {
		display: flex;
		flex-direction: column-reverse; /* Inverte a ordem: os cards flutuantes ficam em cima, e os textos/botão descem para a margem inferior */
		gap: 2.5rem;
	}

	.slide-left-col {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	
	.slide-right-col {
		height: auto;
		display: flex;
		flex-direction: column;
		gap: 1.5rem;
		position: relative;
		width: 100%;
	}
	
	.floating-card {
		position: relative;
		top: auto;
		left: auto;
		right: auto;
		bottom: auto;
		width: 100%;
		max-width: 100%;
	}
	
	/* Mostrador de itens (Paginação) logo abaixo da descrição */
	.slide-navigation-progress-bar {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		margin-top: 2.5rem;
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	/* Setas de navegação na base total */
	.slider-arrows {
		position: relative;
		bottom: auto;
		right: auto;
		margin-top: 1.5rem;
		display: flex;
		justify-content: center;
		width: 100%;
	}
}


/* ==========================================
   5. DEPOIMENTOS (TESTIMONIALS)
   ========================================== */
.testimonials-section {
	padding: 8rem 0;
	background-color: var(--bg-secondary);
}

.testimonials-slider-wrapper {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.testimonials-slider {
	position: relative;
	min-height: 250px;
}

.testimonial-slide {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.testimonial-slide.active {
	opacity: 1;
	visibility: visible;
	position: relative;
}

.testimonial-quote-icon {
	color: var(--primary-color);
	margin-bottom: 2rem;
	display: inline-flex;
	opacity: 0.3;
}

.testimonial-text {
	font-size: 1.5rem;
	line-height: 1.6;
	color: var(--text-main);
	margin-bottom: 2rem;
	font-weight: 400;
}

.testimonial-text p {
	margin: 0;
}

.testimonial-author-info {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	text-align: left;
}

.testimonial-author-photo {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--primary-color);
}

.testimonial-author-name {
	font-size: 1rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
}

.testimonial-author-company {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* Dots Navegação */
.testimonials-dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
}

.testimonial-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	cursor: pointer;
	padding: 0;
	transition: var(--transition-smooth);
}

.testimonial-dot.active {
	background-color: var(--primary-color);
	transform: scale(1.25);
}

/* Responsividade Depoimentos */
@media (max-width: 767px) {
	.testimonial-text {
		font-size: 1.25rem;
	}
	.testimonials-section {
		padding: 5rem 0;
	}
}


/* ==========================================
   6. BLOG POSTS
   ========================================== */
.blog-posts-section {
	padding: 8rem 0;
	background-color: var(--bg-color);
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.blog-post-card {
	background: var(--bg-secondary);
	border-radius: var(--border-radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.02);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: var(--transition-smooth);
}

.blog-post-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.08);
}

.blog-card-image-link {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.blog-card-image-wrapper {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: var(--transition-slow);
}

.blog-post-card:hover .blog-card-image-wrapper {
	transform: scale(1.05);
}

.blog-card-content {
	padding: 2rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card-date {
	font-size: 0.8rem;
	color: var(--primary-color);
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 0.75rem;
	text-transform: uppercase;
}

.blog-card-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 1rem;
	line-height: 1.3;
}

.blog-card-title a:hover {
	color: var(--primary-color);
}

.blog-card-excerpt {
	color: var(--text-muted);
	font-size: 0.9rem;
	margin-bottom: 1.5rem;
	line-height: 1.5;
	flex-grow: 1;
}

.blog-card-read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--primary-color);
}

.read-more-arrow {
	transition: var(--transition-smooth);
}

.blog-card-read-more:hover {
	color: var(--text-main);
}

.blog-card-read-more:hover .read-more-arrow {
	transform: translateX(4px);
}

/* Responsividade Blog */
@media (max-width: 991px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 767px) {
	.blog-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.blog-posts-section {
		padding: 5rem 0;
	}
}


/* ==========================================
   7. FINAL CTA & FOOTER
   ========================================== */
.final-cta-section {
	padding: 5rem 0;
	background-color: var(--bg-color);
}

.final-cta-card {
	background: var(--bg-secondary);
	border: 1px solid var(--glass-border);
	border-radius: var(--border-radius-lg);
	padding: 4.5rem 2rem;
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}

.final-cta-title {
	font-size: 2.8rem;
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 1.25rem;
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

.final-cta-desc {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 550px;
	margin: 0 auto 2.5rem auto;
}

/* FOOTER GIGANTE */
.site-footer {
	background-color: #010d08;
	padding: 6rem 0 3rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-brand-giant {
	width: 100%;
	text-align: center;
	margin-bottom: 5rem;
}

.brand-text-giant {
	font-size: 11vw;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 0.95;
	letter-spacing: -5px;
	text-transform: lowercase;
	display: block;
	user-select: none;
	padding-bottom: 0.05em;
}

.footer-details-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 2rem;
	align-items: flex-start;
	border-top: 1px solid rgba(255, 255, 255, 0.05);
	padding-top: 3rem;
}

/* Coluna 1: Links de Navegação */
.footer-links-list li {
	margin-bottom: 0.75rem;
}

.footer-links-list li a {
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--text-muted);
}

.footer-links-list li a:hover {
	color: var(--primary-color);
}

/* Coluna 2: Redes e E-mail */
.footer-social-column {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.social-icons-wrapper {
	display: flex;
	gap: 0.75rem;
}

.social-circle-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: var(--text-dark);
	transition: var(--transition-smooth);
}

.social-circle-link:hover {
	background-color: var(--text-main);
	transform: translateY(-2px);
}

.footer-email-contact {
	margin-top: 0.5rem;
}

.email-link {
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--text-main);
	border-bottom: 1.5px solid var(--primary-color);
	padding-bottom: 2px;
	letter-spacing: 0.5px;
}

.email-link:hover {
	color: var(--primary-color);
	border-color: var(--text-main);
}

/* Coluna 3: Políticas */
.policies-links-list li {
	margin-bottom: 0.75rem;
}

.policies-links-list li a {
	font-size: 0.8rem;
	color: var(--text-muted);
	letter-spacing: 0.5px;
}

.policies-links-list li a:hover {
	color: var(--primary-color);
}

/* Coluna 4: Copyright */
.footer-copyright-column {
	text-align: right;
}

.copyright-text {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
	letter-spacing: 0.5px;
}

/* Responsividade Footer */
@media (max-width: 991px) {
	.footer-details-grid {
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
	}
	.footer-copyright-column {
		text-align: left;
	}
	.final-cta-title {
		font-size: 2.2rem;
	}
}

@media (max-width: 575px) {
	.footer-details-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.brand-text-giant {
		letter-spacing: -2px;
	}
	.final-cta-card {
		padding: 3rem 1.5rem;
	}
	.final-cta-title {
		font-size: 1.8rem;
	}
}

/* ==========================================
   8. PAGINA DE POST INDIVIDUAL (SINGLE POST)
   ========================================== */
.single-post-main {
	padding-top: 0; /* Começa logo abaixo do header */
}

.post-hero {
	position: relative;
	height: 60vh;
	min-height: 450px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.post-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(2, 21, 13, 0.4) 0%, rgba(2, 21, 13, 0.92) 100%);
	z-index: 1;
}

.post-hero-container {
	position: relative;
	z-index: 2;
	margin-top: 5rem;
}

.post-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.category-pill {
	background-color: var(--primary-color);
	color: var(--text-dark);
	padding: 0.3rem 1.25rem;
	border-radius: var(--border-radius-pill);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	transition: var(--transition-smooth);
}

.category-pill:hover {
	background-color: var(--text-main);
	color: var(--bg-color);
	transform: translateY(-1px);
}

.post-title {
	font-size: 3.6rem;
	font-weight: 800;
	letter-spacing: -2px;
	line-height: 1.1;
	color: var(--text-main);
	margin-bottom: 2rem;
	max-width: 900px;
}

.post-meta {
	display: flex;
	gap: 2rem;
	color: var(--text-muted);
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 1.5rem;
	width: fit-content;
}

.post-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.meta-icon {
	color: var(--primary-color);
}

/* Corpo do Artigo */
.post-content-section {
	padding: 6rem 0;
	background-color: var(--bg-color);
}

.post-content-container {
	max-width: 800px;
	margin: 0 auto;
}

.post-entry-content {
	font-size: 1.15rem;
	line-height: 1.85;
	color: var(--text-muted);
}

.entry-content-wrapper p {
	margin: 0 0 2rem 0;
}

.entry-content-wrapper p:last-child {
	margin-bottom: 0;
}

.entry-content-wrapper h2,
.entry-content-wrapper h3,
.entry-content-wrapper h4 {
	color: var(--text-main);
	font-weight: 800;
	margin: 3.5rem 0 1.5rem 0;
	letter-spacing: -0.5px;
}

.entry-content-wrapper h2 {
	font-size: 2.2rem;
	border-left: 4px solid var(--primary-color);
	padding-left: 1.25rem;
}

.entry-content-wrapper h3 {
	font-size: 1.75rem;
}

.entry-content-wrapper h4 {
	font-size: 1.35rem;
}

.entry-content-wrapper a {
	color: var(--primary-color);
	border-bottom: 1px solid var(--primary-color);
	font-weight: 500;
	padding-bottom: 1px;
}

.entry-content-wrapper a:hover {
	color: var(--text-main);
	border-color: var(--text-main);
}

.entry-content-wrapper blockquote {
	margin: 3rem 0;
	padding: 1.5rem 2rem;
	background: var(--bg-secondary);
	border-left: 4px solid var(--primary-color);
	border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
	font-style: italic;
	font-size: 1.3rem;
	color: var(--text-main);
}

.entry-content-wrapper blockquote p {
	margin-bottom: 0;
}

/* Imagens no conteúdo */
.entry-content-wrapper img {
	border-radius: var(--border-radius-md);
	margin: 2.5rem 0;
	max-width: 100%;
}

.entry-content-wrapper ul,
.entry-content-wrapper ol {
	margin: 0 0 2rem 1.5rem;
}

.entry-content-wrapper ul {
	list-style-type: disc;
}

.entry-content-wrapper ol {
	list-style-type: decimal;
}

.entry-content-wrapper li {
	margin-bottom: 0.5rem;
}

/* Tags no Rodapé */
.post-tags-container {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-top: 5rem;
	padding-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tags-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-main);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.tags-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.tag-link {
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text-muted);
	background-color: var(--bg-secondary);
	border: 1px solid var(--glass-border);
	padding: 0.35rem 1rem;
	border-radius: var(--border-radius-sm);
	transition: var(--transition-smooth);
}

.tag-link:hover {
	background-color: var(--primary-color);
	color: var(--text-dark);
	border-color: var(--primary-color);
	transform: translateY(-1px);
}

/* Posts Relacionados */
.related-posts-section {
	padding: 6rem 0;
	background-color: var(--bg-secondary);
	border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.related-header {
	margin-bottom: 3.5rem;
}

.related-title {
	font-size: 2.2rem;
	font-weight: 800;
	letter-spacing: -1px;
	color: var(--text-main);
	position: relative;
	display: inline-block;
}

.related-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 40px;
	height: 3px;
	background-color: var(--primary-color);
}

/* Responsividade do Single */
@media (max-width: 991px) {
	.post-title {
		font-size: 2.8rem;
	}
	.post-hero {
		height: 50vh;
	}
}

@media (max-width: 767px) {
	.post-hero {
		height: auto;
		min-height: 400px;
		padding: 8rem 0 3rem 0;
	}
	.post-hero-container {
		margin-top: 2rem;
	}
	.post-title {
		font-size: 2.2rem;
		letter-spacing: -1px;
		margin-bottom: 1.5rem;
	}
	.post-meta {
		flex-direction: column;
		gap: 0.75rem;
		padding-top: 1rem;
	}
	.post-content-section {
		padding: 4rem 0;
	}
	.post-tags-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
		margin-top: 3.5rem;
		padding-top: 2rem;
	}
}

/* ==========================================
   9. PÁGINAS DE ARQUIVOS (ARCHIVES - CATEGORIAS & TAGS)
   ========================================== */
.archive-main {
	padding-top: 0;
}

.archive-hero {
	position: relative;
	padding: 10rem 0 5rem 0;
	background-color: var(--bg-secondary);
	border-bottom: 1px solid rgba(255, 255, 255, 0.04);
	text-align: left;
}

.archive-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(2, 21, 13, 0.2) 0%, rgba(2, 21, 13, 0.8) 100%);
	z-index: 1;
}

.archive-hero-container {
	position: relative;
	z-index: 2;
}

.archive-subtitle {
	color: var(--primary-color);
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 1rem;
}

.archive-title {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--text-main);
	letter-spacing: -2px;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.archive-description {
	font-size: 1.1rem;
	color: var(--text-muted);
	max-width: 600px;
	line-height: 1.6;
}

.archive-content-section {
	padding: 6rem 0;
	background-color: var(--bg-color);
}

/* Paginação Premium */
.archive-pagination {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}

.archive-pagination .pagination {
	display: flex;
	justify-content: center;
	width: 100%;
}

.archive-pagination .nav-links {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: var(--border-radius-sm);
	border: 1px solid var(--glass-border);
	background-color: var(--glass-bg);
	font-weight: 600;
	color: var(--text-muted);
	transition: var(--transition-smooth);
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
	background-color: var(--primary-color);
	color: var(--text-dark);
	border-color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(5, 242, 124, 0.15);
}

.archive-pagination .page-numbers.prev,
.archive-pagination .page-numbers.next {
	width: auto;
	padding: 0 1.5rem;
	gap: 0.5rem;
}

.archive-pagination .page-numbers.dots {
	background: transparent;
	border-color: transparent;
	color: var(--text-muted);
	cursor: default;
}

.archive-pagination .page-numbers.dots:hover {
	transform: none;
	box-shadow: none;
	background: transparent;
	color: var(--text-muted);
}

/* Estado Vazio */
.no-posts-found {
	padding: 4rem 2rem;
	background: var(--bg-secondary);
	border-radius: var(--border-radius-lg);
	border: 1px solid var(--glass-border);
	max-width: 600px;
	margin: 0 auto;
}

.no-posts-title {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: var(--text-main);
}

.no-posts-desc {
	color: var(--text-muted);
	margin-bottom: 2rem;
}

/* Responsividade do Arquivo */
@media (max-width: 991px) {
	.archive-title {
		font-size: 2.8rem;
	}
	.archive-hero {
		padding: 8rem 0 4rem 0;
	}
}

@media (max-width: 767px) {
	.archive-hero {
		padding: 7rem 0 3rem 0;
	}
	.archive-title {
		font-size: 2.2rem;
		letter-spacing: -1px;
	}
	.archive-pagination .nav-prev-text,
	.archive-pagination .nav-next-text {
		display: none; /* Oculta o texto Anterior/Próximo em telas muito pequenas para não quebrar */
	}
	.archive-pagination .page-numbers.prev,
	.archive-pagination .page-numbers.next {
		padding: 0;
		width: 45px; /* Deixa apenas as setas em formato quadrado no mobile */
	}
}
