/*
Theme Name: Radio Rio Funk
Theme URI: https://radioriofunk.cutlink.com.br
Author: Radio Rio Funk
Description: Tema simples, rapido e direto para a Radio Rio Funk.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: radio-rio-funk
*/

:root {
	--rrf-black: #050505;
	--rrf-panel: #111111;
	--rrf-panel-2: #181818;
	--rrf-red: #f20d18;
	--rrf-yellow: #ffd323;
	--rrf-cyan: #3ec7e9;
	--rrf-white: #ffffff;
	--rrf-muted: #d4d4d4;
	--rrf-line: rgba(255, 255, 255, .14);
	--rrf-width: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rrf-black);
	color: var(--rrf-white);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

img,
video,
iframe {
	max-width: 100%;
}

a {
	color: inherit;
}

.rrf-container {
	width: min(var(--rrf-width), calc(100% - 32px));
	margin-inline: auto;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(5, 5, 5, .92);
	border-bottom: 1px solid var(--rrf-line);
	backdrop-filter: blur(14px);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 78px;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	text-decoration: none;
}

.custom-logo {
	display: block;
	width: 58px;
	height: 58px;
	object-fit: contain;
}

.site-title {
	margin: 0;
	color: var(--rrf-white);
	font-size: 24px;
	line-height: 1;
	font-weight: 950;
	text-transform: uppercase;
	letter-spacing: 0;
}

.site-tagline {
	display: block;
	margin-top: 4px;
	color: var(--rrf-yellow);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 18px;
}

.main-navigation ul {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-navigation a {
	color: var(--rrf-white);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
	color: var(--rrf-yellow);
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
	background: transparent;
	color: var(--rrf-white);
	font-size: 26px;
	cursor: pointer;
}

.rrf-live-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 10px 14px;
	background: var(--rrf-red);
	color: var(--rrf-white);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.rrf-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--rrf-white);
	box-shadow: 0 0 0 0 rgba(255, 255, 255, .72);
	animation: rrf-pulse 1.5s infinite;
}

.rrf-news-wall {
	padding: 32px 0 42px;
	background: #f7f7f7;
	color: #17365f;
}

.rrf-news-wall__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(260px, .85fr) minmax(300px, 1fr);
	gap: 26px;
	align-items: start;
}

.rrf-lane-title {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 18px;
	height: 18px;
	text-align: right;
}

.rrf-lane-title::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	height: 2px;
	background: currentColor;
	opacity: .9;
}

.rrf-lane-title span {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 7px;
	border-radius: 3px;
	color: #061426;
	font-size: 12px;
	font-weight: 950;
	text-transform: uppercase;
}

.rrf-lane-title--yellow {
	color: var(--rrf-yellow);
}

.rrf-lane-title--yellow span {
	background: var(--rrf-yellow);
}

.rrf-lane-title--blue {
	color: #0073bd;
}

.rrf-lane-title--blue span {
	background: #0073bd;
	color: var(--rrf-white);
}

.rrf-main-story img,
.rrf-side-story img,
.rrf-promo-card img {
	display: block;
	width: 100%;
	object-fit: cover;
	border-radius: 3px;
}

.rrf-main-story img {
	aspect-ratio: 16 / 9;
}

.rrf-main-story h2 {
	margin: 12px 0 6px;
	color: #3c4856;
	font-size: clamp(24px, 3vw, 34px);
	line-height: 1.14;
	font-weight: 950;
	letter-spacing: 0;
}

.rrf-main-story p {
	margin: 0;
	color: #4e5b68;
	font-size: 16px;
}

.rrf-side-story {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: center;
	gap: 14px;
	margin-top: 34px;
}

.rrf-side-story img {
	aspect-ratio: 4 / 3;
	filter: grayscale(1);
}

.rrf-side-story h3,
.rrf-promo-card h3 {
	margin: 8px 0 0;
	color: #0073bd;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 950;
	letter-spacing: 0;
}

.rrf-promo-card + .rrf-promo-card {
	margin-top: 28px;
}

.rrf-promo-card img {
	aspect-ratio: 16 / 9;
}

.rrf-chart-column {
	padding-top: 2px;
}

.rrf-chart-column h2 {
	margin: 0 0 6px;
	color: #536f9b;
	font-size: 32px;
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
}

