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

/* ============================================
   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;
}

/* Remove margin do WordPress admin bar */
body.admin-bar {
	margin-top: 0 !important;
}

/* Container principal sem margens */
#page, .site {
	margin: 0;
	padding: 0;
	width: 100%;
}

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

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

:root {
	/* Cores principais */
	--t2-primary: #1a73e8;
	--t2-primary-dark: #1557b0;
	--t2-primary-light: #4285f4;
	
	/* Cores neutras */
	--t2-white: #ffffff;
	--t2-black: #000000;
	--t2-gray-50: #f9fafb;
	--t2-gray-100: #f3f4f6;
	--t2-gray-200: #e5e7eb;
	--t2-gray-300: #d1d5db;
	--t2-gray-400: #9ca3af;
	--t2-gray-500: #6b7280;
	--t2-gray-600: #4b5563;
	--t2-gray-700: #374151;
	--t2-gray-800: #1f2937;
	--t2-gray-900: #111827;
	
	/* Tipografia */
	--t2-font-family: 'Montserrat', sans-serif;
	
	/* Espaçamentos */
	--t2-header-height: 70px;
	--t2-container-padding: 20px;
	
	/* Border Radius */
	--t2-radius-sm: 4px;
	--t2-radius-md: 8px;
	--t2-radius-lg: 12px;
	--t2-radius-full: 9999px;
	
	/* Transições */
	--t2-transition: 0.3s ease;
	
	/* Z-index */
	--t2-z-header: 1000;
	--t2-z-overlay: 1001;
	--t2-z-panel: 1002;
	
	/* Breakpoints */
	--t2-breakpoint-desktop: 1024px;
}

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

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

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

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

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

.t2-header__container {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--t2-container-padding);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between; /* ← Mudança: espaço entre logo e hamburguer */
	gap: 0; /* ← Sem gap no mobile */
}

/* ============================================
   LOGO
   ============================================ */

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

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

.t2-logo-text {
	font-size: 24px;
	font-weight: 700;
	color: var(--t2-black);
	text-decoration: none;
}

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

.t2-header__nav {
	display: none; /* Esconde no mobile */
}

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

.t2-nav__list a {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 500;
	color: #0B6B7F;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-nav__list a:hover {
	color: var(--t2-primary);
}

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

.t2-header__search {
	display: none; /* Esconde no mobile */
	flex-shrink: 0;
	margin-left: auto;
}

.t2-search__form {
	display: flex;
	align-items: center;
	gap: 8px;
	background-color: var(--t2-gray-100);
	border-radius: var(--t2-radius-full);
	padding: 8px 16px;
	width: 280px;
	transition: background-color var(--t2-transition);
}

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

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

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

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

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

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

.t2-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: none;
	color: #0B6B7F;
	cursor: pointer;
	flex-shrink: 0;
	transition: color var(--t2-transition);
	margin-left: auto; /* ← Garante que fique à direita no mobile */
}

/* ============================================
   MENU MOBILE
   ============================================ */

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

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

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

.t2-mobile-menu__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: 85%;
	max-width: 320px;
	height: 100%;
	background-color: var(--t2-white);
	padding: 24px;
	transform: translateX(100%);
	transition: transform var(--t2-transition);
	overflow-y: auto;
	z-index: var(--t2-z-panel);
}

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

.t2-mobile-menu__close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin-bottom: 24px;
	padding: 0;
	border: none;
	background: none;
	color: var(--t2-gray-700);
	cursor: pointer;
	margin-left: auto;
}

.t2-mobile-menu__primary {
	margin-bottom: 32px;
}

.t2-mobile-menu__title {
	font-size: 18px;
	font-weight: 600;
	color: var(--t2-gray-900);
	margin: 0 0 16px 0;
}

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

.t2-mobile-nav__list li {
	margin-bottom: 8px;
}

.t2-mobile-nav__list a {
	display: block;
	padding: 12px 16px;
	color: var(--t2-gray-700);
	text-decoration: none;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 500;
	border-radius: var(--t2-radius-md);
	transition: background-color var(--t2-transition);
}

.t2-mobile-nav__list a:hover {
	background-color: var(--t2-gray-100);
}

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

@media (min-width: 1024px) {
	
	.t2-header__container {
		gap: 32px; /* ← Gap apenas no desktop */
		justify-content: flex-start; /* ← Volta ao comportamento original */
	}
	
	.t2-header__nav {
		display: block;
	}

	.t2-header__search {
		display: block;
	}

	.t2-menu-toggle {
		display: block;
		margin-left: 0; /* ← Remove o margin-left no desktop */
	}

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

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

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

/* ============================================
   HERO GRID
   ============================================ */

.t2-hero-grid {
	width: 100%;
	background-color: var(--t2-gray-100);
	padding: 40px 20px;
}

.t2-hero-grid__container {
	max-width: 1600px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr); /* 4 colunas de tamanho igual */
	grid-template-rows: repeat(2, 350px); /* 2 linhas de 350px cada */
	gap: 20px;
}

/* ============================================
   HERO CARD (Base)
   ============================================ */

.t2-hero-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
}

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

.t2-hero-card__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

/* ============================================
   BACKGROUND IMAGE + DEGRADÊ
   ============================================ */

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

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

.t2-hero-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--t2-gray-700) 0%, var(--t2-gray-900) 100%);
}

/* Degradê sobre a imagem */
.t2-hero-card__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
    90deg,
    #0D5C6E 0%,
    rgba(13, 92, 110, 0.8) 40%,
    rgba(13, 92, 110, 0) 100%
	);
	z-index: 2;
}

/* ============================================
   CONTENT (Texto sobre o degradê)
   ============================================ */

.t2-hero-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 24px;
	color: var(--t2-white);
}

/* Título */
.t2-hero-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px 0;
	color: var(--t2-white);
}

/* Excerpt (só nos cards grandes) */
.t2-hero-card__excerpt {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 16px 0;
	color: rgba(255, 255, 255, 0.9);
}

/* Botão Read More */
.t2-hero-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	border-radius: var(--t2-radius-full);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--t2-transition);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.t2-hero-card__link:hover .t2-hero-card__btn {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   GRID LAYOUT - DESKTOP
   ============================================ */

/* LINHA 1 */

/* Card 1: 50% (2 colunas) - Esquerda */
.t2-hero-card--large {
	grid-column: 1 / 3; /* Ocupa colunas 1 e 2 (50%) */
	grid-row: 1;
}

.t2-hero-card--large .t2-hero-card__title {
	font-size: 32px;
}

.t2-hero-card--large .t2-hero-card__content {
	padding: 32px;
}

/* Card 2: 25% (1 coluna) - Meio */
.t2-hero-card--medium:nth-of-type(2) {
	grid-column: 3; /* Coluna 3 (25%) */
	grid-row: 1;
}

/* Card 3: 25% (1 coluna) - Direita */
.t2-hero-card--medium:nth-of-type(3) {
	grid-column: 4; /* Coluna 4 (25%) */
	grid-row: 1;
}

/* LINHA 2 */

/* Card 4: 25% (1 coluna) - Esquerda */
.t2-hero-card--small:nth-of-type(4) {
	grid-column: 1; /* Coluna 1 (25%) */
	grid-row: 2;
}

/* Card 5: 25% (1 coluna) - Meio */
.t2-hero-card--small:nth-of-type(5) {
	grid-column: 2; /* Coluna 2 (25%) */
	grid-row: 2;
}

/* Card 6: 50% (2 colunas) - Direita */
.t2-hero-card--small:nth-of-type(6) {
	grid-column: 3 / 5; /* Ocupa colunas 3 e 4 (50%) */
	grid-row: 2;
}

.t2-hero-card--small:nth-of-type(6) .t2-hero-card__title {
	font-size: 32px;
}

.t2-hero-card--small:nth-of-type(6) .t2-hero-card__content {
	padding: 32px;
}

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

@media (max-width: 1024px) {
	.t2-hero-grid__container {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto;
		gap: 16px;
	}

	/* Reorganiza em 2 colunas */
	.t2-hero-card--large {
		grid-column: 1 / 3;
		grid-row: auto;
		min-height: 400px;
	}

	.t2-hero-card--medium:nth-of-type(2),
	.t2-hero-card--medium:nth-of-type(3),
	.t2-hero-card--small:nth-of-type(4),
	.t2-hero-card--small:nth-of-type(5) {
		grid-column: span 1;
		grid-row: auto;
		min-height: 250px;
	}

	.t2-hero-card--small:nth-of-type(6) {
		grid-column: 1 / 3;
		grid-row: auto;
		min-height: 350px;
	}
}

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

@media (max-width: 640px) {
	.t2-hero-grid {
		padding: 20px 16px;
		position: relative; /* ← Importante para posicionamento absoluto */
		min-height: 477px; /* ← Altura fixa */
	}

	.t2-hero-grid__container {
		position: relative;
		display: block; /* ← Volta para block */
		grid-template-columns: 1fr;
		gap: 0;
		width: 100%;
		height: 477px; /* ← Altura fixa */
	}

	.t2-hero-card--large,
	.t2-hero-card--medium,
	.t2-hero-card--small {
		position: absolute; /* ← Posicionamento absoluto para sobrepor */
		top: 0;
		left: 0;
		grid-column: 1;
		grid-row: auto;
		width: 100%;
		min-height: 477px;
		height: 477px;
		opacity: 0; /* ← Escondido por padrão */
		visibility: hidden;
		transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out; /* ← Fade transition */
		z-index: 1;
	}

	/* Card ativo (visível) */
	.t2-hero-card--active {
		opacity: 1;
		visibility: visible;
		z-index: 2;
	}

	.t2-hero-card--large .t2-hero-card__title,
	.t2-hero-card--small:nth-of-type(6) .t2-hero-card__title {
		font-size: 32px;
	}

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

	.t2-hero-card__excerpt {
		display: none;
	}

	.t2-hero-card__btn {
		padding: 8px 16px;
		font-size: 20px;
	}

	.t2-hero-card__content {
		padding: 24px;
	}
}

/* ============================================
   CUSTOMIZAÇÃO DE CORES (CSS Variables)
   ============================================ */

:root {
	/* Botão do Hero */
	--t2-btn-bg: #0090A8; /* Verde neon */
	--t2-btn-text: #ffffff;
	
	/* Degradê do Hero (personalizável) */
	--t2-hero-gradient-start: rgba(0, 0, 0, 0.7);
	--t2-hero-gradient-mid: rgba(0, 0, 0, 0.4);
	--t2-hero-gradient-end: rgba(0, 0, 0, 0.8);
}

/* Exemplo para outra marca (basta trocar as variáveis) */
/*
:root {
	--t2-btn-bg: #ff00ff; // Rosa
	--t2-btn-text: #ffffff;
	--t2-hero-gradient-start: rgba(128, 0, 128, 0.7);
	--t2-hero-gradient-mid: rgba(128, 0, 128, 0.4);
	--t2-hero-gradient-end: rgba(128, 0, 128, 0.8);
}
*/

/* ============================================
   RECENT POSTS SECTION
   ============================================ */

.t2-recent-posts {
	width: 100%;
	background-color: var(--t2-white);
	padding: 80px 20px;
}

.t2-recent-posts__container {
	max-width: 1600px;
	margin: 0 auto;
}

/* ============================================
   HEADER (Label + Título)
   ============================================ */

.t2-recent-posts__header {
	text-align: center;
	margin-bottom: 60px;
}

/* Label "TRENDING" */
.t2-recent-posts__label {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: #0090A8;
	margin-bottom: 12px;
}

/* Título "Recent posts" */
.t2-recent-posts__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

/* ============================================
   GRID DE CARDS
   ============================================ */

.t2-recent-posts__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

/* ============================================
   RECENT CARD (Individual)
   ============================================ */

.t2-recent-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
	min-height: 320px;
}

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

