/*
Theme Name: Tema 3 desenvolvido por Trek Mobi Connect
Theme URI: https://trekmobi.com
Author: Trek Mobi Connect
Description: Tema 03
Version: 1.0.0
Text Domain: tema-03
*/

/* ============================================
   CSS RESET
   ============================================ */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #333333;
	background-color: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.admin-bar {
	margin-top: 0 !important;
}

#page, .site {
	margin: 0;
	padding: 0;
	width: 100%;
}

main {
	margin: 0;
	padding: 0;
	width: 100%;
}

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */

:root {
	/* Cores principais - Tema 3 */
	--t03-primary: #000000;
	--t03-primary-dark: #00cc00;
	--t03-primary-light: #33ff33;
	
	/* Cores neutras */
	--t03-white: #ffffff;
	--t03-black: #000000;
	--t03-gray-50: #f9fafb;
	--t03-gray-100: #f3f4f6;
	--t03-gray-200: #e5e7eb;
	--t03-gray-300: #d1d5db;
	--t03-gray-400: #9ca3af;
	--t03-gray-500: #6b7280;
	--t03-gray-600: #4b5563;
	--t03-gray-700: #374151;
	--t03-gray-800: #1f2937;
	--t03-gray-900: #111827;
	
	/* Tipografia */
	--t03-font-family: 'Montserrat', sans-serif;
	
	/* Espaçamentos */
	--t03-header-height: 70px;
	--t03-container-padding: 20px;
	
	/* Border Radius */
	--t03-radius-sm: 4px;
	--t03-radius-md: 8px;
	--t03-radius-lg: 12px;
	--t03-radius-full: 9999px;
	
	/* Transições */
	--t03-transition: 0.3s ease;
	
	/* Z-index */
	--t03-z-header: 1000;
	--t03-z-overlay: 1001;
	--t03-z-panel: 1002;
	
	/* Botão verde neon */
	--t03-btn-bg: #E0FF64;
	--t03-btn-text: #000000;
}

/* ============================================
   SKIP LINK (Acessibilidade)
   ============================================ */

.t03-skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	padding: 12px 20px;
	background-color: var(--t03-primary);
	color: var(--t03-black);
	text-decoration: none;
	font-weight: 600;
	z-index: 9999;
	transition: top var(--t03-transition);
}

.t03-skip-link:focus {
	top: 0;
}

/* ============================================
   HEADER
   ============================================ */

.t03-header {
	position: sticky;
	top: 0;
	background-color: var(--t03-white);
	border-bottom: 1px solid var(--t03-gray-200);
	height: var(--t03-header-height);
	display: flex;
	align-items: center;
	z-index: var(--t03-z-header);
}

.t03-header__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--t03-container-padding);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/* Mobile: reorganizar ordem */
@media (max-width: 1023px) {
	.t03-header {
		height: 70px;
	}

	.t03-header__container {
		display: grid;
		grid-template-columns: 40px 1fr 40px;
		align-items: center;
		justify-items: center;
		gap: 12px;
		padding: 0 16px;
	}

	.t03-menu-toggle {
		grid-column: 1;
		grid-row: 1;
		justify-self: start;
		align-self: center;
	}

	.t03-header__logo {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		align-self: center;
		display: flex;
		align-items: center;
		max-width: 100%;
		overflow: hidden;
	}

	.t03-header__logo img,
	.t03-header__logo .custom-logo {
		max-height: 50px;
		max-width: 200px;
		width: auto;
		height: auto;
	}

	.t03-header__search {
		grid-column: 3;
		grid-row: 1;
		justify-self: end;
		align-self: center;
		margin-left: 0;
	}

	.t03-header__nav {
		display: none;
	}
}
/* ============================================
   LOGO
   ============================================ */

.t03-header__logo {
	flex-shrink: 0;
}

.t03-header__logo img,
.t03-header__logo .custom-logo {
	max-height: 40px;
	width: auto;
	height: auto;
	display: block;
}

/* Logo arredondado cinza escuro */
.t03-logo-text {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #4b5563;
	color: var(--t03-white);
	text-decoration: none;
	font-family: 'Montserrat', var(--t03-font-family);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	padding: 8px 32px;
	border-radius: 100px;
	height: 36px;
	min-width: 120px;
}

/* ============================================
   MENU DESKTOP
   ============================================ */

.t03-header__nav {
	display: none;
}

.t03-nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.t03-nav__list a {
	font-family: 'Montserrat', var(--t03-font-family);
	font-size: 16px;
	font-weight: 500;
	color: var(--t03-gray-800);
	text-decoration: none;
	transition: color var(--t03-transition);
}

.t03-nav__list a:hover {
	color: #E0FF64;
}

/* ============================================
   SEARCH BAR
   ============================================ */

.t03-header__search {
	flex-shrink: 0;
}

/* Mobile: apenas ícone */
.t03-search__form {
	display: flex;
	align-items: center;
	position: relative;
}

.t03-search__input {
	display: none;
}

.t03-search__button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: var(--t03-gray-800);
	cursor: pointer;
	transition: color var(--t03-transition);
	flex-shrink: 0;
}

.t03-search__button:hover {
	color: var(--t03-primary);
}

.t03-search__button svg {
	width: 24px;
	height: 24px;
	display: block;
}

/* Desktop: input completo */
@media (min-width: 1024px) {
	.t03-search__form {
		gap: 8px;
		background-color: var(--t03-gray-100);
		border-radius: var(--t03-radius-full);
		padding: 8px 16px;
		width: 280px;
		transition: background-color var(--t03-transition);
	}

	.t03-search__form:focus-within {
		background-color: var(--t03-gray-200);
	}

	.t03-search__input {
		display: block;
		flex: 1;
		border: none;
		background: none;
		font-family: 'Montserrat', var(--t03-font-family);
		font-size: 14px;
		color: var(--t03-gray-900);
		outline: none;
	}

	.t03-search__input::placeholder {
		color: var(--t03-gray-500);
	}

	.t03-search__button {
		width: 24px;
		height: 24px;
		color: var(--t03-gray-600);
	}
}

/* ============================================
   MENU HAMBURGUER
   ============================================ */

.t03-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: var(--t03-gray-800);
	cursor: pointer;
	flex-shrink: 0;
	transition: color var(--t03-transition);
}

.t03-menu-toggle svg {
	width: 24px;
	height: 24px;
	display: block;
}

/* ============================================
   MENU MOBILE
   ============================================ */
.t03-mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--t03-z-overlay);
	visibility: hidden;
	opacity: 0;
	transition: opacity var(--t03-transition), visibility var(--t03-transition);
}

.t03-mobile-menu--open {
	visibility: visible;
	opacity: 1;
}

.t03-mobile-menu__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.t03-mobile-menu__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 320px;
	height: 100vh;
	background-color: #000;
	padding: 24px 32px 40px;
	transform: translateX(100%);
	transition: transform var(--t03-transition);
	overflow-y: auto;
	z-index: var(--t03-z-panel);
	display: flex;
	flex-direction: column;
	border-radius: 20px 0 0 20px;
}

.t03-mobile-menu--open .t03-mobile-menu__panel {
	transform: translateX(0);
}

.t03-mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin-bottom: 32px;
	padding: 0;
	border: none;
	background: none;
	color: #ffffff;
	cursor: pointer;
	align-self: flex-end;
}