.rrf-chart-column > p {
	margin: 0 0 10px;
	color: #315b95;
	font-size: 19px;
	font-weight: 800;
}

.rrf-chart-list {
	margin: 0;
	padding: 18px 30px 0 54px;
	background: #174a80;
	color: var(--rrf-white);
	border-radius: 7px 7px 0 0;
	counter-reset: rrf-chart;
	list-style: none;
}

.rrf-chart-list li {
	position: relative;
	min-height: 90px;
	padding: 0 0 18px;
	border-bottom: 1px solid rgba(255, 255, 255, .28);
	counter-increment: rrf-chart;
}

.rrf-chart-list li:last-child {
	border-bottom: 0;
}

.rrf-chart-list li::before {
	content: counter(rrf-chart, decimal-leading-zero);
	position: absolute;
	left: -40px;
	top: -4px;
	color: #75a8dc;
	font-size: 34px;
	line-height: 1;
	font-weight: 950;
}

.rrf-chart-list strong {
	display: block;
	color: var(--rrf-white);
	font-size: 18px;
	line-height: 1.15;
}

.rrf-chart-list span {
	display: block;
	margin-top: 5px;
	color: #d9ecff;
	font-size: 14px;
	font-weight: 700;
}

.rrf-chart-column::after {
	content: "*Ranking editorial da Radio Rio Funk";
	display: block;
	padding: 18px 30px;
	background: #0d3a68;
	border-radius: 0 0 7px 7px;
	color: var(--rrf-yellow);
	font-size: 13px;
	font-weight: 950;
}

.rrf-chart-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	margin-top: 10px;
	padding: 0 16px;
	background: #d70a3a;
	border-radius: 6px;
	color: var(--rrf-white);
	font-size: 13px;
	font-weight: 950;
	text-decoration: none;
	text-transform: uppercase;
}

.rrf-top-player {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding: 38px 0;
	background: #080808;
	border-bottom: 1px solid var(--rrf-line);
}

.rrf-top-player::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .72) 48%, rgba(0, 0, 0, .86) 100%),
		url("../../uploads/2026/05/capa-do-youtube.png") center / cover no-repeat;
	opacity: .9;
}

.rrf-top-player__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	align-items: center;
	gap: 30px;
}

.rrf-top-player__copy h1 {
	max-width: 650px;
	margin: 18px 0 12px;
	color: var(--rrf-white);
	font-size: clamp(40px, 6vw, 78px);
	line-height: .92;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: 0 12px 36px rgba(0, 0, 0, .6);
}

.rrf-top-player__copy p {
	max-width: 620px;
	margin: 0;
	color: var(--rrf-muted);
	font-size: 18px;
}

.rrf-player-frame {
	display: grid;
	place-items: center;
	padding: 14px;
	background: rgba(0, 0, 0, .66);
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
	box-shadow: 0 26px 70px rgba(0, 0, 0, .48);
}

.rrf-player-frame iframe {
	display: block;
	width: 350px;
	max-width: 100%;
	height: 480px;
	border: 0;
}

.rrf-banner {
	padding: 34px 0;
	background: var(--rrf-black);
}

.rrf-banner__inner {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	min-height: 220px;
	padding: 28px;
	overflow: hidden;
	position: relative;
	isolation: isolate;
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
	background: #101010;
}

.rrf-banner__inner::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .64) 58%, rgba(0, 0, 0, .3) 100%),
		url("../../uploads/2026/05/ChatGPT-Image-19-de-mai.-de-2026-16_18_21.png") center / cover no-repeat;
}

.rrf-banner__inner span {
	display: block;
	margin-bottom: 8px;
	color: var(--rrf-yellow);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.rrf-banner__inner h2 {
	max-width: 720px;
	margin: 0 0 10px;
	color: var(--rrf-white);
	font-size: clamp(30px, 5vw, 54px);
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rrf-banner__inner p {
	max-width: 600px;
	margin: 0;
	color: var(--rrf-muted);
}

.rrf-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: calc(100vh - 78px);
	display: grid;
	align-items: center;
	padding: 70px 0;
	background: var(--rrf-black);
}

.rrf-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .58) 46%, rgba(0, 0, 0, .2) 100%),
		url("../../uploads/2026/05/ChatGPT-Image-19-de-mai.-de-2026-16_18_21.png") center / cover no-repeat;
}