.t2-recent-card__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

/* ============================================
   BACKGROUND IMAGE + DEGRADÊ
   ============================================ */

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

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

.t2-recent-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--t2-gray-700) 0%, var(--t2-gray-900) 100%);
}

/* Degradê sobre a imagem (do topo escuro ao fundo escuro) */
.t2-recent-card__gradient {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		#023B4A 0%,
		rgba(2, 59, 74, 0.8) 40%,
		rgba(2, 59, 74, 0) 100%
	);
	z-index: 2;
}

/* ============================================
   CONTENT (Texto sobre o degradê)
   ============================================ */

.t2-recent-card__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	padding: 32px;
	color: var(--t2-white);
}

/* Título */
.t2-recent-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px 0;
	color: var(--t2-white);
}

/* Excerpt */
.t2-recent-card__excerpt {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.9);
}

/* Botão Read More */
.t2-recent-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 32px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	border-radius: var(--t2-radius-full);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--t2-transition);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.t2-recent-card__link:hover .t2-recent-card__btn {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

@media (max-width: 1024px) {
	.t2-recent-posts {
		padding: 60px 20px;
	}

	.t2-recent-posts__title {
		font-size: 40px;
	}

	.t2-recent-posts__header {
		margin-bottom: 40px;
	}

	.t2-recent-posts__grid {
		gap: 16px;
	}

	.t2-recent-card {
		min-height: 280px;
	}

	.t2-recent-card__title {
		font-size: 24px;
	}

	.t2-recent-card__excerpt {
		font-size: 14px;
	}
}

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

@media (max-width: 640px) {
	.t2-recent-posts {
		padding: 40px 16px;
	}

	.t2-recent-posts__title {
		font-size: 32px;
	}

	.t2-recent-posts__label {
		font-size: 12px;
	}

	.t2-recent-posts__header {
		margin-bottom: 32px;
	}

	.t2-recent-posts__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 16px;
	}

	.t2-recent-posts__grid::-webkit-scrollbar {
		height: 8px;
	}

	.t2-recent-posts__grid::-webkit-scrollbar-track {
		background: var(--t2-gray-200);
		border-radius: 4px;
	}

	.t2-recent-posts__grid::-webkit-scrollbar-thumb {
		background: var(--t2-gray-400);
		border-radius: 4px;
	}

	.t2-recent-card {
		flex: 0 0 85%;
		scroll-snap-align: start;
		min-height: 320px;
	}

	.t2-recent-posts__dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 24px;
	}

	.t2-recent-posts__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--t2-gray-400);
		border: none;
		padding: 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.t2-recent-posts__dot.active {
		width: 24px;
		border-radius: 4px;
		background: var(--t2-primary);
	}

	.t2-recent-card__content {
		padding: 24px;
	}

	.t2-recent-card__title {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.t2-recent-card__excerpt {
		font-size: 14px;
		margin-bottom: 16px;
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.t2-recent-card__btn {
		padding: 10px 24px;
		font-size: 13px;
	}
}

/* ============================================
   SEE ALSO SECTION
   ============================================ */

.t2-see-also {
	width: 100%;
	background-color: var(--t2-white);
	padding: 80px 20px;
}

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

/* ============================================
   TÍTULO
   ============================================ */

.t2-see-also__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--t2-black);
	text-align: center;
	margin: 0 0 60px 0;
}

/* ============================================
   GRID DE CARDS (4 colunas x 2 linhas)
   ============================================ */

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

/* ============================================
   SEE ALSO CARD (Individual)
   ============================================ */

.t2-see-also-card {
	background-color: var(--t2-gray-50);
	border-radius: 16px;
	overflow: hidden;
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
	display: flex;
	flex-direction: column;
}

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

/* ============================================
   THUMBNAIL
   ============================================ */

.t2-see-also-card__thumb {
	display: block;
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
	border-radius: 16px 16px 0 0;
	background-color: var(--t2-gray-200);
}

.t2-see-also-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform var(--t2-transition);
}

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

.t2-see-also-card__placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--t2-gray-500);
	font-size: 48px;
}

.t2-see-also-card__placeholder::after {
	content: '🖼️';
}

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

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

/* ============================================
   CATEGORY LABEL
   ============================================ */

.t2-see-also-card__cat {
	display: flex;
	align-items: center;
	gap: 8px;
}

.t2-see-also-card__cat-dot {
	width: 16px;
	height: 6px;
	background-color: var(--t2-primary);
	border-radius: 3px;
	flex-shrink: 0;
}

.t2-see-also-card__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--t2-primary);
	text-transform: uppercase;
}

/* ============================================
   TITLE
   ============================================ */

.t2-see-also-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--t2-black);
	margin: 0;
	flex-grow: 1;
}

.t2-see-also-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-see-also-card__title a:hover {
	color: var(--t2-primary);
}

/* ============================================
   BUTTON
   ============================================ */

.t2-see-also-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	border-radius: var(--t2-radius-full);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: all var(--t2-transition);
	align-self: flex-start;
}

.t2-see-also-card__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

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

@media (max-width: 1024px) {
	.t2-see-also {
		padding: 60px 20px;
	}

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

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

	.t2-see-also-card__thumb {
		height: 180px;
	}

	.t2-see-also-card__title {
		font-size: 16px;
	}
}

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

@media (max-width: 640px) {
	.t2-see-also {
		padding: 40px 16px;
	}

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

	.t2-see-also__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		gap: 16px;
		padding-bottom: 16px;
	}

	.t2-see-also__grid::-webkit-scrollbar {
		height: 8px;
	}

	.t2-see-also__grid::-webkit-scrollbar-track {
		background: var(--t2-gray-200);
		border-radius: 4px;
	}

	.t2-see-also__grid::-webkit-scrollbar-thumb {
		background: var(--t2-gray-400);
		border-radius: 4px;
	}

	.t2-see-also-card {
		flex: 0 0 85%;
		scroll-snap-align: start;
	}

	.t2-see-also-card__thumb {
		height: 200px;
	}

	.t2-see-also-card__content {
		padding: 16px;
		gap: 10px;
	}

	.t2-see-also-card__cat-name {
		font-size: 10px;
	}

	.t2-see-also-card__title {
		font-size: 14px;
	}

	.t2-see-also-card__btn {
		padding: 8px 16px;
		font-size: 12px;
	}

	.t2-see-also__dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 24px;
	}

	.t2-see-also__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: var(--t2-gray-400);
		border: none;
		padding: 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.t2-see-also__dot.active {
		width: 24px;
		border-radius: 4px;
		background: var(--t2-primary);
	}
}