.t03-mobile-menu__close:hover {
	color: #01c38e;
}

.t03-mobile-menu__close svg {
	width: 24px;
	height: 24px;
}

.t03-mobile-menu__primary {
	margin-bottom: 40px;
}

.t03-mobile-menu__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 20px 0;
}

.t03-mobile-nav__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.t03-mobile-nav__list li {
	margin-bottom: 0;
}

.t03-mobile-nav__list a {
	display: block;
	color: #ffffff;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 20px;
	font-weight: 600;
	padding: 14px 0;
	text-decoration: none;
	border-radius: 0;
	transition: color 0.3s ease;
}

.t03-mobile-nav__list a:hover {
	color: #01c38e;
	background-color: transparent;
}

/* Newsletter no menu mobile */
.t03-mobile-menu__categories {
	margin-top: auto;
	padding-top: 32px;
}

.t03-mobile-menu__newsletter-title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 16px 0;
}

.t03-mobile-menu__newsletter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	background-color: #ffffff;
	color: #005443;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease;
}

.t03-mobile-menu__newsletter-btn:hover {
	transform: scale(1.05);
}

/* ============================================
   DESKTOP (1024px+)
   ============================================ */

@media (min-width: 1024px) {
	
	.t03-header__container {
		display: flex;
		grid-template-columns: unset;
		gap: 32px;
		justify-content: flex-start;
		justify-items: unset;
	}
	
	.t03-header__nav {
		display: block;
	}

	.t03-header__logo {
		justify-self: unset;
	}

	.t03-header__search {
		display: block;
		margin-left: auto;
		justify-self: unset;
	}

	.t03-menu-toggle {
		display: block;
		justify-self: unset;
	}

	.t03-mobile-menu__primary {
		display: none;
	}
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.t03-main {
	min-height: 100vh;
	padding: 0;
}

/* ============================================
   HERO SECTION (1 card único)
   ============================================ */

.t03-hero {
	width: 100%;
	background-color: #ffffff;
	padding: 40px 20px;
}

.t03-hero__container {
	max-width: 1600px;
	margin: 0 auto;
}

.t03-hero-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 450px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t03-hero-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.t03-hero-card__link {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 450px;
	text-decoration: none;
	position: relative;
}

.t03-hero-card__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.t03-hero-card__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.t03-hero-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #374151 0%, #111827 100%);
}

.t03-hero-card__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(19, 26, 5, 1) 0%,
		rgba(19, 26, 5, 0.95) 20%,
		rgba(19, 26, 5, 0.7) 45%,
		rgba(100, 100, 100, 0.3) 70%,
		rgba(200, 200, 200, 0) 100%
	);
	z-index: 2;
}

.t03-hero-card__content {
	position: absolute;
	top: 50%;
	left: 60px;
	transform: translateY(-50%);
	z-index: 3;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 700px;
}

.t03-hero-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
	color: #ffffff;
}

.t03-hero-card__excerpt {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	margin: 0;
	color: #ffffff;
	opacity: 0.95;
}

.t03-hero-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background-color: #E0FF64;
	color: #000000;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}

.t03-hero-card__link:hover .t03-hero-card__btn {
	transform: translateY(-2px);
}

/* ============================================
   FEATURED SECTION (Texto + Grid 2x2)
   ============================================ */

.t03-featured {
	width: 100%;
	background: #ffffff;
	padding: 40px 20px;
}

.t03-featured__container {
background: linear-gradient(
	90deg,
	rgba(180, 180, 180, 1) 0%,
	rgba(160, 160, 160, 1) 15%,
	rgba(19, 26, 5, 0.6) 50%,
	rgba(19, 26, 5, 1) 85%,
	rgba(19, 26, 5, 1) 100%
);
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	border-radius: 20px;
}

.t03-featured__text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 0 40px 0 60px;
}

.t03-featured__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
	color: #ffffff;
	margin: 0;
}

.t03-featured__description {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #ffffff;
	margin: 0;
	opacity: 0.95;
}

.t03-featured__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 32px;
	background-color: #E0FF64;
	color: #000000;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}

.t03-featured__btn:hover {
	transform: translateY(-2px);
}

.t03-featured__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 35px;
	padding: 40px 20px;
}

.t03-featured-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 220px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t03-featured-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.t03-featured-card__link {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	text-decoration: none;
	position: relative;
}

.t03-featured-card__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.t03-featured-card__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.t03-featured-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.t03-featured-card__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
background: linear-gradient(
	180deg,
	rgba(0, 0, 0, 0) 0%,
	rgba(0, 0, 0, 0.3) 50%,
	rgba(19, 26, 5, 0.9) 100%
);
	z-index: 2;
}

.t03-featured-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 20px;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.t03-featured-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
	margin: 0;
	color: #ffffff;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.t03-featured-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 20px;
	background-color: #E0FF64;
	color: #000000;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	width: fit-content;
}

.t03-featured-card__link:hover .t03-featured-card__btn {
	transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1023px)
   ============================================ */

@media (max-width: 1023px) {
	.t03-hero-card__content {
		left: 40px;
		max-width: 600px;
	}

	.t03-hero-card__title {
		font-size: 40px;
	}

	.t03-featured__container {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.t03-featured__text {
		padding: 0 20px;
		text-align: center;
		align-items: center;
	}

	.t03-featured__title {
		font-size: 36px;
	}
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */

@media (max-width: 767px) {
	.t03-hero {
		padding: 20px 16px;
	}

	.t03-hero-card {
		min-height: 500px;
	}

	.t03-hero-card__link {
		min-height: 500px;
	}

	.t03-hero-card__content {
		padding: 0 24px;
		max-width: 100%;
		top: auto;
		bottom: 40px;
		left: 0;
		right: 0;
		transform: none;
	}

	.t03-hero-card__title {
		font-size: 32px;
	}

	.t03-hero-card__excerpt {
		font-size: 15px;
	}

	.t03-hero-card__btn {
		padding: 12px 28px;
		font-size: 15px;
	}

	.t03-featured {
		padding: 40px 16px;
	}

	.t03-featured__text {
		padding: 0;
	}

	.t03-featured__title {
		font-size: 32px;
		padding: 30px;
	}

	.t03-featured__description {
		font-size: 15px;
	}

	.t03-featured__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}

	.t03-featured-card {
		min-height: 200px;
	}

	.t03-featured-card__link {
		min-height: 200px;
	}

	.t03-featured-card__content {
		padding: 16px;
	}

	.t03-featured-card__title {
		font-size: 14px;
	}

	.t03-featured-card__btn {
		padding: 6px 16px;
		font-size: 13px;
	}
}

/* ============================================
   POPULARES SECTION (3 cards horizontais)
   ============================================ */

.t03-popular {
	width: 100%;
	background-color: #ffffff;
	padding: 80px 20px;
}

.t03-popular__container {
	max-width: 1600px;
	margin: 0 auto;
}

.t03-popular__header {
	text-align: center;
	margin-bottom: 60px;
}

.t03-popular__label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #000000;
	margin-bottom: 12px;
}

.t03-popular__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
	margin: 0;
}

.t03-popular__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* ============================================
   POPULAR CARD (horizontal)
   ============================================ */

.t03-popular-card {
	background-color: #f7f7f7;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: row;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 180px;
}

