/* TV Nordeste Live — estilos compartilhados por todas as páginas do plugin */

.tnl-page {
	--tnl-navy: #0b1220;
	--tnl-navy-2: #141d31;
	--tnl-red: #e63946;
	--tnl-text: #1c2333;
	--tnl-muted: #5b6478;
	--tnl-bg-alt: #f5f6fa;
	--tnl-border: #e3e6ee;

	margin: 0;
	color: var(--tnl-text);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	line-height: 1.55;
	scroll-behavior: smooth;
}

.tnl-page * {
	box-sizing: border-box;
}

.tnl-page img {
	max-width: 100%;
	display: block;
}

.tnl-container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Header */

.tnl-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--tnl-navy);
	color: #fff;
}

.tnl-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
}

.tnl-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.tnl-logo span {
	color: var(--tnl-red);
}

.tnl-logo__mark {
	width: 40px;
	height: 40px;
	object-fit: contain;
	flex-shrink: 0;
}

.tnl-logo--footer {
	font-size: 22px;
	font-weight: 700;
}

.tnl-logo--footer .tnl-logo__mark {
	width: 36px;
	height: 36px;
}

.tnl-nav ul {
	display: flex;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tnl-nav a {
	color: #dfe3ee;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
}

.tnl-nav a:hover,
.tnl-nav a:focus,
.tnl-nav a[aria-current="page"] {
	color: #fff;
	border-bottom: 2px solid var(--tnl-red);
	padding-bottom: 4px;
}

/* Enquanto outro item do menu está em hover/foco, o sublinhado da página
   atual fica em espera, evitando dois itens marcados ao mesmo tempo. */
.tnl-nav ul:hover a[aria-current="page"]:not(:hover),
.tnl-nav ul:focus-within a[aria-current="page"]:not(:focus):not(:hover) {
	color: #dfe3ee;
	border-bottom: 0;
	padding-bottom: 0;
}

.tnl-nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

.tnl-nav-toggle span {
	display: block;
	height: 2px;
	background: #fff;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

/* Hero (Início) */

.tnl-hero {
	background: linear-gradient(180deg, var(--tnl-navy) 0%, var(--tnl-navy-2) 100%);
	color: #fff;
	padding: 72px 0;
	text-align: center;
}

.tnl-eyebrow {
	display: inline-block;
	color: var(--tnl-red);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.tnl-hero h1 {
	font-size: 36px;
	line-height: 1.25;
	margin: 0 auto 18px;
	max-width: 780px;
}

.tnl-hero__lead {
	color: #c3cadb;
	font-size: 17px;
	max-width: 680px;
	margin: 0 auto 28px;
}

.tnl-hero__actions {
	display: flex;
	gap: 14px;
	justify-content: center;
	flex-wrap: wrap;
}

/* Page hero (páginas internas) */

.tnl-page-hero {
	background: linear-gradient(180deg, var(--tnl-navy) 0%, var(--tnl-navy-2) 100%);
	color: #fff;
	padding: 56px 0;
}

.tnl-page-hero h1 {
	font-size: 30px;
	margin: 0 0 12px;
}

.tnl-page-hero .tnl-hero__lead {
	margin: 0;
	text-align: left;
}

/* Destaque principal */

.tnl-destaque {
	padding-top: 56px;
}

.tnl-destaque__inner {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 40px;
	align-items: center;
}

.tnl-destaque__media {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 16px 32px rgba(11, 18, 32, 0.18);
}

.tnl-destaque__media img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tnl-play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 68px;
	height: 68px;
	transform: translate(-50%, -50%);
	background: rgba(230, 57, 70, 0.9);
	border-radius: 50%;
}

.tnl-play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 55%;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 11px 0 11px 18px;
	border-color: transparent transparent transparent #fff;
}

.tnl-destaque__content h2 {
	font-size: 26px;
	margin: 0 0 12px;
}

.tnl-destaque__content p {
	color: var(--tnl-muted);
	margin: 0;
}

/* Sections */

.tnl-section {
	padding: 64px 0;
}

.tnl-section--alt {
	background: var(--tnl-bg-alt);
}

.tnl-section h2 {
	font-size: 26px;
	margin: 0 0 8px;
}

.tnl-section__lead {
	color: var(--tnl-muted);
	margin: 0 0 32px;
	max-width: 640px;
}

.tnl-grid {
	display: grid;
	gap: 24px;
	margin-bottom: 28px;
}

.tnl-grid--3 {
	grid-template-columns: repeat(3, 1fr);
}

.tnl-card {
	background: #fff;
	border: 1px solid var(--tnl-border);
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tnl-card:hover {
	box-shadow: 0 12px 24px rgba(11, 18, 32, 0.1);
	transform: translateY(-2px);
}

.tnl-card__link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.tnl-card__media {
	position: relative;
}

.tnl-card__img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.tnl-card__body {
	padding: 18px;
}

.tnl-card__body h3 {
	font-size: 17px;
	margin: 0 0 8px;
}

.tnl-card__body p {
	color: var(--tnl-muted);
	font-size: 14px;
	margin: 0;
}

.tnl-play--sm {
	width: 44px;
	height: 44px;
}

.tnl-play--sm::after {
	border-width: 8px 0 8px 13px;
}

/* Temas */

.tnl-tema {
	display: block;
	background: #fff;
	border: 1px solid var(--tnl-border);
	border-radius: 10px;
	padding: 22px;
	color: inherit;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

a.tnl-tema:hover {
	box-shadow: 0 12px 24px rgba(11, 18, 32, 0.1);
	transform: translateY(-2px);
}

.tnl-tema h3 {
	font-size: 17px;
	margin: 0 0 8px;
}

.tnl-tema p {
	color: var(--tnl-muted);
	font-size: 14px;
	margin: 0;
}

/* Estado vazio */

.tnl-empty {
	color: var(--tnl-muted);
	background: #fff;
	border: 1px dashed var(--tnl-border);
	border-radius: 10px;
	padding: 24px;
}

/* Paginação */

.tnl-pagination {
	margin-top: 8px;
}

.tnl-pagination ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
}

.tnl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 36px;
	height: 36px;
	padding: 0 10px;
	border-radius: 8px;
	border: 1px solid var(--tnl-border);
	color: var(--tnl-text);
	text-decoration: none;
	font-size: 14px;
}

.tnl-pagination .page-numbers.current {
	background: var(--tnl-navy);
	border-color: var(--tnl-navy);
	color: #fff;
}

.tnl-pagination a.page-numbers:hover {
	border-color: var(--tnl-navy);
}

/* Prose (Quem Somos / Patrocine / Post único) */

.tnl-prose {
	max-width: 760px;
}

.tnl-prose p {
	font-size: 16px;
	color: var(--tnl-text);
}

.tnl-prose .tnl-btn {
	margin-top: 12px;
}

/* Post único */

.tnl-single__meta {
	color: var(--tnl-muted);
	font-size: 14px;
	margin: 0 0 24px;
}

.tnl-single__media {
	margin-bottom: 28px;
}

.tnl-single__media img {
	border-radius: 12px;
}

.tnl-single__content {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 28px;
}

.tnl-video-embed {
	position: relative;
}

.tnl-video-embed iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 0;
	border-radius: 12px;
}