@media (max-width: 480px) {
	.t2-see-also__grid {
		grid-template-columns: 1fr;
	}

	.t2-see-also-card__thumb {
		height: 200px;
	}
}

/* ============================================
   LOOK FOR TOPIC SECTION
   ============================================ */

.t2-look-topic {
	width: 100%;
	background-color: var(--t2-gray-50);
	padding: 80px 20px;
}

.t2-look-topic__container {
	max-width: 1600px;
	margin: 0 auto;
}

/* ============================================
   TÍTULO
   ============================================ */

.t2-look-topic__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--t2-black);
	text-align: center;
	margin: 0 0 60px 0;
}

/* ============================================
   GRID DE CATEGORIAS (2x2)
   ============================================ */

.t2-look-topic__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

/* ============================================
   CARD DE CATEGORIA
   ============================================ */

.t2-look-topic__card {
	background-color: var(--t2-white);
	border-radius: 16px;
	padding: 32px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.t2-look-topic__card-title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 24px;
	font-weight: 700;
	color: var(--t2-black);
	margin: 0 0 24px 0;
}

/* ============================================
   LISTA DE POSTS
   ============================================ */

.t2-look-topic__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ============================================
   ITEM DE POST (Horizontal)
   ============================================ */

.t2-topic-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 12px;
	border-radius: 12px;
	background-color: var(--t2-gray-50);
	transition: all var(--t2-transition);
}

.t2-topic-item:hover {
	background-color: var(--t2-gray-100);
	transform: translateX(4px);
}

/* ============================================
   THUMBNAIL (Pequena)
   ============================================ */

.t2-topic-item__thumb {
	display: block;
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

.t2-topic-item__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.t2-topic-item__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

/* ============================================
   CONTENT (Categoria + Título)
   ============================================ */

.t2-topic-item__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Category Label */
.t2-topic-item__cat {
	display: flex;
	align-items: center;
	gap: 6px;
}

.t2-topic-item__cat-dot {
	width: 12px;
	height: 4px;
	background-color: #0090A8;
	border-radius: 2px;
	flex-shrink: 0;
}

.t2-topic-item__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #0090A8;
	text-transform: uppercase;
}

/* Title */
.t2-topic-item__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--t2-black);
	margin: 0;
}

.t2-topic-item__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-topic-item__title a:hover {
	color: var(--t2-primary);
}

/* ============================================
   ARROW BUTTON
   ============================================ */

.t2-topic-item__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	background-color: var(--t2-btn-bg);
	border-radius: 50%;
	color: var(--t2-btn-text, #000000);
	text-decoration: none;
	transition: all var(--t2-transition);
}

.t2-topic-item__arrow:hover {
	transform: scale(1.1);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

.t2-topic-item__arrow svg {
	width: 18px;
	height: 18px;
}

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

@media (max-width: 1024px) {
	.t2-look-topic {
		padding: 60px 20px;
	}

	.t2-look-topic__title {
		font-size: 40px;
		margin-bottom: 40px;
	}

	.t2-look-topic__grid {
		gap: 20px;
	}

	.t2-look-topic__card {
		padding: 24px;
	}

	.t2-look-topic__card-title {
		font-size: 22px;
		margin-bottom: 20px;
	}

	.t2-topic-item__thumb {
		width: 70px;
		height: 70px;
	}

	.t2-topic-item__title {
		font-size: 14px;
	}
}

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

@media (max-width: 640px) {
	.t2-look-topic {
		padding: 40px 16px;
	}

	.t2-look-topic__title {
		font-size: 32px;
		margin-bottom: 32px;
	}

	.t2-look-topic__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.t2-look-topic__card {
		padding: 20px;
	}

	.t2-look-topic__card-title {
		font-size: 20px;
		margin-bottom: 16px;
	}

	.t2-look-topic__list {
		gap: 12px;
	}

	.t2-topic-item {
		gap: 12px;
		padding: 10px;
	}

	.t2-topic-item__thumb {
		width: 60px;
		height: 60px;
	}

	.t2-topic-item__cat-name {
		font-size: 10px;
	}

	.t2-topic-item__title {
		font-size: 13px;
	}

	.t2-topic-item__arrow {
		width: 36px;
		height: 36px;
	}

	.t2-topic-item__arrow svg {
		width: 16px;
		height: 16px;
	}
}

/* ============================================
   FOOTER - TEMA 02
   ============================================ */

.t2-footer {
	width: 100%;
	background-color: var(--t2-white);
	padding: 40px 20px;
}

.t2-footer__container {
	max-width: 1600px;
	margin: 0 auto;
}

/* ============================================
   GRID DE 3 COLUNAS
   ============================================ */

.t2-footer__grid {
	display: grid;
	grid-template-columns: 376px 1fr 376px;
	gap: 32px;
	align-items: start;
}

/* ============================================
   COLUNAS
   ============================================ */

.t2-footer__col {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Coluna Esquerda: altura total */
.t2-footer__col--left {
	height: 100%;
}

/* Coluna Centro: flex para ocupar espaço */
.t2-footer__col--center {
	min-height: 624px;
}

/* Coluna Direita: altura total */
.t2-footer__col--right {
	height: 100%;
}

.t2-footer__links-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 16px; /* mesmo gap das categorias */
}

.t2-footer__links-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.t2-footer__links-menu a,
.t2-footer__links-menu .menu-item a {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	color: #0B6B7F; /* mesma cor das categorias */
	text-decoration: none;
	transition: all var(--t2-transition);
	display: inline-block;
	width: fit-content;
}

.t2-footer__links-menu a:hover,
.t2-footer__links-menu .menu-item a:hover {
	transform: translateX(4px); /* mesmo efeito hover das categorias */
}

/* Remove estilo padrão do WordPress */
.t2-footer__links-menu .sub-menu {
	display: none;
}

.t2-footer__links-menu .current-menu-item > a {
	font-weight: 700;
}

/* ============================================
   CARDS BASE (background cinza claro)
   ============================================ */

.t2-footer__logo-card,
.t2-footer__copyright-card,
.t2-footer__links-card,
.t2-footer__categories-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 48px 70px;
}

/* ============================================
   COLUNA 1: LOGO + COPYRIGHT
   ============================================ */

/* Logo Card */
.t2-footer__logo-card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: center;
	flex: 1;
}

.t2-footer__logo,
.t2-footer__logo-placeholder {
	width: 100%;
	aspect-ratio: 3/1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

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

.t2-footer__logo-placeholder span {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-black);
}

.t2-footer__tagline {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #595959;
	text-align: center;
	margin: 0;
}

/* Copyright Card */
.t2-footer__copyright-card {
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start;
}

.t2-footer__brand-icon {
	width: 94px;
	height: 56px;
}

.t2-footer__copyright-text {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	color: #595959;
	margin: 0;
}

/* ============================================
   COLUNA 2: LINKS + NEWSLETTER
   ============================================ */

/* Links Card */
.t2-footer__links-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.t2-footer__section-title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 38px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

.t2-footer__links-menu,
.t2-footer__categories-menu {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t2-footer__link {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	color: #0B6B7F;
	text-decoration: none;
	transition: all var(--t2-transition);
	display: inline-block;
	width: fit-content;
}

.t2-footer__link:hover {
	transform: translateX(4px);
}

/* Newsletter Card (Verde Escuro) */
.t2-footer__newsletter-card {
	background-color: #023B4A;
	border-radius: 20px;
	padding: 48px 70px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
}

.t2-footer__newsletter-title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 38px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-white);
	margin: 0;
}

.t2-footer__newsletter-text {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #ebebeb;
	margin: 0;
}

/* Form Newsletter */
.t2-footer__newsletter-form {
	width: 100%;
}

.t2-footer__newsletter-input-wrap {
	display: flex;
	gap: 8px;
	align-items: center;
}

.t2-footer__newsletter-input {
	flex: 1;
	background-color: #0E596B;
	border: none;
	border-radius: 100px 4px 4px 100px;
	padding: 12px 20px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-white);
	outline: none;
	transition: all var(--t2-transition);
}

.t2-footer__newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.t2-footer__newsletter-input:focus {
	background-color: #098845;
}

.t2-footer__newsletter-btn {
	background-color: var(--t2-white);
	border: none;
	border-radius: 4px 100px 100px 4px;
	padding: 12px 16px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	color: var(--t2-black);
	cursor: pointer;
	transition: all var(--t2-transition);
	white-space: nowrap;
}