.t03-popular-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.t03-popular-card__thumb {
	display: block;
	width: 180px;
	flex-shrink: 0;
	overflow: hidden;
	padding: 10px;
	border-radius: 10px;
}

.t03-popular-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.3s ease;
}

.t03-popular-card:hover .t03-popular-card__thumb img {
	transform: scale(1.05);
}

.t03-popular-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	border-radius: 10px;
}

.t03-popular-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex-grow: 1;
	justify-content: space-between;
}

.t03-popular-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #000000;
	margin: 0;
	flex-grow: 1;
}

.t03-popular-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.t03-popular-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	background-color: #E0FF64;
	color: #000000;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.t03-popular-card__btn:hover {
	transform: translateY(-2px);
}

/* ============================================
   VEJA TAMBÉM SECTION (12 cards - 4x3)
   ============================================ */

.t03-see-also {
	width: 100%;
	background-color: #ffffff;
	padding: 80px 20px;
}

.t03-see-also__container {
	max-width: 1600px;
	margin: 0 auto;
}

.t03-see-also__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: #000000;
	text-align: center;
	margin: 0 0 60px 0;
}

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

/* ============================================
   SEE ALSO CARD
   ============================================ */

.t03-see-also-card {
	background-color: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e5e7eb;
}

.t03-see-also-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Category Label (topo verde) */
.t03-see-also-card__cat {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 32px;
}

.t03-see-also-card__cat-name {
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #000000;
	text-transform: uppercase;
	padding: 8px 16px;
}

.t03-see-also-card__thumb {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background-color: #d1d5db;
}

.t03-see-also-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.3s ease;
}

.t03-see-also-card:hover .t03-see-also-card__thumb img {
	transform: scale(1.05);
}

.t03-see-also-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d1d5db 0%, #9ca3af 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
}

.t03-see-also-card__content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	flex-grow: 1;
}

.t03-see-also-card__title {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
	color: #000000;
	margin: 0;
	flex-grow: 1;
}

.t03-see-also-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.t03-see-also-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	background-color: #E0FF64;
	color: #000000;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.t03-see-also-card__btn:hover {
	transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE - TABLET (768px - 1023px)
   ============================================ */

@media (max-width: 1023px) {
	.t03-popular {
		padding: 60px 20px;
	}

	.t03-popular__title {
		font-size: 40px;
	}

	.t03-popular__header {
		margin-bottom: 40px;
	}

	.t03-popular__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t03-see-also {
		padding: 60px 20px;
	}

	.t03-see-also__title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.t03-see-also__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* ============================================
   RESPONSIVE - MOBILE (< 768px)
   ============================================ */

@media (max-width: 767px) {
	.t03-popular {
		padding: 40px 16px;
	}

	.t03-popular__title {
		font-size: 36px;
	}

	.t03-popular__label {
		font-size: 12px;
	}

	.t03-popular__header {
		margin-bottom: 32px;
	}

	.t03-popular__grid {
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.t03-popular-card {
		flex-direction: column;
		min-height: auto;
	}

	.t03-popular-card__thumb {
		width: 100%;
		height: 200px;
	}

	.t03-popular-card__content {
		padding: 20px;
	}

	.t03-see-also {
		padding: 40px 16px;
	}

	.t03-see-also__title {
		font-size: 36px;
		margin-bottom: 32px;
	}

	.t03-see-also__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t03-see-also-card__thumb {
		height: 220px;
	}
}

/* ============================================
   FOOTER - TEMA 03
   Layout: 3 colunas + Categorias + Copyright
   ============================================ */

.t3-footer {
	background-color: #FFFFFF;
	padding: 60px 0 40px 0;
	font-family: 'Montserrat', sans-serif;
}

.t3-footer__container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* ============================================
   SEÇÃO 1: GRID 3 COLUNAS (com fundo cinza)
   ============================================ */

.t3-footer__top-grid {
	background-color: #F5F5F5;
	border-radius: 24px;
	padding: 60px 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 80px;
	margin-bottom: 40px;
	align-items: start;
}

/* COLUNA 1: LOGO + TAGLINE */
.t3-footer__col--logo {
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center;
}

.t3-footer__logo {
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 40px 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	width: 100%;
}

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

.t3-footer__logo-placeholder {
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 40px 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100px;
	width: 100%;
}

.t3-footer__logo-placeholder span {
	font-size: 36px;
	font-weight: 700;
	color: #000000;
	letter-spacing: 2px;
}

.t3-footer__tagline {
	font-size: 13px;
	line-height: 1.7;
	color: #666666;
	margin: 0;
	text-align: center;
	max-width: 280px;
}

/* COLUNA 2: NEWSLETTER */
.t3-footer__col--newsletter {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	text-align: center;
}

.t3-footer__section-title {
	font-size: 28px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 8px 0;
	letter-spacing: -0.5px;
}

.t3-footer__newsletter-text {
	font-size: 13px;
	line-height: 1.6;
	color: #666666;
	margin: 0 0 20px 0;
	max-width: 380px;
}

.t3-footer__newsletter-form {
	margin-bottom: 12px;
	width: 100%;
	max-width: 500px;
}

.t3-footer__newsletter-input-wrap {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	align-items: center;
}

.t3-footer__newsletter-input {
	flex: 1;
	padding: 14px 20px;
	border: 1px solid #D0D0D0;
	border-radius: 12px;
	font-size: 13px;
	font-family: 'Montserrat', sans-serif;
	background-color: #FFFFFF;
	color: #666666;
	transition: border-color 0.3s ease;
}

.t3-footer__newsletter-input:focus {
	outline: none;
	border-color: #000000;
}

.t3-footer__newsletter-input::placeholder {
	color: #999999;
}

.t3-footer__newsletter-btn {
	padding: 14px 36px;
	background-color: #000000;
	color: #FFFFFF;
	border: none;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
	transition: background-color 0.3s ease;
	white-space: nowrap;
	letter-spacing: 0.5px;
}

.t3-footer__newsletter-btn:hover {
	background-color: #333333;
}

.t3-footer__newsletter-disclaimer {
	font-size: 10px;
	line-height: 1.5;
	color: #999999;
	margin: 0;
	max-width: 500px;
}

/* COLUNA 3: RELEVANT LINKS */
.t3-footer__col--links {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	text-align: center;
}

.t3-footer__links-menu {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.t3-footer__links-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
}

.t3-footer__links-list li {
	margin: 0;
	padding: 0;
}

.t3-footer__link {
	font-size: 15px;
	font-weight: 500;
	color: #000000;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
}

.t3-footer__link:hover {
	color: #666666;
}

/* ============================================
   SEÇÃO 2: CATEGORIAS (com fundo cinza)
   ============================================ */

.t3-footer__categories-section {
	background-color: #F5F5F5;
	border-radius: 24px;
	padding: 50px 80px;
	margin-bottom: 40px;
}

.t3-footer__categories-title {
	font-size: 28px;
	font-weight: 700;
	color: #000000;
	margin: 0 0 32px 0;
	letter-spacing: -0.5px;
}

.t3-footer__categories-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: flex-start;
}

.t3-footer__category-btn {
	padding: 14px 32px;
	background-color: #FFFFFF;
	border: 2px solid #E0E0E0;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 500;
	color: #000000;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.t3-footer__category-btn:hover {
	background-color: #000000;
	color: #FFFFFF;
	border-color: #000000;
}

/* ============================================
   SEÇÃO 3: COPYRIGHT + LOGO TREK
   ============================================ */

.t3-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px 20px 40px;
}

