/* Custom styles (BEM) for Rosa Matos site */

.music {
	color: #242424;
}

.music--spotify {
	--music-accent-a: #00a2ff;
	--music-accent-b: #18ffd1;
	--music-ink: #242424;
	--music-muted: #6c757d;
	--music-card: #ffffff;
	--music-surface: #f7f7f7;
	--music-border: rgba(0, 0, 0, 0.08);
}

.music-section {
	height: 100%;
	padding-right: 70px;
}

.music__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.music__title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
}

.music__subtitle {
	color: #6c757d;
	max-width: 52rem;
}

.music__discografia-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.music__discografia-actions {
	display: flex;
	gap: 10px;
}

.music__scroll-btn {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--music-border);
	background: var(--music-card);
	color: var(--music-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

.music__scroll-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.music__albums-slider {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 6px 2px 16px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.music__albums-slider::-webkit-scrollbar {
	height: 10px;
}

.music__albums-slider::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.12);
	border-radius: 999px;
}

.music__album-tile {
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 56px 1fr;
	gap: 12px;
	align-items: center;
	min-width: 290px;
	padding: 12px;
	border-radius: 14px;
	background: var(--music-card);
	border: 1px solid var(--music-border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	color: var(--music-ink);
	text-decoration: none;
	transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.music__album-tile:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 0, 0, 0.14);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.music__album-tile.is-active {
	border-color: rgba(0, 162, 255, 0.55);
	box-shadow: 0 18px 44px rgba(0, 162, 255, 0.12);
}

.music__album-cover {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	overflow: hidden;
	display: block;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.music__album-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.music__album-text {
	min-width: 0;
	display: block;
}

.music__album-name {
	display: block;
	font-weight: 700;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.music__album-meta-small {
	display: block;
	color: var(--music-muted);
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.music__section-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 18px;
}

.music__selector label {
	color: var(--music-muted);
	font-size: 13px;
}

.music__player {
	margin-top: 20px;
}

.music__player-shell {
	border-radius: 18px;
	background: var(--music-card);
	border: 1px solid var(--music-border);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.music__player-top {
	display: grid;
	grid-template-columns: 124px 1fr auto;
	gap: 18px;
	align-items: center;
	padding: 18px 18px 16px;
	background: linear-gradient(135deg, rgba(0, 162, 255, 0.18), rgba(24, 255, 209, 0.10));
}

.music__player-cover {
	width: 124px;
	height: 124px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
	background: #000;
}

.music__player-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.music__player-kicker {
	color: rgba(36, 36, 36, 0.7);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 6px;
}

.music__player-title {
	font-weight: 900;
	font-family: "Playfair Display", serif;
	margin: 0;
}

.music__player-sub {
	color: rgba(36, 36, 36, 0.7);
}

.music__nowplaying {
	font-size: 14px;
	color: rgba(36, 36, 36, 0.7);
}

.music__nowplaying-label {
	font-weight: 700;
	color: var(--music-ink);
	margin-right: 6px;
}

.music__player-actions {
	display: flex;
	align-items: center;
}

.music__stop-btn {
	border: 0;
	border-radius: 999px;
	padding: 10px 14px;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(135deg, var(--music-accent-a), var(--music-accent-b));
	box-shadow: 0 12px 26px rgba(0, 162, 255, 0.22);
	cursor: pointer;
	transition: transform 140ms ease, box-shadow 140ms ease;
}

.music__stop-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(0, 162, 255, 0.26);
}

.music__player-audio {
	padding: 16px 18px;
	background: #fff;
	border-top: 1px solid var(--music-border);
	border-bottom: 1px solid var(--music-border);
}

.music__audio {
	width: 100%;
}

.music__tracklist {
	padding: 10px 10px 18px;
}

.music__tracklist-head {
	display: grid;
	grid-template-columns: 60px 1fr 70px;
	padding: 10px 14px;
	color: var(--music-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.music__trackrow {
	display: grid;
	grid-template-columns: 60px 1fr 70px;
	align-items: center;
	padding: 12px 14px;
	border-radius: 12px;
	margin: 6px 6px 0;
	background: #fff;
	transition: background 140ms ease, transform 140ms ease;
}

.music__trackrow:hover {
	background: rgba(0, 162, 255, 0.06);
	transform: translateY(-1px);
}

.music__trackcol--num {
	color: var(--music-muted);
	font-variant-numeric: tabular-nums;
}

.music__tracktitle {
	font-weight: 700;
	line-height: 1.2;
}

.music__trackmeta {
	font-size: 13px;
	color: var(--music-muted);
	margin-top: 3px;
}

.music__trackcol--action {
	display: flex;
	justify-content: flex-end;
}

.music__track-btn {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid var(--music-border);
	background: linear-gradient(135deg, rgba(0, 162, 255, 0.92), rgba(24, 255, 209, 0.92));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(0, 162, 255, 0.20);
	transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.music__track-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(0, 162, 255, 0.24);
	filter: saturate(1.05);
}

.music__track-btn[aria-pressed="true"] {
	filter: saturate(1.2) brightness(0.95);
}

.music__empty {
	padding: 18px 14px 4px;
	color: var(--music-muted);
}

@media (max-width: 992px) {
	.music-section {
		height: auto;
		padding: 0 15px;
		margin: 0;
	}
	.music__player-top {
		grid-template-columns: 96px 1fr;
		grid-template-rows: auto auto;
	}
	.music__player-actions {
		grid-column: 1 / -1;
		justify-content: flex-start;
	}
	.music__player-cover {
		width: 96px;
		height: 96px;
	}
	.music__album-tile {
		min-width: 250px;
	}
}

@media (max-width: 576px) {
	.music__tracklist-head,
	.music__trackrow {
		grid-template-columns: 44px 1fr 62px;
	}
}

/* Videos page (BEM) */
.videos {
	color: #242424;
	height: 100%;
	padding-right: 70px;
}

.videos--spotify {
	--videos-accent-a: #00a2ff;
	--videos-accent-b: #18ffd1;
	--videos-ink: #242424;
	--videos-muted: #6c757d;
	--videos-card: #ffffff;
	--videos-border: rgba(0, 0, 0, 0.08);
}

.videos__header {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.videos__title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
}

.videos__subtitle {
	color: var(--videos-muted);
	max-width: 52rem;
}

.videos__galeria-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
}

.videos__galeria-actions {
	display: flex;
	gap: 10px;
}

.videos__scroll-btn {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid var(--videos-border);
	background: var(--videos-card);
	color: var(--videos-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 120ms ease, box-shadow 120ms ease;
}

.videos__scroll-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.videos__slider {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding: 6px 2px 16px;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.videos__tile {
	scroll-snap-align: start;
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 14px;
	align-items: center;
	min-width: 520px;
	padding: 12px;
	border-radius: 16px;
	background: var(--videos-card);
	border: 1px solid var(--videos-border);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	color: var(--videos-ink);
	text-decoration: none;
	transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.videos__tile:hover {
	transform: translateY(-2px);
	border-color: rgba(0, 0, 0, 0.14);
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.videos__thumb {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	background: #000;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.videos__thumb img {
	width: 100%;
	height: 90px;
	object-fit: cover;
	display: block;
	filter: saturate(1.05);
}

.videos__play {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: linear-gradient(135deg, var(--videos-accent-a), var(--videos-accent-b));
	box-shadow: 0 12px 26px rgba(0, 162, 255, 0.22);
}

.videos__text {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.videos__name {
	font-weight: 900;
	font-family: "Playfair Display", serif;
	font-size: 18px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.videos__meta {
	color: var(--videos-muted);
	font-size: 13px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.videos__sep {
	margin: 0 8px;
}

.videos__desc {
	color: rgba(36, 36, 36, 0.8);
	font-size: 14px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.videos__list-shell {
	border-radius: 18px;
	background: var(--videos-card);
	border: 1px solid var(--videos-border);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.videos__list-head {
	display: grid;
	grid-template-columns: 60px 1fr 70px;
	padding: 12px 14px;
	color: var(--videos-muted);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	background: linear-gradient(135deg, rgba(0, 162, 255, 0.16), rgba(24, 255, 209, 0.08));
	border-bottom: 1px solid var(--videos-border);
}

.videos__row {
	display: grid;
	grid-template-columns: 60px 1fr 70px;
	align-items: center;
	padding: 12px 14px;
}

.videos__row + .videos__row {
	border-top: 1px solid var(--videos-border);
}

.videos__col--num {
	color: var(--videos-muted);
	font-variant-numeric: tabular-nums;
}

.videos__rowtitle {
	font-weight: 700;
	line-height: 1.2;
}

.videos__rowmeta {
	font-size: 13px;
	color: var(--videos-muted);
	margin-top: 4px;
}

.videos__col--action {
	display: flex;
	justify-content: flex-end;
}

.videos__playbtn {
	width: 44px;
	height: 44px;
	border-radius: 999px;
	border: 1px solid var(--videos-border);
	background: linear-gradient(135deg, rgba(0, 162, 255, 0.92), rgba(24, 255, 209, 0.92));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(0, 162, 255, 0.20);
	transition: transform 140ms ease, box-shadow 140ms ease;
}

.videos__playbtn:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 34px rgba(0, 162, 255, 0.24);
}

@media (max-width: 992px) {
	.videos {
		height: auto;
		padding: 0 15px;
		margin: 0;
	}
	.videos__tile {
		min-width: 420px;
		grid-template-columns: 120px 1fr;
	}
	.videos__thumb img {
		height: 86px;
	}
}

@media (max-width: 576px) {
	.videos__tile {
		min-width: 320px;
		grid-template-columns: 110px 1fr;
	}
	.videos__list-head,
	.videos__row {
		grid-template-columns: 44px 1fr 62px;
	}
}

.gallery__link {
	display: block;
}

/* About page (BEM) */
.acerca__title {
	font-size: 44px;
	font-weight: 900;
	line-height: 1.05;
	font-family: "Playfair Display", serif;
}

.acerca__lead {
	font-size: 18px;
	color: #6c757d;
	max-width: 52rem;
}

.acerca__card {
	border: 0;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.acerca__card-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
}

.acerca__icon {
	width: 26px;
	height: 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #242424;
}

.acerca__facts {
	list-style: none;
	padding: 0;
	margin: 0;
}

.acerca__facts li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: #4e4e4e;
}

.acerca__facts li i {
	color: #242424;
	width: 16px;
}

.acerca__badge {
	margin-right: 10px;
}

.acerca__bullets {
	padding-left: 18px;
}

.acerca__bullets li {
	margin-bottom: 10px;
}

.acerca__subheading {
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #6c757d;
	margin-top: 18px;
	margin-bottom: 10px;
}

.acerca__timeline {
	position: relative;
	margin-top: 18px;
	padding-left: 18px;
}

.acerca__timeline:before {
	content: "";
	position: absolute;
	left: 7px;
	top: 0;
	bottom: 0;
	width: 2px;
	background: #eeeeee;
}

.acerca__timeline-item {
	position: relative;
	padding-left: 14px;
	margin-bottom: 18px;
}

.acerca__timeline-item:before {
	content: "";
	position: absolute;
	left: -1px;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: #242424;
}

.acerca__timeline-periodo {
	margin-bottom: 8px;
}

.acerca__timeline-title {
	font-weight: 700;
	line-height: 1.3;
}

.acerca__timeline-subtitle {
	color: #6c757d;
	font-size: 14px;
	margin-top: 2px;
}

.acerca__subbullets {
	margin-top: 10px;
	padding-left: 18px;
	color: #6c757d;
}

.acerca__subbullets li {
	margin-bottom: 6px;
}

/* Masonry gallery (CSS columns) */
.rs-collection {
	columns: 5 70px;
	column-gap: 1em;
}

.rs-collection-items {
	max-width: 100%;
	margin-bottom: 1em;
	break-inside: avoid;
	display: inline-block;
	width: 100%;
}

.rs-collection .portfolio-item {
	padding: 0;
	margin-bottom: 1em;
}

@media (max-width: 1200px) {
	.rs-collection {
		columns: 4 70px;
	}
}

@media (max-width: 992px) {
	.rs-collection {
		columns: 3 70px;
	}
}

@media (max-width: 576px) {
	.rs-collection {
		columns: 2 70px;
	}
}