.t2-footer__newsletter-btn:hover {
	background-color: #f0f0f0;
	transform: scale(1.05);
}

.t2-footer__newsletter-disclaimer {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	color: #ebebeb;
	margin: 0;
	max-width: 450px;
}

/* ============================================
   COLUNA 3: CATEGORIAS
   ============================================ */

.t2-footer__categories-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

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

@media (max-width: 1200px) {
	.t2-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.t2-footer__col--left {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}

	.t2-footer__col--center {
		min-height: auto;
	}

	.t2-footer__logo-card,
	.t2-footer__copyright-card,
	.t2-footer__links-card,
	.t2-footer__newsletter-card,
	.t2-footer__categories-card {
		padding: 32px 40px;
	}

	.t2-footer__section-title,
	.t2-footer__newsletter-title {
		font-size: 32px;
	}
}

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

@media (max-width: 768px) {
	.t2-footer {
		padding: 32px 16px;
	}

	.t2-footer__grid {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	/* Ordem: Logo > Links > Newsletter > Categorias > Copyright */
	.t2-footer__col--left {
		display: contents;
	}

	.t2-footer__logo-card {
		order: 1;
	}

	.t2-footer__col--center {
		display: contents;
	}

	.t2-footer__links-card {
		order: 2;
	}

	.t2-footer__newsletter-card {
		order: 3;
	}

	.t2-footer__col--right {
		order: 4;
	}

	.t2-footer__copyright-card {
		order: 5;
	}

	.t2-footer__col {
		gap: 20px;
	}

	.t2-footer__logo-card,
	.t2-footer__copyright-card,
	.t2-footer__links-card,
	.t2-footer__newsletter-card,
	.t2-footer__categories-card {
		padding: 24px 32px;
		border-radius: 16px;
	}

	.t2-footer__section-title,
	.t2-footer__newsletter-title {
		font-size: 28px;
	}

	.t2-footer__tagline,
	.t2-footer__copyright-text,
	.t2-footer__newsletter-text {
		font-size: 14px;
	}

	.t2-footer__newsletter-input-wrap {
		flex-direction: column;
		gap: 12px;
	}

	.t2-footer__newsletter-input,
	.t2-footer__newsletter-btn {
		width: 100%;
		border-radius: 100px;
	}

	.t2-footer__newsletter-btn {
		padding: 12px 24px;
	}
}

/* ============================================
   CATEGORY PAGE - HERO SECTION
   ============================================ */

.t2-category {
	width: 100%;
	background-color: var(--t2-white);
	padding-top: calc(var(--t2-header-height) + 20px);
}

/* ============================================
   HERO SECTION
   ============================================ */

.t2-category-hero {
	width: 100%;
	padding: 20px 20px 80px 20px;
}

.t2-category-hero__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* ============================================
   HEADER (Título + Descrição)
   ============================================ */

.t2-category-hero__header {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.t2-category-hero__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--t2-black);
	margin: 0;
}

.t2-category-hero__description {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--t2-gray-600);
	margin: 0;
}

/* ============================================
   GRID HERO: 1 grande (esquerda) + 2 médios (direita)
   ============================================ */

.t2-category-hero__grid {
	display: grid;
	grid-template-columns: 911px 657px;
	grid-template-rows: 330px 330px;
	gap: 32px;
}

/* Card Grande ocupa 2 linhas (esquerda) */
.t2-cat-hero-card--large {
	grid-column: 1;
	grid-row: 1 / 3;
}

/* Cards Médios ocupam 1 linha cada (direita) */
.t2-cat-hero-card--medium:nth-of-type(2) {
	grid-column: 2;
	grid-row: 1;
}

.t2-cat-hero-card--medium:nth-of-type(3) {
	grid-column: 2;
	grid-row: 2;
}

/* ============================================
   CATEGORY HERO CARDS (Base)
   ============================================ */

.t2-cat-hero-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 32px;
	transition: transform var(--t2-transition);
}

.t2-cat-hero-card:hover {
	transform: translateY(-4px);
}

/* Background (Imagem + Degradê) */
.t2-cat-hero-card__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.t2-cat-hero-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-cat-hero-card__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		#023B4A 0%,
		rgba(2, 59, 74, 0.8) 40%,
		rgba(2, 59, 74, 0) 100%
	);
}

/* Content */
.t2-cat-hero-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* Título Grande */
.t2-cat-hero-card__title--large {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--t2-white);
	margin: 0;
}

.t2-cat-hero-card__title--large a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-cat-hero-card__title--large a:hover {
	color: var(--t2-btn-bg);
}

/* Título Médio */
.t2-cat-hero-card__title--medium {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 32px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--t2-white);
	margin: 0;
}

.t2-cat-hero-card__title--medium a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-cat-hero-card__title--medium a:hover {
	color: var(--t2-btn-bg);
}

/* Excerpt */
.t2-cat-hero-card__excerpt {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	color: #ebebeb;
	margin: 0;
}

/* Botão */
.t2-cat-hero-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	width: fit-content;
}

.t2-cat-hero-card__btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

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

@media (max-width: 1200px) {
	.t2-category-hero__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 400px 300px;
		gap: 24px;
	}

	.t2-cat-hero-card__title--large {
		font-size: 36px;
	}

	.t2-cat-hero-card__title--medium {
		font-size: 28px;
	}

	.t2-cat-hero-card__excerpt {
		font-size: 18px;
	}
}

/* ============================================
   CATEGORY PAGE - MOBILE RESPONSIVE
   Alterações APENAS para mobile (@media max-width: 768px)
   ============================================ */

/* ============================================
   HERO SECTION - MOBILE CAROUSEL
   ============================================ */

@media (max-width: 768px) {
	.t2-category-hero {
		padding: 20px 0 60px 0;
	}

	.t2-category-hero__container {
		gap: 24px;
	}

	/* Header com padding lateral */
	.t2-category-hero__header {
		padding: 0 16px;
	}

	.t2-category-hero__title {
		font-size: 32px;
	}

	.t2-category-hero__description {
		font-size: 16px;
	}

	/* ============================================
	   GRID VIRA CARROSSEL
	   ============================================ */

	.t2-category-hero__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		gap: 16px;
		padding: 0 16px;
		
		/* Remove scrollbar visual mas mantém funcionalidade */
		scrollbar-width: none; /* Firefox */
		-ms-overflow-style: none; /* IE/Edge */
		-webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
	}

	.t2-category-hero__grid::-webkit-scrollbar {
		display: none; /* Chrome/Safari/Opera */
	}

	/* Todos os cards ficam iguais no mobile */
	.t2-cat-hero-card--large,
	.t2-cat-hero-card--medium {
		flex: 0 0 85%; /* 85% da largura da tela */
		min-width: 85%;
		max-width: 85%;
		min-height: 400px;
		scroll-snap-align: start;
	}

	/* Ajustar padding dos cards */
	.t2-cat-hero-card {
		padding: 24px;
	}

	/* Títulos ficam do mesmo tamanho */
	.t2-cat-hero-card__title--large,
	.t2-cat-hero-card__title--medium {
		font-size: 28px;
	}

	.t2-cat-hero-card__excerpt {
		font-size: 16px;
	}

	.t2-cat-hero-card__btn {
		font-size: 18px;
		padding: 10px 20px;
	}

	/* ============================================
	   DOTS DE NAVEGAÇÃO
	   ============================================ */

	.t2-category-hero__dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		padding: 20px 0 0 0;
	}

	.t2-category-hero__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: #d9d9d9;
		border: none;
		padding: 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.t2-category-hero__dot.active {
		width: 24px;
		height: 8px;
		border-radius: 4px;
		background-color: var(--t2-primary, #0090A8);
	}

	/* ============================================
	   POSTS GRID - MOBILE
	   ============================================ */

	.t2-category-posts {
		padding: 40px 16px;
	}

	/* Grid vira coluna única */
	.t2-category-posts__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t2-category-posts__col {
		gap: 16px;
	}

	/* Row duplo vira coluna única */
	.t2-post-card-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* ============================================
	   CARDS - MOBILE ADJUSTMENTS
	   ============================================ */

	/* Card horizontal vira vertical */
	.t2-post-card--horizontal {
		flex-direction: column;
		min-height: auto;
	}

	.t2-post-card--horizontal .t2-post-card__thumb-horizontal {
		width: 100%;
		height: 236px;
		min-height: 236px;
	}

	/* Ajustar alturas mínimas */
	.t2-post-card--large-vertical {
		min-height: 400px;
	}

	.t2-post-card--small {
		min-height: 400px;
	}

	/* Ajustar conteúdo dos cards */
	.t2-post-card--large-vertical .t2-post-card__content,
	.t2-post-card--small .t2-post-card__content,
	.t2-post-card--horizontal .t2-post-card__content {
		padding: 20px;
		gap: 12px;
	}

	.t2-post-card__title {
		font-size: 20px;
	}

	.t2-post-card__btn {
		font-size: 18px;
		padding: 10px 18px;
	}

	/* ============================================
	   PAGINAÇÃO - MOBILE
	   ============================================ */

	.t2-pagination {
		padding: 24px 16px;
	}

	.t2-pagination__container {
		flex-direction: column;
		gap: 16px;
	}

	.t2-pagination__numbers ul {
		gap: 12px;
	}

	.t2-pagination__numbers a,
	.t2-pagination__numbers span {
		padding: 8px 10px;
		font-size: 14px;
		min-width: 32px;
	}

	/* Esconder texto dos botões prev/next, mostrar só ícones */
	.t2-pagination__btn span {
		display: none;
	}

	.t2-pagination__btn {
		padding: 12px;
		width: 44px;
		height: 44px;
		justify-content: center;
	}

	.t2-pagination__btn svg {
		width: 20px;
		height: 20px;
	}
}