.t3-footer__copyright {
	display: flex;
	align-items: center;
}

.t3-footer__copyright-text {
	font-size: 13px;
	color: #666666;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.t3-footer__separator {
	color: #666666;
	font-weight: 300;
}

.t3-footer__brand {
	display: flex;
	align-items: center;
}

.t3-footer__brand-logo {
	height: auto;
	max-height: 45px;
	width: auto;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media screen and (max-width: 1024px) {
	.t3-footer {
		padding: 40px 0 30px 0;
	}
	
	.t3-footer__container {
		padding: 0 30px;
	}
	
	.t3-footer__top-grid {
		padding: 50px 60px;
		gap: 60px;
		margin-bottom: 30px;
	}
	
	.t3-footer__categories-section {
		padding: 40px 60px;
		margin-bottom: 30px;
	}
	
	.t3-footer__bottom {
		padding: 0 30px 20px 30px;
	}
}

@media screen and (max-width: 768px) {
	.t3-footer__top-grid {
		grid-template-columns: 1fr;
		padding: 40px 40px;
		gap: 50px;
	}
	
	.t3-footer__categories-section {
		padding: 40px 40px;
	}
	
	.t3-footer__categories-buttons {
		justify-content: center;
	}
	
	.t3-footer__bottom {
		flex-direction: column;
		gap: 20px;
		text-align: center;
	}
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media screen and (max-width: 640px) {
	.t3-footer {
		padding: 30px 0 20px 0;
	}
	
	.t3-footer__container {
		padding: 0 20px;
	}
	
	.t3-footer__top-grid {
		padding: 30px 24px;
		gap: 40px;
		margin-bottom: 24px;
		border-radius: 16px;
	}
	
	.t3-footer__logo {
		border-radius: 16px;
		padding: 30px 40px;
	}
	
	.t3-footer__logo-placeholder {
		border-radius: 16px;
		padding: 30px 40px;
	}
	
	.t3-footer__logo-placeholder span {
		font-size: 28px;
	}
	
	.t3-footer__section-title {
		font-size: 24px;
	}
	
	.t3-footer__newsletter-input-wrap {
		flex-direction: column;
		gap: 10px;
	}
	
	.t3-footer__newsletter-btn {
		width: 100%;
		padding: 16px 32px;
	}
	
	.t3-footer__categories-section {
		padding: 30px 24px;
		margin-bottom: 20px;
		border-radius: 16px;
	}
	
	.t3-footer__categories-title {
		font-size: 24px;
		margin-bottom: 24px;
	}
	
	.t3-footer__categories-buttons {
		gap: 10px;
		justify-content: center;
	}
	
	.t3-footer__category-btn {
		padding: 12px 24px;
		font-size: 13px;
		border-radius: 10px;
	}
	
	.t3-footer__bottom {
		padding: 0 20px 16px 20px;
	}
	
	.t3-footer__copyright-text {
		font-size: 11px;
		flex-direction: column;
		gap: 4px;
	}
	
	.t3-footer__separator {
		display: none;
	}
	
	.t3-footer__brand-logo {
		max-height: 35px;
	}
}

/* ============================================
   TEMA 3 - CATEGORY PAGE
   ============================================ */

/* ============================================
   HERO SECTION - Banner com Gradiente
   ============================================ */
.t3-category-hero {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-category-hero__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-category-hero__banner {
	position: relative;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t3-category-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.t3-category-hero__gradient {
	position: absolute;
	inset: 0;
background: linear-gradient(
	180deg,
	rgba(0, 0, 0, 0) 0%,
	rgba(19, 26, 5, 1) 100%
);
	z-index: 2;
}

.t3-category-hero__title {
	position: relative;
	z-index: 3;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
	color: #ffffff;
	text-align: center;
	margin: 0;
	padding: 0 40px;
}

/* ============================================
   POSTS DESTACADOS - 4 Cards
   ============================================ */
.t3-featured-posts {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-featured-posts__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-featured-posts__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

/* Featured Card */
.t3-featured-card {
	position: relative;
	flex: 1 0 0;
	min-width: 290px;
	aspect-ratio: 1 / 1;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t3-featured-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.t3-featured-card__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.t3-featured-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t3-featured-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a2006 0%, #131A05 100%);
}

.t3-featured-card__gradient {
	position: absolute;
	inset: 0;
background: linear-gradient(
	180deg,
	rgba(0, 0, 0, 0) 0%,
	#131A05 100%
);
	z-index: 2;
}

.t3-featured-card__content {
	position: relative;
	z-index: 3;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 13px;
	align-items: flex-start;
}

.t3-featured-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
	width: 100%;
	word-wrap: break-word;
}

.t3-featured-card__title a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
}

.t3-featured-card__title a:hover {
	color: #01c38e;
}

/* Botão sobre fundo escuro = branco com texto verde */
.t3-featured-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #E0FF64;
	border: 1px solid #E0FF64;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.t3-featured-card__btn:hover {
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	transform: scale(1.05);
}

/* ============================================
   GRID DE POSTS - Desktop 2 colunas
   ============================================ */
.t3-posts-grid {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-posts-grid__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-posts-grid__wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

/* Post Card - Layout Horizontal */
.t3-post-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t3-post-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.t3-post-card__image {
	flex: 1;
	min-width: 0;
	height: 100%;
	min-height: 150px;
	border-radius: 16px;
	overflow: hidden;
}

.t3-post-card__image a {
	display: block;
	width: 100%;
	height: 100%;
}

.t3-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.t3-post-card:hover .t3-post-card__img {
	transform: scale(1.05);
}

.t3-post-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e5e7eb;
	border-radius: 16px;
}

.t3-post-card__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px;
	align-items: flex-start;
}

.t3-post-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #000000;
	width: 100%;
	word-wrap: break-word;
}

.t3-post-card__title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.t3-post-card__title a:hover {
	color: #01c38e;
}

/* Botão sobre neutro = verde teal */
.t3-post-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #E0FF64;
	border: 1px solid #E0FF64;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.t3-post-card__btn:hover {
	box-shadow: 0 0 25px rgba(1, 195, 142, 0.4);
	transform: scale(1.05);
}

/* Empty State */
.t3-posts-grid__empty {
	text-align: center;
	padding: 60px 20px;
	color: #6b7280;
	font-size: 18px;
}

/* ============================================
   PAGINAÇÃO
   ============================================ */
.t3-pagination {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-pagination__wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-pagination__nav {
	background-color: #005443;
	border-radius: 20px;
	padding: 24px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.t3-pagination__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 100px;
	color: #000000;
	text-decoration: none;
	transition: all 0.3s ease;
	flex-shrink: 0;
	cursor: pointer;
}

.t3-pagination__arrow:hover {
	background-color: #f3f4f6;
	transform: scale(1.05);
}

.t3-pagination__arrow svg {
	width: 24px;
	height: 24px;
}

.t3-pagination__arrow--disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.t3-pagination__numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 100px;
	padding: 5px 20px;
}

.t3-pagination__number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 34px;
	padding: 8px 12px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 100px;
	color: #ffffff;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.t3-pagination__number:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.t3-pagination__number--active {
	background-color: rgba(255, 255, 255, 0.15);
	border-color: #01c38e;
	color: #01c38e;
	cursor: default;
	box-shadow: 0 0 15px rgba(1, 195, 142, 0.3);
}

