:root{
	--bg: #090909;
	--card: #121212;
	--muted: #9ca3af;
	--accent: #d4af37;
	--line: rgba(255,255,255,.08);
	--soft: rgba(255,255,255,.04);
	--shadow: 0 12px 30px rgba(0,0,0,.35);
}

*{
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

body{
	margin: 0;
	font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
	background: linear-gradient(to bottom, #050505, #0c0c0c 30%, #090909);
	color: #fff;
}

a{
	text-decoration: none;
	color: inherit;
}

img{
	max-width: 100%;
	display: block;
	height: auto;
}

.container{
	max-width: 1150px;
	margin: 0 auto;
	padding: 16px;
}

.ritmo{
	font-size: 10px;
	color: #ffcc00 !important;
}

header{
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(0,0,0,.62);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}

.row{
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
}

.brand-block{
	display: flex;
	flex-direction: column;
}

.topbar{
	display: flex;
	gap: 18px;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}

.main-nav{
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
}

.nav-link{
	padding: 10px 14px;
	border-radius: 12px;
	border: 1px solid transparent;
	color: #e5e7eb;
	transition: .25s ease;
	font-size: 14px;
}

.nav-link:hover{
	background: rgba(255,255,255,.06);
	border-color: var(--line);
	color: #fff;
}

.btn{
	display: inline-block;
	padding: 12px 16px;
	border-radius: 12px;
	transition: .25s ease;
}

.btn:hover{
	transform: translateY(-1px);
}

.btn-primary{
	background: var(--accent);
	color: #000;
	font-weight: 700;
}

.btn-ghost{
	border: 1px solid var(--line);
	background: rgba(255,255,255,.05);
}

/* BOTÓN HAMBURGUESA */
.menu-toggle{
	display: none;
	width: 46px;
	height: 46px;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: 12px;
	background: rgba(255,255,255,.05);
	cursor: pointer;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	transition: .25s ease;
}

.menu-toggle:hover{
	background: rgba(255,255,255,.10);
	border-color: rgba(212,175,55,.35);
}

.menu-toggle span{
	display: block;
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
}

.hero{
	padding: 22px 0 10px;
}

.hero-banner{
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	border: 1px solid var(--line);
	min-height: 250px;
	background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,.30)),
	url('../images/banner-grupo-16x9.jpg') center/cover no-repeat;
	box-shadow: var(--shadow);
	display: flex;
	align-items: end;
}

.hero-banner::after{
	content:'';
	position:absolute;
	inset:0;
	background: radial-gradient(circle at 70% 20%, rgba(212,175,55,.15), transparent 60%);
	pointer-events:none;
}

.hero-overlay{
	width: 100%;
	padding: 22px;
}
.hero-overlay h1{
	text-shadow:0 4px 18px rgba(0,0,0,.35);
}

.hero-overlay p{
	color:rgba(255,255,255,.92);
}

.hero-kicker{
	display:inline-block;
	padding:8px 14px;
	border:1px solid rgba(255,255,255,.14);
	border-radius:999px;
	background:rgba(0,0,0,.28);
	backdrop-filter:blur(8px);
	font-size:12px;
	letter-spacing:.08em;
	text-transform:uppercase;
	color:#f6d36b;
	margin-bottom:16px;
}

h1{
	font-size: 32px;
	line-height: 1.08;
	margin: 8px 0 10px;
}

h2{
	font-size: 24px;
	margin: 0 0 14px;
}

h3{
	margin: 8px 0;
}

p{
	color: #d1d5db;
	line-height: 1.6;
}

.grid{
	display: grid;
	gap: 14px;
}

.grid-2{
	grid-template-columns: 1fr;
}

.card{
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: 20px;
	padding: 16px;
	box-shadow: var(--shadow);
}

.platforms{
	grid-template-columns: 1fr 1fr;
}

.platform{
	display: block;
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 16px;
	background: var(--soft);
	transition: .25s ease;
}