.rrf-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 160px;
	background: linear-gradient(180deg, rgba(5, 5, 5, 0), var(--rrf-black));
}

.rrf-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
	align-items: center;
	gap: 44px;
}

.rrf-hero h1 {
	max-width: 760px;
	margin: 22px 0 18px;
	color: var(--rrf-white);
	font-size: clamp(46px, 7vw, 92px);
	line-height: .94;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
	text-shadow: 0 12px 36px rgba(0, 0, 0, .52);
}

.rrf-hero__text {
	max-width: 660px;
	margin: 0 0 28px;
	color: var(--rrf-muted);
	font-size: 19px;
}

.rrf-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rrf-button,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 20px;
	border: 2px solid transparent;
	border-radius: 8px;
	background: var(--rrf-yellow);
	color: #050505;
	font-weight: 950;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}

.rrf-button--outline {
	background: transparent;
	border-color: rgba(255, 255, 255, .28);
	color: var(--rrf-white);
}

.rrf-player-stage {
	min-height: 420px;
	display: grid;
	align-items: center;
	padding: 16px;
	background: rgba(7, 7, 7, .74);
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
	backdrop-filter: blur(10px);
}

.rrf-player-stage:empty::before {
	content: "Player da radio";
	display: grid;
	place-items: center;
	min-height: 360px;
	color: var(--rrf-muted);
	border: 1px dashed rgba(255, 255, 255, .24);
	border-radius: 8px;
}

.rrf-player-stage > * {
	max-width: 100%;
}

.rrf-band {
	padding: 64px 0;
	background: var(--rrf-black);
}

.rrf-band--compact {
	padding: 44px 0;
}

.rrf-band--panel {
	background: #0c0c0c;
	border-block: 1px solid var(--rrf-line);
}

.rrf-section-title {
	max-width: 820px;
	margin: 0 0 28px;
}

.rrf-section-title span {
	display: block;
	margin-bottom: 8px;
	color: var(--rrf-yellow);
	font-size: 13px;
	font-weight: 950;
	text-transform: uppercase;
}

.rrf-section-title h2 {
	margin: 0;
	color: var(--rrf-white);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rrf-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.rrf-card {
	min-height: 182px;
	padding: 24px;
	background: var(--rrf-panel);
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
}

.rrf-card__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: 8px;
	background: var(--rrf-red);
	color: var(--rrf-white);
	font-size: 14px;
	font-weight: 950;
	text-transform: uppercase;
}

.rrf-card h3 {
	margin: 0 0 10px;
	color: var(--rrf-white);
	font-size: 24px;
	line-height: 1.05;
}

.rrf-card p {
	margin: 0;
	color: var(--rrf-muted);
}

.rrf-feature {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 34px;
}

.rrf-feature img {
	display: block;
	width: 100%;
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
}