/* ============================================
   RESPONSIVO - TABLET (1200px)
   ============================================ */
@media (max-width: 1200px) {
	.t3-featured-posts__grid {
		gap: 16px;
	}
	
	.t3-featured-card {
		min-width: calc(50% - 8px);
		max-width: calc(50% - 8px);
	}
	
	.t3-category-hero__title {
		font-size: 36px;
	}
}

/* ============================================
   RESPONSIVO - MOBILE (768px)
   Conforme Figma: hero menor, featured cards 
   em scroll horizontal, post grid 1 coluna
   ============================================ */
@media (max-width: 768px) {

	/* HERO - menor e centralizado */
	.t3-category-hero {
		padding: 20px 0;
	}
	
	.t3-category-hero__banner {
		height: 200px;
		border-radius: 16px;
	}
	
	.t3-category-hero__title {
		font-size: 24px;
		padding: 0 20px;
	}

	/* FEATURED POSTS - scroll horizontal como no Figma */
	.t3-featured-posts {
		padding: 20px 0;
	}

	.t3-featured-posts__container {
		padding: 0;
	}

	.t3-featured-posts__grid {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		gap: 12px;
		padding: 0 20px;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.t3-featured-posts__grid::-webkit-scrollbar {
		display: none;
	}

	.t3-featured-card {
		min-width: 140px;
		max-width: 140px;
		flex-shrink: 0;
		aspect-ratio: auto;
		height: 180px;
		border-radius: 16px;
		scroll-snap-align: start;
	}

	.t3-featured-card__content {
		padding: 12px;
		gap: 8px;
	}

	.t3-featured-card__title {
		font-size: 12px;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.t3-featured-card__btn {
		font-size: 12px;
		padding: 5px 12px;
	}

	/* POST GRID - 1 coluna, layout horizontal mantido */
	.t3-posts-grid {
		padding: 20px 0 40px;
	}

	.t3-posts-grid__container {
		padding: 0 20px;
	}

	.t3-posts-grid__wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t3-post-card {
		flex-direction: row;
		align-items: center;
		padding: 8px;
		min-height: 100px;
	}

	.t3-post-card__image {
		flex: 0 0 100px;
		width: 100px;
		height: 100px;
		min-height: 100px;
		border-radius: 12px;
	}

	.t3-post-card__image a {
		display: block;
		width: 100%;
		height: 100%;
	}

	.t3-post-card__img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 12px;
	}

	.t3-post-card__placeholder {
		min-height: 100px;
		border-radius: 12px;
	}

	.t3-post-card__content {
		flex: 1;
		min-width: 0;
		padding: 8px 12px;
		gap: 8px;
	}

	.t3-post-card__title {
		font-size: 14px;
		line-height: 1.3;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.t3-post-card__btn {
		font-size: 13px;
		padding: 6px 14px;
	}

	/* PAGINAÇÃO - compacta */
	.t3-pagination {
		padding: 20px 0;
	}

	.t3-pagination__wrapper {
		padding: 0 20px;
	}

	.t3-pagination__nav {
		padding: 16px 20px;
		border-radius: 100px;
		justify-content: center;
		gap: 12px;
	}

	.t3-pagination__arrow {
		width: 36px;
		height: 36px;
	}

	.t3-pagination__arrow svg {
		width: 20px;
		height: 20px;
	}

	.t3-pagination__numbers {
		gap: 8px;
		padding: 4px 12px;
	}

	.t3-pagination__number {
		min-width: 32px;
		height: 30px;
		padding: 4px 8px;
		font-size: 14px;
	}
}

/* ============================================
   RESPONSIVO - EXTRA SMALL (480px)
   ============================================ */
@media (max-width: 480px) {
	.t3-category-hero__banner {
		height: 160px;
	}
	
	.t3-category-hero__title {
		font-size: 20px;
	}

	.t3-featured-card {
		min-width: 130px;
		max-width: 130px;
		height: 160px;
	}

	.t3-featured-card__content {
		padding: 10px;
	}

	.t3-featured-card__title {
		font-size: 11px;
	}

	.t3-featured-card__btn {
		font-size: 11px;
		padding: 4px 10px;
	}

	.t3-post-card__image {
		flex: 0 0 80px;
		width: 80px;
		height: 80px;
		min-height: 80px;
	}

	.t3-post-card__title {
		font-size: 13px;
	}

	.t3-post-card__btn {
		font-size: 12px;
		padding: 5px 12px;
	}
}
/* ============================================
   SEARCH PAGE - Tema 3
   Header + Grid de Resultados + Paginação
   ============================================ */

/* ============================================
   SEARCH HEADER
   ============================================ */

.t3-search-header {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-search-header__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

/* Título "Showing results for" */
.t3-search-header__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	margin: 0;
	text-align: center;
}

.t3-search-header__term {
	color: #000000;
}

/* Barra de Pesquisa */
.t3-search-header__form {
	position: relative;
	max-width: 800px;
	width: 100%;
}

.t3-search-header__input {
	width: 100%;
	height: 56px;
	padding: 16px 60px 16px 24px;
	background-color: #ebebeb;
	border: 1px solid #e0e0e0;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #000000;
	transition: all 0.3s ease;
}

.t3-search-header__input::placeholder {
	color: #808080;
}

.t3-search-header__input:focus {
	outline: none;
	border-color: #08fe08;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(8, 254, 8, 0.1);
}

.t3-search-header__submit {
	position: absolute;
	right: 8px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	border: none;
	border-radius: 100px;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
}

.t3-search-header__submit:hover {
	background-color: rgba(8, 254, 8, 0.1);
	color: #08fe08;
}

.t3-search-header__submit:active {
	transform: translateY(-50%) scale(0.95);
}

.t3-search-header__submit svg {
	width: 24px;
	height: 24px;
}

/* ============================================
   SEARCH RESULTS - Grid 2 Colunas
   ============================================ */

.t3-search-results {
	padding: 40px 0 60px;
	background-color: #ffffff;
}

.t3-search-results__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Contador de Resultados */
.t3-search-results__count {
	margin-bottom: 32px;
}

.t3-search-results__count p {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: #6b7280;
	margin: 0;
}

.t3-search-results__count strong {
	font-weight: 600;
	color: #000000;
}

/* Grid 2 Colunas */
.t3-search-results__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

/* Search Card - Layout Horizontal */
.t3-search-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t3-search-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

/* Imagem à Esquerda */
.t3-search-card__image {
	flex: 1;
	min-width: 0;
	height: 100%;
	min-height: 150px;
	border-radius: 16px;
	overflow: hidden;
}

.t3-search-card__image a {
	display: block;
	width: 100%;
	height: 100%;
}

.t3-search-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.t3-search-card:hover .t3-search-card__img {
	transform: scale(1.05);
}

.t3-search-card__placeholder {
	width: 100%;
	height: 100%;
	min-height: 150px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #e5e7eb;
	border-radius: 16px;
}

/* Conteúdo à Direita */
.t3-search-card__content {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px;
	align-items: flex-start;
}

/* Título */
.t3-search-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #000000;
	width: 100%;
	word-wrap: break-word;
}

.t3-search-card__title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.t3-search-card__title a:hover {
	color: #08fe08;
}

/* Botão Verde Néon */
.t3-search-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #08fe08;
	border: 1px solid #08fe08;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px rgba(8, 254, 8, 0.25);
}