.platform:hover {
	transform: translateY(-4px);
	border-color: #ffcc00;
	background: #ffcc00;
	color: #000;
	box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.platform:hover small,
.platform:hover div {
	color: #000 !important;
}

.muted{
	color: var(--muted);
}

.section{
	margin-top: 22px;
}

.cover-box{
	overflow: hidden;
	border-radius: 18px;
	border: 1px solid var(--line);
	background: #0e0e0e;
}

.cover-box img{
	width: 100%;
	object-fit: cover;
}

.album-layout{
	display: grid;
	gap: 14px;
	grid-template-columns: 1fr;
}

.album-image{
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #0e0e0e;
	box-shadow: var(--shadow);
}

.album-image img{
	width: 100%;
	object-fit: cover;
}

.track-list{
	display: grid;
	gap: 10px;
}

.track{
	padding: 7px 8px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: rgba(255,255,255,.03);
}

.members-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.member-card{
	background: linear-gradient(to bottom, rgba(255,255,255,.04), rgba(255,255,255,.02));
	border: 1px solid var(--line);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: .25s ease;
}

.member-card:hover{
	transform: translateY(-2px);
	border-color: rgba(212,175,55,.35);
}

.member-photo{
	aspect-ratio: 4 / 5;
	background: #0e0e0e;
	overflow: hidden;
}

.member-photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-info{
	padding: 14px 14px 16px;
	text-align: center;
}

.member-name{
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.member-quote{
	margin-top: 6px;
	font-size: 14px;
	color: var(--accent);
	letter-spacing: .03em;
}

footer{
	border-top: 1px solid var(--line);
	margin-top: 28px;
}

/* MOBILE MENU */
@media(max-width:767px){
	.topbar{
		flex-wrap: nowrap;
	}

	.menu-toggle{
		display: flex;
		flex-shrink: 0;
	}

	.main-nav{
		display: none;
		position: absolute;
		top: calc(100% + 10px);
		left: 16px;
		right: 16px;
		z-index: 200;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 10px;
		padding: 14px;
		border: 1px solid var(--line);
		border-radius: 18px;
		background: rgba(10,10,10,.98);
		backdrop-filter: blur(10px);
		box-shadow: var(--shadow);
	}

	.main-nav.active{
		display: flex;
	}

	.nav-link,
	.main-nav .btn{
		width: 100%;
		text-align: left;
	}

	.main-nav .btn{
		text-align: center;
	}
}

@media(min-width:768px){
	h1{
		font-size: 50px;
	}

	.hero-banner{
		min-height: 420px;
	}

	.grid-2{
		grid-template-columns: 1.25fr .75fr;
	}

	.platforms{
		grid-template-columns: repeat(3,1fr);
	}

	.album-layout{
		grid-template-columns: 1fr 1fr;
		align-items: start;
	}

	.hero-overlay{
		padding: 34px;
		max-width: 760px;
	}

	.members-grid{
		grid-template-columns: repeat(3, 1fr);
	}
}

@media(min-width:1024px){
	.platforms{
		grid-template-columns: repeat(5,1fr);
	}

	.members-grid{
		grid-template-columns: repeat(4, 1fr);
	}
}

/* =========================
   VIDEOS PAGE STYLES
========================= */

.page-hero{
	padding:28px 0 12px;
}

.video-grid{
	display:grid;
	gap:16px;
	grid-template-columns:1fr;
	margin-top:18px;
}

.video-card{
	background:var(--card);
	border:1px solid var(--line);
	border-radius:20px;
	padding:14px;
	box-shadow:var(--shadow);
}

.video-frame{
	aspect-ratio:16 / 9;
	width:100%;
	border:none;
	border-radius:16px;
	background:#000;
}

.placeholder{
	display:flex;
	align-items:center;
	justify-content:center;
	aspect-ratio:16 / 9;
	border-radius:16px;
	border:1px dashed rgba(212,175,55,.35);
	background:rgba(255,255,255,.02);
	color:var(--muted);
	text-align:center;
	padding:20px;
}

/* RESPONSIVE */
@media(min-width:768px){
	.video-grid{
		grid-template-columns:1fr 1fr;
	}
}

/* =========================
   LETRAS PAGE STYLES
========================= */

.lyrics-grid{
	display:grid;
	gap:16px;
	grid-template-columns:1fr;
	margin-top:22px;
}

.song-card{
	background:var(--card);
	border:1px solid var(--line);
	border-radius:20px;
	padding:18px;
	box-shadow:var(--shadow);
}

@media(min-width:768px){
	.lyrics-grid{
		grid-template-columns:1fr 1fr;
	}
}

/* =========================
   CREADOR PAGE STYLES
========================= */

.profile-layout{
	display:grid;
	gap:18px;
	grid-template-columns:1fr;
	margin-top:22px;
}

.profile-photo{
	border-radius:20px;
	overflow:hidden;
	border:1px solid var(--line);
	background:#0e0e0e;
	min-height:320px;
	display:flex;
	align-items:center;
	justify-content:center;
	color:var(--muted);
}

@media(min-width:768px){
	.profile-layout{
		grid-template-columns:380px 1fr;
		align-items:start;
	}
}