/* ============================================
   ESCONDER DOTS NO DESKTOP
   ============================================ */

@media (min-width: 769px) {
	.t2-category-hero__dots {
		display: none;
	}
}
/* ============================================
   GRID DE POSTS - 2 COLUNAS
   ============================================ */

.t2-category-posts {
	width: 100%;
	padding: 80px 20px;
	background-color: var(--t2-white);
}

.t2-category-posts__container {
	max-width: 1600px;
	margin: 0 auto;
}

.t2-category-posts__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.t2-category-posts__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.t2-category-posts__empty {
	text-align: center;
	font-size: 18px;
	color: var(--t2-gray-600);
	padding: 60px 20px;
}

/* ============================================
   POST CARDS - BASE
   ============================================ */

.t2-post-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
}

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

/* ============================================
   CARD GRANDE VERTICAL
   ============================================ */

.t2-post-card--large-vertical {
	min-height: 633px;
}

.t2-post-card--large-vertical .t2-post-card__thumb {
	flex: 1;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

.t2-post-card--large-vertical .t2-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-post-card--large-vertical .t2-post-card__content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ============================================
   CARD PEQUENO (Vertical)
   ============================================ */

.t2-post-card--small {
	min-height: 466px;
}

.t2-post-card--small .t2-post-card__thumb {
	height: 236px;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

.t2-post-card--small .t2-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-post-card--small .t2-post-card__content {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: space-between;
}

/* ============================================
   CARD HORIZONTAL
   ============================================ */

.t2-post-card--horizontal {
	flex-direction: row;
	min-height: 252px;
	align-items: center;
}

.t2-post-card--horizontal .t2-post-card__thumb-horizontal {
	flex: 1;
	height: 100%;
	min-height: 236px;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

.t2-post-card--horizontal .t2-post-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-post-card--horizontal .t2-post-card__content {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ============================================
   ROW (Dupla de Cards Pequenos)
   ============================================ */

.t2-post-card-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

/* ============================================
   ELEMENTOS DOS CARDS
   ============================================ */

/* Category Label */
.t2-post-card__cat {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 14px;
}

.t2-post-card__cat-dot {
	width: 16px;
	height: 6px;
	background-color: #0090A8;
	border-radius: 100px;
	flex-shrink: 0;
}

.t2-post-card__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 600;
	color: #0090A8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Title */
.t2-post-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

.t2-post-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-post-card__title a:hover {
	color: var(--t2-primary, #0090A8);
}

/* Button */
.t2-post-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	width: fit-content;
}

.t2-post-card__btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

/* Placeholder */
.t2-post-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 48px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

/* ============================================
   PAGINAÇÃO
   ============================================ */

.t2-pagination {
	width: 100%;
	padding: 24px 20px;
	background-color: var(--t2-white);
}

.t2-pagination__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

/* Botões Anterior/Próxima */
.t2-pagination__btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background-color: var(--t2-black);
	color: var(--t2-white);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
}

.t2-pagination__btn:hover {
	background-color: var(--t2-gray-800);
	transform: translateY(-2px);
}

.t2-pagination__btn svg {
	width: 19px;
	height: 19px;
}

/* Números */
.t2-pagination__numbers {
	background-color: #f7f7f7;
	border-radius: 100px;
	padding: 5px 20px;
}

.t2-pagination__numbers ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 24px;
}

.t2-pagination__numbers li {
	margin: 0;
}

.t2-pagination__numbers a,
.t2-pagination__numbers span {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 12px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	color: var(--t2-black);
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	min-width: 36px;
}

.t2-pagination__numbers a:hover {
	background-color: rgba(0, 229, 38, 0.1);
}

.t2-pagination__numbers .current {
	background-color: #e4ffe6;
	border: 1px solid #0090A8;
	color: var(--t2-black);
}

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

@media (max-width: 1024px) {
	.t2-category-posts {
		padding: 60px 20px;
	}

	.t2-category-posts__grid {
		gap: 20px;
	}

	.t2-post-card--large-vertical {
		min-height: 500px;
	}

	.t2-post-card--small {
		min-height: 400px;
	}

	.t2-post-card__title {
		font-size: 20px;
	}

	.t2-post-card__btn {
		font-size: 18px;
	}
}

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

@media (max-width: 768px) {
	.t2-category-posts {
		padding: 40px 16px;
	}

	.t2-category-posts__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t2-post-card-row {
		grid-template-columns: 1fr;
	}

	.t2-post-card--horizontal {
		flex-direction: column;
		min-height: auto;
	}

	.t2-post-card--horizontal .t2-post-card__thumb-horizontal {
		width: 100%;
		height: 200px;
	}

	.t2-post-card--large-vertical,
	.t2-post-card--small {
		min-height: 400px;
	}

	.t2-pagination__container {
		flex-direction: column;
		gap: 16px;
	}

	.t2-pagination__numbers ul {
		gap: 12px;
	}

	.t2-pagination__btn span {
		display: none;
	}
}

/* ============================================
   SEARCH PAGE - HERO COM BARRA DE PESQUISA
   ============================================ */

.t2-search {
	width: 100%;
	background-color: var(--t2-white);
	padding-top: calc(var(--t2-header-height) + 20px);
}

.t2-search-hero {
	width: 100%;
	padding: 20px 20px 80px 20px;
}

.t2-search-hero__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* ============================================
   HEADER COM BARRA DE PESQUISA
   ============================================ */

.t2-search-hero__header {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.t2-search-hero__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--t2-black);
	margin: 0;
}

/* Search Form */
.t2-search-hero__form {
	position: relative;
	max-width: 450px;
	display: flex;
	align-items: center;
	background-color: #e4ffe6;
	border: 1px solid #0090A8;
	border-radius: 100px;
	overflow: hidden;
}

.t2-search-hero__input {
	flex: 1;
	padding: 12px 20px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-black);
	background-color: transparent;
	border: none;
	outline: none;
}

.t2-search-hero__input::placeholder {
	color: var(--t2-gray-500);
}

.t2-search-hero__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: transparent;
	border: none;
	color: #0090A8;
	cursor: pointer;
	transition: all var(--t2-transition);
	flex-shrink: 0;
}

.t2-search-hero__submit:hover {
	color: #0090A8;
	transform: scale(1.1);
}

/* Hero Grid (reutiliza do category) */
.t2-search-hero__grid {
	display: grid;
	grid-template-columns: 911px 657px;
	grid-template-rows: 330px 330px;
	gap: 32px;
}

/* ============================================
   SEARCH POSTS - GRID
   ============================================ */

.t2-search-posts {
	width: 100%;
	padding: 80px 20px;
	background-color: var(--t2-white);
}

.t2-search-posts__container {
	max-width: 1600px;
	margin: 0 auto;
}

/* Contador de Resultados */
.t2-search-posts__count {
	margin-bottom: 32px;
	padding: 20px;
	background-color: #f7f7f7;
	border-radius: 12px;
	text-align: center;
}

.t2-search-posts__count p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 18px;
	color: var(--t2-gray-700);
	margin: 0;
}

.t2-search-posts__count strong {
	color: var(--t2-black);
	font-weight: 600;
}

/* Grid (reutiliza do category) */
.t2-search-posts__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.t2-search-posts__col {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* ============================================
   EMPTY STATE - SEM RESULTADOS
   ============================================ */

.t2-search-posts__empty {
	text-align: center;
	padding: 80px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.t2-search-posts__empty p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	color: var(--t2-gray-600);
	max-width: 600px;
	margin: 0;
}

/* Form de Retry */
.t2-search-posts__retry-form {
	display: flex;
	align-items: center;
	gap: 12px;
	max-width: 500px;
	width: 100%;
}

.t2-search-posts__retry-input {
	flex: 1;
	padding: 14px 24px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-black);
	background-color: #f7f7f7;
	border: 1px solid var(--t2-gray-300);
	border-radius: 100px;
	outline: none;
	transition: all var(--t2-transition);
}

.t2-search-posts__retry-input:focus {
	border-color: #0090A8;
	background-color: #e4ffe6;
}