.t3-search-card__btn:hover {
	background-color: #06d506;
	border-color: #06d506;
	box-shadow: 0 0 25px rgba(8, 254, 8, 0.4);
	transform: scale(1.05);
}

/* Empty State */
.t3-search-results__empty {
	text-align: center;
	padding: 80px 20px;
}

.t3-search-results__empty-text {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	color: #6b7280;
	margin: 0 0 32px;
}

.t3-search-results__empty-text strong {
	color: #000000;
	font-weight: 600;
}

/* Retry Form */
.t3-search-results__retry-form {
	position: relative;
	max-width: 500px;
	margin: 0 auto;
	display: flex;
	gap: 12px;
}

.t3-search-results__retry-input {
	flex: 1;
	height: 48px;
	padding: 12px 20px;
	background-color: #f3f4f6;
	border: 1px solid #e5e7eb;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 15px;
	color: #000000;
}

.t3-search-results__retry-input::placeholder {
	color: #9ca3af;
}

.t3-search-results__retry-input:focus {
	outline: none;
	border-color: #08fe08;
	background-color: #ffffff;
}

.t3-search-results__retry-btn {
	padding: 12px 24px;
	background-color: #08fe08;
	border: 1px solid #08fe08;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.t3-search-results__retry-btn:hover {
	background-color: #06d506;
	transform: scale(1.05);
}

/* ============================================
   PAGINAÇÃO (Reutiliza CSS do category.php)
   ============================================ */

.t3-pagination {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-pagination__wrapper {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-pagination__nav {
	background-color: #00371c;
	border-radius: 20px;
	padding: 24px 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.t3-pagination__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #ffffff;
	border: 1px solid #ffffff;
	border-radius: 100px;
	color: #000000;
	text-decoration: none;
	transition: all 0.3s ease;
	flex-shrink: 0;
	cursor: pointer;
}

.t3-pagination__arrow:hover {
	background-color: #f3f4f6;
	transform: scale(1.05);
}

.t3-pagination__arrow svg {
	width: 24px;
	height: 24px;
}

.t3-pagination__arrow--disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

.t3-pagination__numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	background-color: #076034;
	border-radius: 100px;
	padding: 5px 20px;
}

.t3-pagination__number {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 34px;
	padding: 8px 12px;
	background-color: transparent;
	border: 1px solid transparent;
	border-radius: 100px;
	color: #ffffff;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.t3-pagination__number:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.t3-pagination__number--active {
	background-color: #06753e;
	border-color: #08fe08;
	color: #08fe08;
	cursor: default;
	box-shadow: 0 0 15px rgba(8, 254, 8, 0.3);
}

/* ============================================
   RESPONSIVO
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
	.t3-search-header__title {
		font-size: 40px;
	}
	
	.t3-search-header__form {
		max-width: 600px;
	}
	
	.t3-search-results__grid {
		gap: 24px;
	}
	
	.t3-search-card__content {
		padding: 24px;
	}
	
	.t3-search-card__title {
		font-size: 16px;
	}
	
	.t3-search-card__btn {
		font-size: 14px;
	}
	
	.t3-pagination__nav {
		padding: 20px 40px;
	}
	
	.t3-pagination__numbers {
		gap: 16px;
		padding: 5px 16px;
	}
}

/* Mobile */
@media (max-width: 768px) {
	.t3-search-header {
		padding: 30px 0;
	}
	
	.t3-search-header__container {
		gap: 30px;
	}
	
	.t3-search-header__title {
		font-size: 32px;
	}
	
	.t3-search-header__form {
		max-width: 100%;
	}
	
	.t3-search-header__input {
		height: 52px;
		padding: 14px 56px 14px 20px;
		font-size: 15px;
	}
	
	.t3-search-header__submit {
		width: 38px;
		height: 38px;
	}
	
	.t3-search-header__submit svg {
		width: 22px;
		height: 22px;
	}
	
	.t3-search-results {
		padding: 30px 0 50px;
	}
	
	.t3-search-results__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.t3-search-card {
		flex-direction: column;
		padding: 8px;
	}
	
	.t3-search-card__image {
		width: 100%;
		min-height: 200px;
		height: 200px;
	}
	
	.t3-search-card__content {
		width: 100%;
		padding: 20px;
		gap: 12px;
	}
	
	.t3-search-card__title {
		font-size: 16px;
	}
	
	.t3-search-card__btn {
		font-size: 14px;
		padding: 8px 14px;
	}
	
	.t3-pagination {
		padding: 30px 0;
	}
	
	.t3-pagination__nav {
		padding: 16px 24px;
	}
	
	.t3-pagination__arrow {
		width: 40px;
		height: 40px;
	}
	
	.t3-pagination__arrow svg {
		width: 20px;
		height: 20px;
	}
	
	.t3-pagination__numbers {
		gap: 12px;
		padding: 4px 12px;
	}
	
	.t3-pagination__number {
		min-width: 36px;
		height: 30px;
		padding: 6px 10px;
		font-size: 14px;
	}
}

/* Extra Small */
@media (max-width: 480px) {
	.t3-search-header__title {
		font-size: 28px;
	}
	
	.t3-search-header__input {
		height: 48px;
		padding: 12px 52px 12px 18px;
		font-size: 14px;
	}
	
	.t3-search-header__submit {
		width: 36px;
		height: 36px;
	}
	
	.t3-search-header__submit svg {
		width: 20px;
		height: 20px;
	}
	
	.t3-search-card__image {
		min-height: 180px;
		height: 180px;
	}
	
	.t3-search-card__content {
		padding: 16px;
	}
	
	.t3-search-card__title {
		font-size: 15px;
	}
	
	.t3-search-card__btn {
		font-size: 13px;
		padding: 7px 12px;
	}
	
	.t3-pagination__nav {
		padding: 12px 16px;
	}
	
	.t3-pagination__arrow {
		width: 36px;
		height: 36px;
	}
	
	.t3-pagination__arrow svg {
		width: 18px;
		height: 18px;
	}
	
	.t3-pagination__numbers {
		gap: 8px;
		padding: 3px 10px;
	}
	
	.t3-pagination__number {
		min-width: 32px;
		height: 28px;
		padding: 5px 8px;
		font-size: 13px;
	}
}

/* ============================================
   SINGLE POST - TEMA 3 - COMPLETO
   ============================================ */

/* HERO */
.t3-single-hero {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-single-hero__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
}

.t3-single-hero__banner {
	position: relative;
	height: 400px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 342px;
}

.t3-single-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.t3-single-hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t3-single-hero__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
	180deg,
	rgba(0, 0, 0, 0) 0%,
	rgba(0, 0, 0, 0) 23%,
	#131A05 100%
	);
	z-index: 2;
}

.t3-single-hero__title {
	position: relative;
	z-index: 3;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.3;
	color: #ffffff;
	text-align: center;
	margin: 0;
}

/* CONTEÚDO + SIDEBAR */
.t3-single-content {
	padding: 40px 0 60px;
	background-color: #ffffff;
}

.t3-single-content__container {
	max-width: 1362px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 64px;
	align-items: flex-start;
}

