.pic-carousel {
	/* Paleta ajustada a marceloarkan.com: negro cálido + dorado/bronce. */
	--pic-height: clamp(360px, 60vw, 620px);
	--pic-bg-card: #1a1510;
	--pic-text: #f3ebdd;
	--pic-text-dim: rgba(243, 235, 221, .62);
	--pic-accent: #b08d57;
	--pic-accent-soft: rgba(176, 141, 87, .35);
	--pic-overlay: #060504;
	--pic-font-heading: "Cinzel", Georgia, "Times New Roman", serif;
	--pic-font-caption: "Cormorant Garamond", Georgia, serif;
	--pic-font-label: "Jost", "Helvetica Neue", Arial, sans-serif;

	position: relative;
	padding: 0 44px;
	margin: 32px 0;
	box-sizing: border-box;
	font-family: var(--pic-font-label);
}
.pic-carousel *,
.pic-carousel *::before,
.pic-carousel *::after {
	box-sizing: border-box;
}

/* Encabezado opcional (eyebrow + título) */
.pic-header {
	text-align: center;
	margin: 0 0 26px;
}
.pic-eyebrow {
	font-family: var(--pic-font-label);
	font-weight: 300;
	font-size: 11px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--pic-accent);
	margin-bottom: 8px;
}
.pic-title {
	font-family: var(--pic-font-heading);
	font-weight: 400;
	font-size: clamp(22px, 3vw, 32px);
	letter-spacing: .04em;
	color: var(--pic-text);
}
.pic-header-rule {
	width: 40px;
	height: 1px;
	background: var(--pic-accent);
	opacity: .6;
	margin: 14px auto 0;
}

.pic-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	padding: 8px 4px 22px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.pic-track::-webkit-scrollbar {
	display: none;
}

.pic-slide {
	flex: 0 0 auto;
	scroll-snap-align: center;
	width: calc(var(--pic-height) * 9 / 16);
	height: var(--pic-height);
	max-width: 80vw;
}

.pic-slide-inner {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	background: var(--pic-bg-card);
	border: 1px solid var(--pic-accent-soft);
	box-shadow: 0 18px 40px rgba(0, 0, 0, .55);
	transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, border-color .4s ease;
}
.pic-slide-inner:hover {
	transform: translateY(-4px) scale(1.012);
	border-color: var(--pic-accent);
	box-shadow: 0 0 0 1px var(--pic-accent-soft), 0 24px 50px rgba(0, 0, 0, .65);
}

.pic-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
	cursor: zoom-in;
	filter: saturate(.96);
}
.pic-slide-inner:hover .pic-img {
	transform: scale(1.035);
}

.pic-gradient {
	position: absolute;
	inset: auto 0 0 0;
	height: 48%;
	background: linear-gradient(180deg, rgba(6, 5, 4, 0) 0%, rgba(6, 5, 4, .82) 100%);
	pointer-events: none;
}

.pic-caption {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 16px;
	pointer-events: none;
}
.pic-caption::before {
	content: "";
	display: block;
	width: 22px;
	height: 1px;
	background: var(--pic-accent);
	margin-bottom: 8px;
	opacity: .85;
}
.pic-caption span {
	display: block;
	font-family: var(--pic-font-caption);
	font-style: italic;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.35;
	color: var(--pic-text);
	text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

.pic-slide-link {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: block;
}

.pic-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(11, 11, 11, .55);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border: 1px solid rgba(243, 235, 221, .28);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--pic-text);
	transition: all .25s ease;
	z-index: 2;
	padding: 0;
}
.pic-nav:hover {
	border-color: var(--pic-accent);
	color: var(--pic-accent);
	background: rgba(11, 11, 11, .78);
}
.pic-prev {
	left: 0;
}
.pic-next {
	right: 0;
}

.pic-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	margin-top: 2px;
}
.pic-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--pic-accent-soft);
	transition: all .3s ease;
	cursor: pointer;
}
.pic-dot.is-active {
	width: 24px;
	border-radius: 3px;
	background: var(--pic-accent);
}

@media (max-width: 600px) {
	.pic-carousel {
		padding: 0 8px;
	}
	.pic-nav {
		width: 36px;
		height: 36px;
	}
}

/* Lightbox */
.pic-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(6, 5, 4, .94);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s ease;
	z-index: 99999;
	font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
}
.pic-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}
.pic-lb-img {
	max-width: 90vw;
	max-height: 88vh;
	border-radius: 10px;
	border: 1px solid rgba(176, 141, 87, .35);
	box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}
.pic-lb-close {
	position: absolute;
	top: 18px;
	right: 24px;
	font-size: 34px;
	color: #f3ebdd;
	background: none;
	border: none;
	cursor: pointer;
	line-height: 1;
}
.pic-lb-prev,
.pic-lb-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(243, 235, 221, .06);
	border: 1px solid rgba(243, 235, 221, .22);
	color: #f3ebdd;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 28px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s ease;
}
.pic-lb-prev:hover,
.pic-lb-next:hover,
.pic-lb-close:hover {
	border-color: #b08d57;
	color: #b08d57;
}
.pic-lb-prev {
	left: 20px;
}
.pic-lb-next {
	right: 20px;
}
@media (max-width: 600px) {
	.pic-lb-prev,
	.pic-lb-next {
		width: 38px;
		height: 38px;
		font-size: 22px;
	}
}