.t2-search-posts__retry-btn {
	padding: 14px 32px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 700;
	border: none;
	border-radius: 100px;
	cursor: pointer;
	transition: all var(--t2-transition);
}

.t2-search-posts__retry-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

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

@media (max-width: 1200px) {
	.t2-search-hero__title {
		font-size: 36px;
	}

	.t2-search-hero__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 400px 300px;
		gap: 24px;
	}

	.t2-search-posts {
		padding: 60px 20px;
	}
}

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

@media (max-width: 768px) {
	.t2-search-hero {
		padding: 20px 0 60px 0;
	}

	.t2-search-hero__container {
		gap: 24px;
	}

	/* Header com padding lateral */
	.t2-search-hero__header {
		padding: 0 16px;
		gap: 16px;
	}

	.t2-search-hero__title {
		font-size: 28px;
	}

	/* Search Form */
	.t2-search-hero__form {
		max-width: 100%;
	}

	.t2-search-hero__input {
		padding: 12px 16px;
		font-size: 15px;
	}

	/* ============================================
	   HERO GRID - CARROSSEL HORIZONTAL
	   ============================================ */

	.t2-search-hero__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		gap: 16px;
		padding: 0 16px;
		
		/* Remove scrollbar visual */
		scrollbar-width: none;
		-ms-overflow-style: none;
		-webkit-overflow-scrolling: touch;
	}

	.t2-search-hero__grid::-webkit-scrollbar {
		display: none;
	}

	/* Cards em carrossel */
	.t2-cat-hero-card--large,
	.t2-cat-hero-card--medium {
		flex: 0 0 85%;
		min-width: 85%;
		max-width: 85%;
		min-height: 400px;
		scroll-snap-align: start;
	}

	/* Ajustar padding dos cards */
	.t2-cat-hero-card {
		padding: 24px;
	}

	/* Títulos */
	.t2-cat-hero-card__title--large,
	.t2-cat-hero-card__title--medium {
		font-size: 28px;
	}

	.t2-cat-hero-card__excerpt {
		font-size: 16px;
	}

	.t2-cat-hero-card__btn {
		font-size: 18px;
		padding: 10px 20px;
	}

	/* ============================================
	   DOTS DE NAVEGAÇÃO (HERO)
	   ============================================ */

	.t2-search-hero__dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 8px;
		padding: 20px 0 0 0;
	}

	.t2-search-hero__dot {
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background-color: #d9d9d9;
		border: none;
		padding: 0;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.t2-search-hero__dot.active {
		width: 24px;
		height: 8px;
		border-radius: 4px;
		background-color: var(--t2-primary, #0090A8);
	}

	/* ============================================
	   SEARCH POSTS - EMPILHADOS VERTICALMENTE
	   ============================================ */

	.t2-search-posts {
		padding: 40px 16px;
	}

	/* Contador */
	.t2-search-posts__count {
		margin-bottom: 24px;
		padding: 16px;
	}

	.t2-search-posts__count p {
		font-size: 16px;
	}

	/* Grid vira coluna única */
	.t2-search-posts__grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.t2-search-posts__col {
		gap: 16px;
	}

	/* Row duplo vira coluna única */
	.t2-post-card-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	/* ============================================
	   CARDS - MOBILE ADJUSTMENTS
	   ============================================ */

	/* Card horizontal vira vertical */
	.t2-post-card--horizontal {
		flex-direction: column;
		min-height: auto;
	}

	.t2-post-card--horizontal .t2-post-card__thumb-horizontal {
		width: 100%;
		height: 236px;
		min-height: 236px;
	}

	/* Ajustar alturas mínimas */
	.t2-post-card--large-vertical {
		min-height: 400px;
	}

	.t2-post-card--small {
		min-height: 400px;
	}

	/* Ajustar conteúdo dos cards */
	.t2-post-card--large-vertical .t2-post-card__content,
	.t2-post-card--small .t2-post-card__content,
	.t2-post-card--horizontal .t2-post-card__content {
		padding: 20px;
		gap: 12px;
	}

	.t2-post-card__title {
		font-size: 20px;
	}

	.t2-post-card__btn {
		font-size: 18px;
		padding: 10px 18px;
	}

	/* ============================================
	   EMPTY STATE - MOBILE
	   ============================================ */

	.t2-search-posts__empty {
		padding: 60px 20px;
	}

	.t2-search-posts__empty p {
		font-size: 18px;
	}

	.t2-search-posts__retry-form {
		flex-direction: column;
		gap: 16px;
	}

	.t2-search-posts__retry-input,
	.t2-search-posts__retry-btn {
		width: 100%;
	}

	.t2-search-posts__retry-input {
		padding: 12px 20px;
	}

	.t2-search-posts__retry-btn {
		padding: 12px 24px;
	}

	/* ============================================
	   PAGINAÇÃO - MOBILE
	   ============================================ */

	.t2-pagination {
		padding: 24px 16px;
	}

	.t2-pagination__container {
		flex-direction: column;
		gap: 16px;
	}

	.t2-pagination__numbers ul {
		gap: 12px;
	}

	.t2-pagination__numbers a,
	.t2-pagination__numbers span {
		padding: 8px 10px;
		font-size: 14px;
		min-width: 32px;
	}

	/* Esconder texto dos botões prev/next, mostrar só ícones */
	.t2-pagination__btn span {
		display: none;
	}

	.t2-pagination__btn {
		padding: 12px;
		width: 44px;
		height: 44px;
		justify-content: center;
	}

	.t2-pagination__btn svg {
		width: 20px;
		height: 20px;
	}
}

/* ============================================
   ESCONDER DOTS NO DESKTOP
   ============================================ */

@media (min-width: 769px) {
	.t2-search-hero__dots {
		display: none;
	}
}

/* ============================================
   SINGLE POST PAGE
   ============================================ */

.t2-single {
	width: 100%;
	background-color: var(--t2-white);
	padding-top: calc(var(--t2-header-height) + 20px);
}

/* ============================================
   HERO - Título + Data + Imagem
   ============================================ */

.t2-single-hero {
	width: 100%;
	padding: 20px;
}

.t2-single-hero__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	gap: 32px;
	align-items: stretch;
}

/* Title Box (Esquerda) */
.t2-single-hero__title-box {
	width: 682px;
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 559px;
}

.t2-single-hero__date {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 700;
	color: #0090A8;
	display: block;
}

.t2-single-hero__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.1;
	color: var(--t2-black);
	margin: 0;
}

/* Featured Image (Direita) */
.t2-single-hero__image {
	flex: 1;
	height: 559px;
	border-radius: 20px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

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

.t2-single-hero__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 120px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

/* ============================================
   CONTENT + SIDEBAR
   ============================================ */

.t2-single-content {
	width: 100%;
	padding: 40px 20px;
}

.t2-single-content__container {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	gap: 60px;
	align-items: flex-start;
}

/* ============================================
   MAIN CONTENT (Esquerda)
   ============================================ */

.t2-single-content__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

/* ============================================
   SHARE BUTTONS
   ============================================ */

.t2-single-share {
	width: 280px;
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 120px;
}

.t2-single-share__btn {
	width: 40px;
	height: 40px;
	background-color: #0090A8;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--t2-white);
	text-decoration: none;
	transition: all var(--t2-transition);
}

.t2-single-share__btn:hover {
	transform: scale(1.1);
	background-color: var(--t2-gray-800);
}

.t2-single-share__btn svg {
	width: 20px;
	height: 20px;
}

/* ============================================
   ARTICLE CONTENT
   ============================================ */

.t2-single-article {
	display: flex;
	flex-direction: column;
	gap: 42px;
}

/* Seções de Texto */
.t2-single-article h2,
.t2-single-article h3 {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: #595959;
	margin: 0 0 32px 0;
}

.t2-single-article p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	margin: 0 0 32px 0;
}

.t2-single-article p:last-child {
	margin-bottom: 0;
}

/* Ads Placeholder */
.t2-single-article .t2-ads-placeholder {
	width: 100%;
	height: 200px;
	background-color: #f7f7f7;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 42px 0;
}

.t2-single-article .t2-ads-placeholder span {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 600;
	color: var(--t2-white);
}

/* ============================================
   AUTHOR BOX
   ============================================ */

.t2-single-author {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
	display: flex;
	gap: 32px;
	align-items: center;
}

.t2-single-author__avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

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

.t2-single-author__label {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 18px;
	font-weight: 600;
	color: #0090A8;
	margin: 0;
}

.t2-single-author__name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 40px;
	font-weight: 600;
	line-height: 1.1;
	color: var(--t2-black);
	margin: 0;
}

.t2-single-author__bio {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #595959;
	margin: 0;
}

/* ============================================
   SIDEBAR (Direita)
   ============================================ */

.t2-single-sidebar {
	width: 540px;
	flex-shrink: 0;
}

.t2-single-sidebar__box {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
	position: sticky;
	top: calc(var(--t2-header-height) + 40px);
}