/* COLUNA ESQUERDA */
.t3-single-content__main {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

/* Compartilhamento Topo */
.t3-single-share--top {
	display: flex;
	gap: 16px;
	height: 60px;
	align-items: center;
}

.t3-single-share__btn {
	width: 40px;
	height: 40px;
	border-radius: 100px;
	background-color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6.667px;
	transition: transform 0.3s ease;
}

.t3-single-share__btn:hover {
	transform: scale(1.1);
}

.t3-single-share__btn img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Conteúdo do Post */
.t3-single-article {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
}

.t3-single-article h2 {
	font-size: 32px;
	font-weight: 600;
	color: #000000;
	margin: 32px 0;
}

.t3-single-article p {
	margin-bottom: 16px;
}

/* SIDEBAR DIREITA */
.t3-single-sidebar {
	width: 602px;
	flex-shrink: 0;
	position: sticky;
	top: 0;
}

.t3-single-sidebar__box {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 52px 32px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
}

.t3-single-sidebar__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	text-align: center;
	margin: 0;
	max-width: 442px;
}

/* Grid 2x2 */
.t3-single-sidebar__grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	width: 100%;
}

/* Cards Sidebar */
.t3-sidebar-card {
	position: relative;
	width: 262px;
	height: 320px;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 24px;
}

.t3-sidebar-card__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.t3-sidebar-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.t3-sidebar-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
	180deg,
	rgba(0, 0, 0, 0) 0%,
	#131A05 100%
	);
	z-index: 2;
}

.t3-sidebar-card__content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.t3-sidebar-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #ffffff;
}

.t3-sidebar-card__title a {
	color: #ffffff;
	text-decoration: none;
}

.t3-sidebar-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #E0FF64;
	border: 1px solid #E0FF64;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
}

.t3-sidebar-card__btn:hover {
	transform: scale(1.05);
}

/* AUTOR SECTION */
.t3-single-author-section {
	padding: 0 0 60px;
	background-color: #ffffff;
}

.t3-single-author-section__container {
	max-width: 1362px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	gap: 32px;
	align-items: center;
}

/* Compartilhamento Coluna */
.t3-single-share--column {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 52px;
	flex-shrink: 0;
}

/* Box Autor */
.t3-single-author {
	background-color: #000000;
	border-radius: 20px;
	padding: 40px;
	display: flex;
	gap: 32px;
	align-items: center;
	flex: 1;
}

.t3-single-author__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	flex-shrink: 0;
}

.t3-single-author__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.t3-single-author__label {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
}

.t3-single-author__name {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2;
	color: #ffffff;
	margin: 0;
}

.t3-single-author__bio {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #ebebeb;
	margin: 0;
}

.t3-single-hero__title--mobile {
	display: none;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
	.t3-single-hero__banner {
		padding: 0 200px;
	}
	
	.t3-single-hero__title {
		font-size: 36px;
	}
	
	.t3-single-sidebar {
		width: 500px;
	}
	
	.t3-sidebar-card {
		width: 230px;
		height: 280px;
	}
}

@media (max-width: 1024px) {
	.t3-single-content__container {
		flex-direction: column;
	}
	
	.t3-single-sidebar {
		width: 100%;
		position: static;
	}
	
	.t3-single-sidebar__grid {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
	}
}

@media (max-width: 768px) {
	
	.t3-single-content {
		padding: 20px 0 40px;
	}

	.t3-single-content__container {
		flex-direction: column;
		gap: 40px;
		padding: 0 20px;
	}

	.t3-single-content__main {
		gap: 32px;
		width: 100%;
		min-width: 0;
	}

	.t3-single-article {
		word-wrap: break-word;
		overflow-wrap: break-word;
		overflow: hidden;
	}

	.t3-single-article p {
		margin-bottom: 24px;
	}

	.t3-single-article h2 {
		font-size: 24px;
		margin: 24px 0 16px;
	}

	/* Esconder o hero banner inteiro no mobile */
	.t3-single-hero__banner {
		display: none;
	}

	/* Mostrar versão mobile do hero: data + título sem imagem */
	.t3-single-hero {
		padding: 20px 0;
		background-color: #ffffff;
	}

	.t3-single-hero__mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 16px;
		padding: 0 20px;
		text-align: center;
	}

	.t3-single-hero__date {
		font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
		font-size: 16px;
		font-weight: 600;
		color: #01c38e;
		margin: 0;
	}

	.t3-single-hero__title--mobile {
		font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
		font-size: 26px;
		font-weight: 600;
		line-height: 1.3;
		color: #000000;
		text-align: center;
		margin: 0;
		display: block;
	}

	/* Esconder ícones de share do topo no mobile */
	.t3-single-share--top {
		display: none;
	}

	/* Conteúdo: remover gap grande */
	.t3-single-content__main {
		gap: 32px;
	}

	/* Sidebar: ajustar */
	.t3-single-content__container {
		flex-direction: column;
		gap: 40px;
	}

	.t3-single-sidebar {
		width: 100%;
		position: static;
	}

	.t3-single-sidebar__grid {
		flex-wrap: nowrap;
		overflow-x: auto;
		justify-content: flex-start;
	}

	/* Autor section */
	.t3-single-author-section__container {
		flex-direction: column;
		align-items: flex-start;
	}

	.t3-single-share--column {
		flex-direction: row;
		width: 100%;
	}

	.t3-single-author {
		flex-direction: column;
		text-align: center;
	}
}

/* ============================================
   PRIVACY PAGE - TEMA 3
   ============================================ */

/* CONTEÚDO CENTRAL */
.t3-privacy-content {
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
}

.t3-privacy-content__container {
	max-width: 800px;
	width: 100%;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Header com Título */
.t3-privacy-header {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 60px;
}

.t3-privacy-header__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 52px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	margin: 0;
}

/* Destaque */
.t3-privacy-highlight {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 30px;
}

.t3-privacy-highlight p {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
	margin: 0;
}

/* Item */
.t3-privacy-item {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t3-privacy-item__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 32px;
	font-weight: 600;
	color: #000000;
	margin: 0;
	list-style-position: inside;
}

.t3-privacy-item__text {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
	margin: 0;
}

/* Divider */
.t3-privacy-divider {
	width: 100%;
	height: 1px;
	background-color: #999999;
}

/* CONTEÚDO EDITÁVEL */
.t3-privacy-body {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Estilos automáticos para o editor do WordPress */
.t3-privacy-body p {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
	margin: 0;
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 30px;
}

.t3-privacy-body h1,
.t3-privacy-body h2,
.t3-privacy-body h3,
.t3-privacy-body h4,
.t3-privacy-body h5,
.t3-privacy-body h6 {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 32px;
	font-weight: 600;
	color: #000000;
	margin: 0;
	line-height: 1.3;
}

.t3-privacy-body h1 {
	font-size: 40px;
}

.t3-privacy-body h2 {
	font-size: 32px;
}

.t3-privacy-body h3 {
	font-size: 28px;
}

.t3-privacy-body ul,
.t3-privacy-body ol {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
	padding-left: 24px;
}

.t3-privacy-body hr {
	width: 100%;
	height: 1px;
	background-color: #999999;
	border: none;
	margin: 0;
}

.t3-privacy-body blockquote {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 30px;
	margin: 0;
	border-left: 4px solid #08fe08;
}

.t3-privacy-body strong {
	font-weight: 600;
	color: #000000;
}

.t3-privacy-body a {
	color: #08fe08;
	text-decoration: underline;
	transition: opacity 0.2s ease;
}

.t3-privacy-body a:hover {
	opacity: 0.8;
}

/* VEJA TAMBÉM */
.t3-privacy-related {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-privacy-related__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.t3-privacy-related__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	text-align: center;
	margin: 0;
}

/* Grid 4 Cards */
.t3-privacy-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	width: 100%;
}