.rrf-feature h2 {
	margin: 0 0 16px;
	color: var(--rrf-white);
	font-size: clamp(34px, 5vw, 60px);
	line-height: 1;
	font-weight: 950;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rrf-feature p {
	margin: 0 0 22px;
	color: var(--rrf-muted);
	font-size: 18px;
}

.rrf-contact-strip {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 18px;
	padding: 26px;
	background: var(--rrf-panel-2);
	border: 1px solid var(--rrf-line);
	border-radius: 8px;
}

.rrf-contact-strip h2 {
	margin: 0 0 6px;
	font-size: 28px;
	line-height: 1.1;
}

.rrf-contact-strip p {
	margin: 0;
	color: var(--rrf-muted);
}

.site-main {
	min-height: 60vh;
}

.content-area {
	width: min(900px, calc(100% - 32px));
	margin: 0 auto;
	padding: 58px 0;
}

.entry-title {
	margin: 0 0 20px;
	color: var(--rrf-white);
	font-size: clamp(34px, 5vw, 56px);
	line-height: 1;
	text-transform: uppercase;
}

.entry-content {
	color: var(--rrf-muted);
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content a {
	color: var(--rrf-yellow);
}

.site-footer {
	padding: 34px 0;
	background: #070707;
	border-top: 1px solid var(--rrf-line);
	color: var(--rrf-muted);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.site-footer strong {
	color: var(--rrf-white);
}

@keyframes rrf-pulse {
	70% {
		box-shadow: 0 0 0 11px rgba(255, 255, 255, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@media (max-width: 900px) {
	.admin-bar .site-header {
		top: 0;
	}

	.menu-toggle {
		display: inline-grid;
		place-items: center;
	}

	.main-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 16px;
		background: rgba(5, 5, 5, .98);
		border-bottom: 1px solid var(--rrf-line);
	}

	.main-navigation.is-open {
		display: block;
	}

	.main-navigation ul {
		display: grid;
		gap: 10px;
	}

	.main-navigation a {
		display: block;
		padding: 12px;
		background: rgba(255, 255, 255, .06);
		border-radius: 8px;
	}

	.rrf-hero {
		min-height: auto;
		padding: 48px 0;
	}

	.rrf-top-player__inner,
	.rrf-banner__inner {
		grid-template-columns: 1fr;
	}

	.rrf-news-wall {
		padding: 18px 0 24px;
		overflow: hidden;
	}

	.rrf-news-wall__grid {
		display: flex;
		gap: 16px;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		padding-bottom: 10px;
	}

	.rrf-news-column,
	.rrf-promo-column,
	.rrf-chart-column {
		flex: 0 0 min(82vw, 360px);
		scroll-snap-align: start;
	}

	.rrf-main-story,
	.rrf-side-story,
	.rrf-promo-card,
	.rrf-chart-column {
		background: #ffffff;
		border: 1px solid #e4e8ef;
		border-radius: 8px;
		overflow: hidden;
	}

	.rrf-main-story h2,
	.rrf-main-story p,
	.rrf-side-story h3,
	.rrf-promo-card h3 {
		padding-inline: 12px;
	}

	.rrf-main-story p {
		padding-bottom: 12px;
	}

	.rrf-side-story {
		display: block;
		margin-top: 14px;
	}

	.rrf-side-story img,
	.rrf-promo-card img {
		aspect-ratio: 16 / 9;
	}

	.rrf-promo-card + .rrf-promo-card {
		margin-top: 14px;
	}

	.rrf-chart-column {
		padding-top: 0;
	}

	.rrf-chart-column h2,
	.rrf-chart-column > p {
		padding-inline: 14px;
	}

	.rrf-chart-column h2 {
		padding-top: 14px;
		font-size: 26px;
	}

	.rrf-top-player {
		padding: 28px 0;
	}

	.rrf-top-player__copy {
		text-align: center;
	}

	.rrf-top-player__copy .rrf-live-pill {
		margin-inline: auto;
	}

	.rrf-player-frame {
		width: min(382px, 100%);
		margin-inline: auto;
	}

	.rrf-hero::before {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .58) 45%, rgba(0, 0, 0, .94) 100%),
			url("../../uploads/2026/05/ChatGPT-Image-19-de-mai.-de-2026-16_18_21.png") center / cover no-repeat;
	}

	.rrf-hero__grid,
	.rrf-card-grid,
	.rrf-feature,
	.rrf-contact-strip {
		grid-template-columns: 1fr;
	}

	.rrf-player-stage {
		min-height: 320px;
	}

	.rrf-contact-strip {
		align-items: start;
	}

	.site-footer__inner {
		display: grid;
	}
}

@media (max-width: 520px) {
	.site-header__inner {
		min-height: 68px;
	}

	.site-title {
		font-size: 18px;
	}

	.site-tagline {
		font-size: 10px;
	}

	.custom-logo {
		width: 46px;
		height: 46px;
	}

	.rrf-hero h1 {
		font-size: 43px;
	}

	.rrf-button,
	.wp-block-button__link {
		width: 100%;
	}

	.rrf-player-frame iframe {
		height: 430px;
	}

	.rrf-banner__inner {
		padding: 22px;
	}

	.rrf-news-wall {
		padding-top: 22px;
	}

	.rrf-news-column,
	.rrf-promo-column,
	.rrf-chart-column {
		flex-basis: 86vw;
	}

	.rrf-chart-list {
		padding-right: 18px;
	}
}