/* About (bloco "Quem Somos" na Início) */

.tnl-about__inner {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	align-items: center;
}

.tnl-about__text p {
	color: var(--tnl-text);
	font-size: 16px;
}

.tnl-about__media img {
	border-radius: 12px;
}

.tnl-pillars {
	list-style: none;
	margin: 28px 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.tnl-pillars li {
	background: var(--tnl-bg-alt);
	border-radius: 10px;
	padding: 16px;
}

.tnl-pillars strong {
	display: block;
	margin-bottom: 6px;
	font-size: 15px;
}

.tnl-pillars span {
	color: var(--tnl-muted);
	font-size: 13px;
}

/* Ao vivo / educativo */

.tnl-live__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.tnl-live__inner h2 {
	margin: 0 0 8px;
}

.tnl-live__inner p {
	color: var(--tnl-muted);
	margin: 0;
	max-width: 560px;
}

.tnl-live__badge {
	background: var(--tnl-red);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	padding: 8px 18px;
	border-radius: 999px;
	white-space: nowrap;
}

/* Sponsors */

.tnl-sponsors__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 28px;
}

.tnl-sponsors__slot {
	background: #fff;
	border: 1px dashed var(--tnl-border);
	border-radius: 10px;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Buttons */

.tnl-btn {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.tnl-btn--primary {
	background: #fff;
	color: var(--tnl-navy);
}

.tnl-btn--outline {
	border: 2px solid var(--tnl-navy);
	color: var(--tnl-navy);
}

.tnl-btn--light {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
}

.tnl-btn--youtube {
	background: var(--tnl-red);
	color: #fff;
}

.tnl-btn--dark {
	background: var(--tnl-navy);
	color: #fff;
}

/* Card de conversão (parceiro GSImobCRM) */

.tnl-gsimob-card {
	margin-top: 8px;
	max-width: 640px;
	background: var(--tnl-bg-alt);
	border: 1px solid var(--tnl-border);
	border-left: 4px solid var(--tnl-navy);
	border-radius: 12px;
	padding: 28px 32px;
}

.tnl-gsimob-card h3 {
	font-size: 20px;
	margin: 0 0 10px;
}

.tnl-gsimob-card p {
	color: var(--tnl-text);
	font-size: 15px;
	margin: 0 0 18px;
}

.tnl-gsimob-card .tnl-btn {
	margin-right: 12px;
}

.tnl-gsimob-card__note {
	display: inline-block;
	color: var(--tnl-muted);
	font-size: 13px;
	margin-top: 12px;
}

/* Social + CTA */

.tnl-social-cta {
	background: var(--tnl-navy);
	color: #fff;
	padding: 40px 0;
	text-align: center;
}

.tnl-social-cta__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.tnl-social-cta__inner p {
	margin: 0;
}

.tnl-social-links {
	display: flex;
	gap: 12px;
}

.tnl-social-links__item {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 13px;
}

.tnl-social-links__item:hover {
	background: var(--tnl-red);
}

.tnl-social-links--dark .tnl-social-links__item {
	background: var(--tnl-bg-alt);
	color: var(--tnl-navy);
}

.tnl-social-links--dark .tnl-social-links__item:hover {
	background: var(--tnl-red);
	color: #fff;
}

/* Footer */

.tnl-footer {
	background: #060a13;
	color: #aab2c5;
}

.tnl-footer__inner {
	display: grid;
	grid-template-columns: 1.3fr 1fr 1fr;
	gap: 32px;
	padding: 48px 0 32px;
}

.tnl-logo--footer {
	margin: 0 0 12px;
}

.tnl-footer__col h3 {
	color: #fff;
	font-size: 15px;
	margin: 0 0 14px;
}

.tnl-footer__col ul {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: grid;
	gap: 8px;
}

.tnl-footer__col a {
	color: #aab2c5;
	text-decoration: none;
	font-size: 14px;
}

.tnl-footer__col a:hover {
	color: #fff;
}

.tnl-footer__col p {
	font-size: 14px;
}

.tnl-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	font-size: 13px;
}

/* Responsive */

@media (max-width: 900px) {
	.tnl-destaque__inner,
	.tnl-about__inner {
		grid-template-columns: 1fr;
	}

	.tnl-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.tnl-sponsors__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tnl-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.tnl-nav-toggle {
		display: flex;
	}

	.tnl-nav {
		position: absolute;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--tnl-navy);
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.25s ease;
	}

	.tnl-nav.is-open {
		max-height: 420px;
	}

	.tnl-nav ul {
		flex-direction: column;
		gap: 0;
		padding: 8px 24px 20px;
	}

	.tnl-nav li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.tnl-nav a {
		display: block;
		padding: 12px 0;
	}

	.tnl-nav a:hover,
	.tnl-nav a:focus,
	.tnl-nav a[aria-current="page"] {
		border-bottom: 0;
	}

	.tnl-grid--3 {
		grid-template-columns: 1fr;
	}

	.tnl-pillars {
		grid-template-columns: 1fr;
	}

	.tnl-sponsors__grid {
		grid-template-columns: 1fr 1fr;
	}

	.tnl-hero h1 {
		font-size: 27px;
	}

	.tnl-live__inner {
		text-align: center;
		justify-content: center;
	}

	.tnl-container {
		padding: 0 18px;
	}

	.tnl-hero,
	.tnl-page-hero {
		padding: 40px 0;
	}

	.tnl-hero h1 {
		margin-bottom: 14px;
	}

	.tnl-destaque {
		padding-top: 36px;
	}

	.tnl-destaque__content h2 {
		font-size: 22px;
	}

	.tnl-section {
		padding: 40px 0;
	}

	.tnl-section h2 {
		font-size: 22px;
	}

	.tnl-section__lead {
		margin-bottom: 22px;
	}

	.tnl-grid {
		gap: 16px;
	}

	.tnl-social-cta {
		padding: 28px 0;
	}

	.tnl-footer__inner {
		padding: 36px 0 24px;
	}

	.tnl-gsimob-card {
		padding: 20px;
	}

	.tnl-gsimob-card .tnl-btn {
		display: block;
		text-align: center;
		margin-right: 0;
	}

	.tnl-gsimob-card__note {
		display: block;
	}
}