.t2-single-sidebar__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 32px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0 0 24px 0;
}

/* ============================================
   SIDEBAR LIST
   ============================================ */

.t2-single-sidebar__list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.t2-sidebar-item {
	display: flex;
	align-items: center;
	gap: 32px;
	transition: transform var(--t2-transition);
}

.t2-sidebar-item:hover {
	transform: translateX(4px);
}

/* Thumbnail */
.t2-sidebar-item__thumb {
	width: 112px;
	height: 58px;
	flex-shrink: 0;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
	display: block;
}

.t2-sidebar-item__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-sidebar-item__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

/* Content */
.t2-sidebar-item__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.t2-sidebar-item__cat {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 14px;
}

.t2-sidebar-item__cat-dot {
	width: 16px;
	height: 6px;
	background-color: #0090A8;
	border-radius: 100px;
	flex-shrink: 0;
}

.t2-sidebar-item__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 600;
	color: #0090A8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.t2-sidebar-item__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

.t2-sidebar-item__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-sidebar-item__title a:hover {
	color: #0090A8;
}

/* Arrow Button */
.t2-sidebar-item__arrow {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	background-color: var(--t2-btn-bg);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--t2-btn-text, #000000);
	text-decoration: none;
	transition: all var(--t2-transition);
}

.t2-sidebar-item__arrow:hover {
	transform: scale(1.1) rotate(45deg);
	box-shadow: 0 4px 12px rgba(94, 49, 166, 0.3);
}

.t2-sidebar-item__arrow svg {
	width: 20px;
	height: 20px;
}

/* Divider */
.t2-sidebar-item__divider {
	width: 100%;
	height: 1px;
	background-color: #ebebeb;
}

/* ============================================
   SEE ALSO SECTION
   ============================================ */

.t2-single-see-also {
	width: 100%;
	padding: 40px 20px;
	background-color: var(--t2-white);
}

.t2-single-see-also__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.t2-single-see-also__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	text-align: center;
	margin: 0;
}

/* Grid 4 Colunas */
.t2-single-see-also__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* ============================================
   SEE ALSO CARDS
   ============================================ */

.t2-see-also-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	height: 466px;
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
}

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

.t2-see-also-card__thumb {
	height: 236px;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

.t2-see-also-card__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.t2-see-also-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

.t2-see-also-card__content {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: space-between;
}

.t2-see-also-card__cat {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 14px;
}

.t2-see-also-card__cat-dot {
	width: 16px;
	height: 6px;
	background-color: #0090A8;
	border-radius: 100px;
	flex-shrink: 0;
}

.t2-see-also-card__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 600;
	color: #0090A8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.t2-see-also-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

.t2-see-also-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-see-also-card__title a:hover {
	color: #0090A8;
}

.t2-see-also-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	width: fit-content;
}

.t2-see-also-card__btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

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

@media (max-width: 1200px) {
	.t2-single-hero__container {
		flex-direction: column;
	}

	.t2-single-hero__title-box {
		width: 100%;
	}

	.t2-single-hero__image {
		height: 400px;
	}

	.t2-single-content__container {
		flex-direction: column;
		gap: 40px;
	}

	.t2-single-sidebar {
		width: 100%;
	}

	.t2-single-sidebar__box {
		position: relative;
		top: auto;
	}

	.t2-single-see-also__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.t2-single-author__name {
		font-size: 32px;
	}
}

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

@media (max-width: 768px) {
	.t2-single {
		padding: 0;
	}

	.t2-single-hero {
		padding: 20px 16px;
	}

	.t2-single-hero__title-box {
		min-height: auto;
		padding: 24px;
	}

	.t2-single-hero__title {
		font-size: 32px;
	}

	.t2-single-hero__image {
		display: none;
	}

	.t2-single-content {
		padding: 40px 16px;
	}

	.t2-single-content__main {
		gap: 60px;
	}

	.t2-single-share {
		width: 100%;
	}

	.t2-single-article h2,
	.t2-single-article h3 {
		font-size: 28px;
	}

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

	.t2-single-author__name {
		font-size: 28px;
	}

	.t2-sidebar-item {
		flex-wrap: wrap;
	}

	.t2-sidebar-item__thumb {
		width: 100%;
		height: 150px;
	}

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

	.t2-single-see-also__title {
		font-size: 36px;
	}

	.t2-single-see-also__grid {
		grid-template-columns: 1fr;
	}

	.t2-see-also-card {
		height: auto;
	}
}

/* ============================================
   PRIVACY PAGE / TERMS PAGE
   ============================================ */

.t2-privacy-page {
	width: 100%;
	background-color: var(--t2-white);
	padding-top: calc(var(--t2-header-height) + 20px);
}

/* ============================================
   HERO - Título da Página
   ============================================ */

.t2-privacy-hero {
	width: 100%;
	padding: 80px 20px;
	background-color: #f7f7f7;
}

.t2-privacy-hero__container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.t2-privacy-hero__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

/* ============================================
   CONTEÚDO DA PÁGINA
   ============================================ */

.t2-privacy-content {
	width: 100%;
	padding: 80px 20px;
}

.t2-privacy-content__container {
	max-width: 900px;
	margin: 0 auto;
}

.t2-privacy-content__wrapper {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 48px;
}

/* ============================================
   ARTICLE CONTENT STYLES
   ============================================ */

.t2-privacy-content__article {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Introdução / Parágrafo de Abertura */
.t2-privacy-content__article > p:first-child {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	background-color: var(--t2-white);
	padding: 24px;
	border-radius: 12px;
	margin: 0 0 32px 0;
}

/* Títulos H2 (1. Title, 2. Title, etc) */
.t2-privacy-content__article h2 {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 28px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--t2-black);
	margin: 32px 0 16px 0;
}

.t2-privacy-content__article h2:first-of-type {
	margin-top: 0;
}

/* Títulos H3 */
.t2-privacy-content__article h3 {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: var(--t2-black);
	margin: 24px 0 12px 0;
}

/* Parágrafos */
.t2-privacy-content__article p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	margin: 0 0 16px 0;
}

.t2-privacy-content__article p:last-child {
	margin-bottom: 0;
}

/* Listas */
.t2-privacy-content__article ul,
.t2-privacy-content__article ol {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	margin: 0 0 16px 0;
	padding-left: 32px;
}

.t2-privacy-content__article ul li,
.t2-privacy-content__article ol li {
	margin-bottom: 8px;
}

/* Links */
.t2-privacy-content__article a {
	color: #0090A8;
	text-decoration: underline;
	transition: color var(--t2-transition);
}

.t2-privacy-content__article a:hover {
	color: #0090A8;
}

/* Blockquote */
.t2-privacy-content__article blockquote {
	background-color: var(--t2-white);
	border-left: 4px solid #0090A8;
	padding: 20px 24px;
	margin: 24px 0;
	border-radius: 8px;
	font-style: italic;
}

.t2-privacy-content__article blockquote p {
	margin: 0;
}

/* Código */
.t2-privacy-content__article code {
	background-color: var(--t2-white);
	padding: 2px 8px;
	border-radius: 4px;
	font-family: 'Courier New', monospace;
	font-size: 14px;
	color: var(--t2-black);
}

.t2-privacy-content__article pre {
	background-color: var(--t2-white);
	padding: 20px;
	border-radius: 8px;
	overflow-x: auto;
	margin: 24px 0;
}

.t2-privacy-content__article pre code {
	background-color: transparent;
	padding: 0;
}

/* Strong/Bold */
.t2-privacy-content__article strong,
.t2-privacy-content__article b {
	font-weight: 600;
	color: var(--t2-black);
}

/* Emphasis/Italic */
.t2-privacy-content__article em,
.t2-privacy-content__article i {
	font-style: italic;
}

/* Imagens */
.t2-privacy-content__article img {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	margin: 24px 0;
}

/* Tabelas */
.t2-privacy-content__article table {
	width: 100%;
	border-collapse: collapse;
	margin: 24px 0;
	background-color: var(--t2-white);
	border-radius: 8px;
	overflow: hidden;
}

.t2-privacy-content__article table th,
.t2-privacy-content__article table td {
	padding: 12px 16px;
	text-align: left;
	border-bottom: 1px solid #ebebeb;
}

.t2-privacy-content__article table th {
	background-color: #f7f7f7;
	font-weight: 600;
	color: var(--t2-black);
}

.t2-privacy-content__article table tr:last-child td {
	border-bottom: none;
}

/* HR / Divisor */
.t2-privacy-content__article hr {
	border: none;
	border-top: 1px solid #ebebeb;
	margin: 32px 0;
}

/* ============================================
   SEE ALSO SECTION
   ============================================ */

.t2-privacy-see-also {
	width: 100%;
	padding: 80px 20px;
	background-color: var(--t2-white);
}

.t2-privacy-see-also__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.t2-privacy-see-also__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	text-align: center;
	margin: 0;
}