/* Related Card */
.t3-related-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 400px;
}

.t3-related-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 20px;
	background-color: #f7f7f7;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #00964b;
	align-self: flex-start;
}

.t3-related-card__image {
	height: 236px;
	border-radius: 20px;
	overflow: hidden;
}

.t3-related-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.t3-related-card__placeholder {
	width: 100%;
	height: 100%;
	background-color: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t3-related-card__content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.t3-related-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: #000000;
}

.t3-related-card__title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.t3-related-card__title a:hover {
	color: #08fe08;
}

.t3-related-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #08fe08;
	border: 1px solid #08fe08;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
	box-shadow: 0 0 15px rgba(8, 254, 8, 0.25);
}

.t3-related-card__btn:hover {
	background-color: #06d506;
	transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 1400px) {
	.t3-privacy-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.t3-privacy-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.t3-privacy-header {
		padding: 40px;
	}
	
	.t3-privacy-header__title {
		font-size: 44px;
	}
}

@media (max-width: 768px) {
	.t3-privacy-header {
		padding: 32px;
	}
	
	.t3-privacy-header__title {
		font-size: 36px;
	}
	
	.t3-privacy-highlight {
		padding: 24px;
	}
	
	.t3-privacy-item__title {
		font-size: 28px;
	}
	
	.t3-privacy-related__title {
		font-size: 40px;
	}
	
	.t3-privacy-related__grid {
		grid-template-columns: 1fr;
	}
	
	.t3-related-card {
		height: auto;
	}
}

@media (max-width: 480px) {
	.t3-privacy-header {
		padding: 24px;
	}
	
	.t3-privacy-header__title {
		font-size: 32px;
	}
	
	.t3-privacy-item__title {
		font-size: 24px;
	}
	
	.t3-privacy-related__title {
		font-size: 32px;
	}
}

/* ============================================
   CONTATO - TEMA 3
   ============================================ */

/* CONTEÚDO CENTRAL */
.t3-contact-content {
	padding: 40px 0;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.t3-contact-content__container {
	max-width: 800px;
	width: 100%;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Header Título */
.t3-contact-header {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 60px;
}

.t3-contact-header__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 52px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	margin: 0;
}

/* Primeiro Parágrafo Destacado */
.t3-contact-highlight {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 30px;
}

.t3-contact-highlight p {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
	margin: 0;
}

/* Resto do Conteúdo */
.t3-contact-body {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #595959;
}

.t3-contact-body p {
	margin-bottom: 16px;
}

.t3-contact-body p:last-child {
	margin-bottom: 0;
}

/* FORMULÁRIO */
.t3-contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 40px 0;
}

.t3-contact-form__field {
	width: 100%;
}

.t3-contact-form__input {
	width: 100%;
	padding: 20px;
	background-color: #ebebeb;
	border: 1px solid #ebebeb;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	color: #000000;
	transition: all 0.3s ease;
}

.t3-contact-form__input::placeholder {
	color: #808080;
}

.t3-contact-form__input:focus {
	outline: none;
	border-color: #08fe08;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(8, 254, 8, 0.1);
}

.t3-contact-form__textarea {
	width: 100%;
	height: 164px;
	padding: 20px;
	background-color: #ebebeb;
	border: 1px solid #ebebeb;
	border-radius: 20px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	color: #000000;
	resize: vertical;
	transition: all 0.3s ease;
}

.t3-contact-form__textarea::placeholder {
	color: #808080;
}

.t3-contact-form__textarea:focus {
	outline: none;
	border-color: #08fe08;
	background-color: #ffffff;
	box-shadow: 0 0 0 3px rgba(8, 254, 8, 0.1);
}

.t3-contact-form__submit {
	align-self: flex-start;
	padding: 16px 32px;
	background-color: #08fe08;
	border: 1px solid #08fe08;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 700;
	color: #000000;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 0 15px rgba(8, 254, 8, 0.25);
}

.t3-contact-form__submit:hover {
	background-color: #06d506;
	transform: scale(1.05);
	box-shadow: 0 0 25px rgba(8, 254, 8, 0.4);
}

/* VEJA TAMBÉM */
.t3-contact-related {
	padding: 40px 0;
	background-color: #ffffff;
}

.t3-contact-related__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.t3-contact-related__title {
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	color: #000000;
	text-align: center;
	margin: 0;
}

/* Grid 4 Cards */
.t3-contact-related__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	width: 100%;
}

/* Contact Card */
.t3-contact-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 400px;
}

.t3-contact-card__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 20px;
	background-color: #f7f7f7;
	border-radius: 100px;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 12px;
	font-weight: 500;
	color: #00964b;
	align-self: flex-start;
}

.t3-contact-card__image {
	height: 236px;
	border-radius: 20px;
	overflow: hidden;
}

.t3-contact-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.5s ease;
}

.t3-contact-card:hover .t3-contact-card__img {
	transform: scale(1.05);
}

.t3-contact-card__placeholder {
	width: 100%;
	height: 100%;
	background-color: #e5e7eb;
	display: flex;
	align-items: center;
	justify-content: center;
}

.t3-contact-card__content {
	display: flex;
	flex-direction: column;
	gap: 14px;
	flex: 1;
}

.t3-contact-card__title {
	margin: 0;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.3;
	color: #000000;
}

.t3-contact-card__title a {
	color: #000000;
	text-decoration: none;
	transition: color 0.2s ease;
}

.t3-contact-card__title a:hover {
	color: #08fe08;
}

.t3-contact-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: #08fe08;
	border: 1px solid #08fe08;
	border-radius: 100px;
	color: #000000;
	font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	align-self: flex-start;
	box-shadow: 0 0 15px rgba(8, 254, 8, 0.25);
}

.t3-contact-card__btn:hover {
	background-color: #06d506;
	transform: scale(1.05);
}

/* RESPONSIVO */
@media (max-width: 1400px) {
	.t3-contact-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 1024px) {
	.t3-contact-header {
		padding: 40px;
	}
	
	.t3-contact-header__title {
		font-size: 44px;
	}
	
	.t3-contact-related__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.t3-contact-header {
		padding: 32px;
	}
	
	.t3-contact-header__title {
		font-size: 36px;
	}
	
	.t3-contact-highlight {
		padding: 24px;
	}
	
	.t3-contact-form__submit {
		font-size: 20px;
		padding: 14px 28px;
	}
	
	.t3-contact-related__title {
		font-size: 40px;
	}
	
	.t3-contact-related__grid {
		grid-template-columns: 1fr;
	}
	
	.t3-contact-card {
		height: auto;
	}
}

@media (max-width: 480px) {
	.t3-contact-header {
		padding: 24px;
	}
	
	.t3-contact-header__title {
		font-size: 32px;
	}
	
	.t3-contact-form__input,
	.t3-contact-form__textarea {
		padding: 16px;
	}
	
	.t3-contact-form__submit {
		font-size: 18px;
		padding: 12px 24px;
		width: 100%;
	}
	
	.t3-contact-related__title {
		font-size: 32px;
	}
}