/* Grid 4 Colunas */
.t2-privacy-see-also__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* ============================================
   PRIVACY CARDS (See Also)
   ============================================ */

.t2-privacy-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	min-height: 400px;
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
}

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

.t2-privacy-card__thumb {
	height: 200px;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

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

.t2-privacy-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

.t2-privacy-card__content {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: space-between;
}

.t2-privacy-card__cat {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 14px;
}

.t2-privacy-card__cat-dot {
	width: 16px;
	height: 6px;
	background-color: #0090A8;
	border-radius: 100px;
	flex-shrink: 0;
}

.t2-privacy-card__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 600;
	color: #0090A8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.t2-privacy-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 18px;
	font-weight: 400;
	line-height: 1.3;
	color: var(--t2-black);
	margin: 0;
}

.t2-privacy-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-privacy-card__title a:hover {
	color: #0090A8;
}

.t2-privacy-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	width: fit-content;
}

.t2-privacy-card__btn:hover {
	transform: scale(1.05);
}

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

@media (max-width: 1024px) {
	.t2-privacy-hero {
		padding: 60px 20px;
	}

	.t2-privacy-hero__title {
		font-size: 40px;
	}

	.t2-privacy-content {
		padding: 60px 20px;
	}

	.t2-privacy-content__wrapper {
		padding: 32px;
	}

	.t2-privacy-content__article h2 {
		font-size: 24px;
	}

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

	.t2-privacy-see-also__title {
		font-size: 40px;
	}

	.t2-privacy-see-also__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

@media (max-width: 768px) {
	.t2-privacy-hero {
		padding: 40px 16px;
	}

	.t2-privacy-hero__title {
		font-size: 32px;
	}

	.t2-privacy-content {
		padding: 40px 16px;
	}

	.t2-privacy-content__wrapper {
		padding: 24px;
		border-radius: 16px;
	}

	.t2-privacy-content__article > p:first-child {
		padding: 20px;
	}

	.t2-privacy-content__article h2 {
		font-size: 22px;
	}

	.t2-privacy-content__article h3 {
		font-size: 18px;
	}

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

	.t2-privacy-see-also__title {
		font-size: 32px;
	}

	.t2-privacy-see-also__grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.t2-contact-page {
	width: 100%;
	background-color: var(--t2-white);
	padding-top: calc(var(--t2-header-height) + 20px);
}

/* ============================================
   HERO - Título
   ============================================ */

.t2-contact-hero {
	width: 100%;
	padding: 20px 20px 80px 20px;
}

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

.t2-contact-hero__box {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 60px 32px;
}

.t2-contact-hero__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 44px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

/* ============================================
   CONTENT - 2 Colunas
   ============================================ */

.t2-contact-content {
	width: 100%;
	padding: 0 20px 80px 20px;
}

.t2-contact-content__container {
	max-width: 1600px;
	margin: 0 auto;
}

.t2-contact-content__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: start;
}

/* ============================================
   COLUNA ESQUERDA: Texto
   ============================================ */

.t2-contact-content__text {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

/* Texto Destacado */
.t2-contact-content__highlight {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 32px;
}

.t2-contact-content__highlight p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	margin: 0;
	text-indent: 16px;
}

/* Texto Adicional */
.t2-contact-content__body {
	padding: 0 32px;
}

.t2-contact-content__body p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	color: #595959;
	margin: 0 0 16px 0;
	text-indent: 16px;
}

.t2-contact-content__body p:last-child {
	margin-bottom: 0;
}

/* ============================================
   COLUNA DIREITA: Formulário
   ============================================ */

.t2-contact-content__form-wrapper {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Mensagens de Sucesso/Erro */
.t2-contact-message {
	padding: 16px 20px;
	border-radius: 12px;
	margin-bottom: 10px;
}

.t2-contact-message p {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	font-weight: 600;
	margin: 0;
}

.t2-contact-message--success {
	background-color: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
}

.t2-contact-message--error {
	background-color: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
}

/* ============================================
   FORMULÁRIO
   ============================================ */

.t2-contact-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

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

/* Input Text */
.t2-contact-form__input {
	width: 100%;
	background-color: #ebebeb;
	border: none;
	border-radius: 100px;
	padding: 20px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-black);
	outline: none;
	transition: all var(--t2-transition);
}

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

.t2-contact-form__input:focus {
	background-color: #e0e0e0;
	box-shadow: 0 0 0 2px rgba(0, 229, 38, 0.2);
}

/* Textarea */
.t2-contact-form__textarea {
	width: 100%;
	background-color: #ebebeb;
	border: none;
	border-radius: 20px;
	padding: 20px;
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 16px;
	color: var(--t2-black);
	outline: none;
	resize: vertical;
	min-height: 164px;
	transition: all var(--t2-transition);
}

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

.t2-contact-form__textarea:focus {
	background-color: #e0e0e0;
	box-shadow: 0 0 0 2px rgba(0, 229, 38, 0.2);
}

/* Botão Submit */
.t2-contact-form__submit {
	width: 100%;
	background-color: var(--t2-btn-bg);
	border: 1px solid var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	padding: 16px 32px;
	border-radius: 100px;
	cursor: pointer;
	transition: all var(--t2-transition);
	text-transform: uppercase;
}

.t2-contact-form__submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 255, 0, 0.3);
}

.t2-contact-form__submit:active {
	transform: translateY(0);
}

/* ============================================
   SEE ALSO SECTION
   ============================================ */

.t2-contact-see-also {
	width: 100%;
	padding: 40px 20px 80px 20px;
	background-color: var(--t2-white);
}

.t2-contact-see-also__container {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.t2-contact-see-also__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	text-align: center;
	margin: 0;
}

/* Grid 4 Colunas */
.t2-contact-see-also__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

/* ============================================
   CONTACT CARDS (See Also)
   ============================================ */

.t2-contact-card {
	background-color: #f7f7f7;
	border-radius: 20px;
	padding: 8px;
	display: flex;
	flex-direction: column;
	min-height: 466px;
	transition: transform var(--t2-transition), box-shadow var(--t2-transition);
}

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

.t2-contact-card__thumb {
	height: 236px;
	border-radius: 16px;
	overflow: hidden;
	background-color: var(--t2-gray-200);
}

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

.t2-contact-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	background: linear-gradient(135deg, var(--t2-gray-300) 0%, var(--t2-gray-400) 100%);
}

.t2-contact-card__content {
	flex: 1;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	justify-content: space-between;
}

.t2-contact-card__cat {
	display: flex;
	align-items: center;
	gap: 6px;
	height: 14px;
}

.t2-contact-card__cat-dot {
	width: 16px;
	height: 6px;
	background-color: #0090A8;
	border-radius: 100px;
	flex-shrink: 0;
}

.t2-contact-card__cat-name {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 12px;
	font-weight: 600;
	color: #0090A8;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.t2-contact-card__title {
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 24px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--t2-black);
	margin: 0;
}

.t2-contact-card__title a {
	color: inherit;
	text-decoration: none;
	transition: color var(--t2-transition);
}

.t2-contact-card__title a:hover {
	color: #0090A8;
}

.t2-contact-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 16px;
	background-color: var(--t2-btn-bg);
	color: var(--t2-btn-text, #000000);
	font-family: 'Montserrat', var(--t2-font-family);
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 100px;
	transition: all var(--t2-transition);
	width: fit-content;
}

.t2-contact-card__btn:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 255, 0, 0.3);
}

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

@media (max-width: 1024px) {
	.t2-contact-hero {
		padding: 20px 20px 60px 20px;
	}

	.t2-contact-hero__box {
		padding: 40px 24px;
	}

	.t2-contact-hero__title {
		font-size: 36px;
	}

	.t2-contact-content {
		padding: 0 20px 60px 20px;
	}

	.t2-contact-content__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.t2-contact-see-also {
		padding: 40px 20px 60px 20px;
	}

	.t2-contact-see-also__title {
		font-size: 40px;
	}

	.t2-contact-see-also__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

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

@media (max-width: 768px) {
	.t2-contact-hero {
		padding: 20px 16px 40px 16px;
	}

	.t2-contact-hero__box {
		padding: 32px 20px;
		border-radius: 16px;
	}

	.t2-contact-hero__title {
		font-size: 32px;
	}

	.t2-contact-content {
		padding: 0 16px 40px 16px;
	}

	.t2-contact-content__highlight {
		padding: 24px;
		border-radius: 16px;
	}

	.t2-contact-content__body {
		padding: 0 20px;
	}

	.t2-contact-content__form-wrapper {
		padding: 24px;
		border-radius: 16px;
	}

	.t2-contact-form__input,
	.t2-contact-form__textarea {
		padding: 16px;
	}

	.t2-contact-form__submit {
		font-size: 18px;
		padding: 14px 24px;
	}

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

	.t2-contact-see-also__title {
		font-size: 32px;
	}

	.t2-contact-see-also__grid {
		grid-template-columns: 1fr;
	}
}