/* =========================================================
   MatiasDJ — Design system
   Refactor guide: grafica.zip (MatiasDJ Landing.dc.html)
   ========================================================= */

:root {
	/* surfaces */
	--bg: #0B0710;
	--bg-soft: #100A17;
	--bg-elevated: #150E20;
	--bg-card: #1A1226;
	--surface: rgba(255, 255, 255, .04);
	--surface-hover: rgba(255, 255, 255, .08);
	--border: rgba(255, 255, 255, .10);
	--border-soft: rgba(255, 255, 255, .07);

	/* text */
	--text: #F3EEFA;
	--text-dim: #C3B9D2;
	--text-mute: #A99FB8;
	--text-faint: #7E7490;

	/* brand accents */
	--pink: #FF3D8B;
	--orange: #FF7A1A;
	--purple: #8B45FF;
	--teal: #35E7E0;
	--gold: #E7B84B;

	/* legacy alias — kept so any leftover var(--naranjo) references still work */
	--naranjo: #FF7A1A;

	--grad-main: linear-gradient(135deg, var(--pink), var(--orange));
	--grad-text: linear-gradient(120deg, var(--pink), var(--orange) 55%, var(--gold));
	--grad-cool: linear-gradient(135deg, var(--purple), var(--teal));
	--grad-gold: linear-gradient(135deg, var(--gold), var(--orange));

	--shadow-glow: 0 18px 45px rgba(255, 61, 139, .35);
	--shadow-soft: 0 24px 60px rgba(0, 0, 0, .4);
	--shadow-deep: 0 40px 90px rgba(0, 0, 0, .55);

	--font-display: 'Bricolage Grotesque', 'Montserrat', sans-serif;
	--font-body: 'Manrope', 'Mukta', sans-serif;

	--radius: 20px;
	--radius-sm: 12px;
	--radius-pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	background: var(--bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
	min-height: 100vh;
}

h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -.02em;
}

a { color: var(--pink); }
a:hover { color: var(--orange); }

::selection { background: var(--pink); color: var(--bg); }

.text-naranjo { color: var(--orange) !important; }

/* =========================================================
   Nav
   ========================================================= */
footer { z-index: 1010; }

footer,
.bg-dark {
	background-color: var(--bg-soft) !important;
}

footer {
	border-top: 1px solid var(--border-soft);
}

footer a {
	text-decoration: none;
	color: var(--text-mute);
	font-size: .9rem;
	font-weight: 500;
}

footer a:hover { color: var(--orange); }

#mainNav {
	background: transparent !important;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-bottom: 1px solid transparent;
	transition: padding .3s ease, background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
}

#mainNav.navbar-shrink {
	background: rgba(11, 7, 16, .82) !important;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border-soft);
}

#mainNav .navbar-toggler {
	font-size: 18px;
	border-color: var(--border);
}

#mainNav .navbar-brand { padding: 0; }

#mainNav .navbar-brand.active,
#mainNav .navbar-brand:active,
#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover {
	color: var(--orange);
}

#mainNav .navbar-nav .nav-item .nav-link {
	font-size: .92rem;
	font-weight: 600;
	letter-spacing: .01em;
	padding: 5px 0;
	color: var(--text-dim);
	transition: color .2s ease;
}

#mainNav .navbar-nav .nav-item .active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
	color: var(--orange) !important;
}

#mainNav .navbar-nav .nav-item.ms-2 .nav-link,
#mainNav .navbar-nav .nav-item.ms-2 .btn-outline-light {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px !important;
	border-radius: var(--radius-pill);
	background: var(--grad-main);
	color: #fff !important;
	font-weight: 700;
	border: none;
	box-shadow: 0 10px 28px rgba(255, 61, 139, .35);
}

#mainNav .navbar-nav .nav-item.ms-2 .btn-outline-light:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(255, 61, 139, .5);
}

@media (min-width: 992px) {
	#mainNav .navbar-brand img {
		width: 210px;
		transition: all .3s ease-in-out;
	}
	#mainNav .navbar-nav .nav-item .nav-link {
		padding: 1.9em 1em !important;
	}
	#mainNav.navbar-shrink {
		margin-top: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	#mainNav.navbar-shrink .navbar-brand img {
		width: 170px;
		padding: 0;
	}
	#mainNav.navbar-shrink .nav-item .nav-link {
		padding: 1.4em 1em !important;
	}
}

/* =========================================================
   Typography helpers reused across pages
   ========================================================= */
.titulo-seccion {
	text-transform: uppercase;
	color: var(--text);
	font-size: clamp(2.4rem, 4.6vw, 3.6rem);
	letter-spacing: -.02em;
	margin-bottom: 0;
}

.titulo {
	text-transform: uppercase;
	color: var(--text);
	position: absolute;
	bottom: -2.5rem;
	font-size: clamp(2.2rem, 4vw, 3.5rem);
	letter-spacing: -.02em;
	margin-bottom: 0;
}

.titulo-italic {
	font-style: italic;
	color: var(--text-dim);
	font-size: 24px;
	margin-bottom: 0;
	font-weight: 600;
}

.subtitulo {
	color: var(--text);
	font-size: 1.1rem;
	font-weight: 700;
	font-family: var(--font-display);
}

.texto {
	color: var(--text-mute);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.6;
}

.texto b, .texto strong {
	color: var(--text);
	font-size: 1.05rem;
	font-weight: 700;
}

.texto-small {
	color: var(--text-faint);
	font-size: .8rem;
	font-weight: 500;
}

.texto-underline { border-bottom: 1px dashed var(--border); }

.subtitulo-slide {
	color: var(--orange);
	font-weight: 800;
	font-size: 1.4rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.titulo-slide {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 6vw, 4.5rem);
	line-height: 1.02;
	letter-spacing: -.03em;
	font-weight: 800;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.hero-title {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: clamp(40px, 6.7vw, 90px);
	line-height: .98;
	letter-spacing: -.03em;
	max-width: 15ch;
	color: var(--text);
}

.grad-text {
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.texto-slide {
	margin-right: 20%;
	color: var(--text-dim);
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.55;
}

.texto-blanco {
	color: var(--text-dim);
	font-size: 1.1rem;
	font-weight: 400;
}

.subtitulo-blanco {
	color: var(--text);
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	letter-spacing: -.02em;
}

.titulo-blanco {
	color: var(--text);
	font-size: 42px;
	margin-bottom: 0;
	font-weight: 700;
	font-family: var(--font-display);
}

.titulo-small-blanco {
	color: var(--text-dim);
	font-size: 21px;
	font-style: italic;
	margin-bottom: 0;
	font-weight: 400;
}

/* =========================================================
   Section chrome — banners, dividers, spacing anchors
   ========================================================= */
.cont-titulo {
	margin-top: -2.2rem;
	z-index: 1;
}

.franja {
	margin-top: 95px;
	position: relative;
	height: 6px;
	border-top: none;
	background: var(--grad-main);
}

.header {
	margin-top: 50px;
	position: relative;
	height: 90px;
	background: var(--grad-main);
}

.banner-seccion {
	margin-top: 80px;
	height: 34vh;
	min-height: 280px;
	max-height: 320px;
	position: relative;
}

.banner-seccion::after {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(90% 120% at 15% 0%, rgba(139, 69, 255, .28), transparent 55%),
		radial-gradient(80% 100% at 100% 100%, rgba(255, 61, 139, .26), transparent 55%),
		linear-gradient(180deg, rgba(11, 7, 16, .55), rgba(11, 7, 16, .88));
}

/* =========================================================
   Cards
   ========================================================= */
.card-info {
	border: 1px solid var(--border) !important;
	background: var(--bg-card);
	border-radius: var(--radius);
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card-info .card-footer,
.card-footer {
	padding: 16px 0 0 !important;
	background: transparent !important;
	border-top: 1px dashed var(--border) !important;
}

.card-info.col-12.col-md-4:hover,
.card-info.col-12.col-md-3:hover {
	transform: translateY(-6px);
	border-color: rgba(255, 61, 139, .4) !important;
	box-shadow: var(--shadow-soft);
}

.cont-info-pane {
	background: var(--bg-card) !important;
	border: 1px solid var(--border) !important;
	color: var(--text);
	border-radius: var(--radius-sm);
}

.photo-carousel-wrap {
	position: relative;
}

.photo-carousel {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	border-radius: var(--radius-sm);
}

.photo-carousel::-webkit-scrollbar { display: none; }

.photo-carousel-slide {
	position: relative;
	display: block;
	flex: 0 0 100%;
	scroll-snap-align: center;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-sm);
	border: 1px solid var(--border);
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}

.photo-carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .4s ease;
}

.photo-carousel-slide:hover img { transform: scale(1.06); }

.photo-carousel-slide::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(11, 7, 16, .55));
	opacity: 0;
	transition: opacity .25s ease;
}

.photo-carousel-slide:hover::after { opacity: 1; }

.photo-gallery-zoom {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	background: var(--grad-main);
	color: #fff;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity .25s ease, transform .25s ease;
}

.photo-carousel-slide:hover .photo-gallery-zoom {
	opacity: 1;
	transform: translateY(0);
}

.photo-carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: rgba(18, 12, 26, .7);
	backdrop-filter: blur(6px);
	color: #fff;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, transform .15s ease;
}

.photo-carousel-arrow.left { left: 10px; }
.photo-carousel-arrow.right { right: 10px; }

.photo-carousel-arrow:hover {
	background: var(--grad-main);
	border-color: transparent;
	transform: translateY(-50%) scale(1.06);
}

.photo-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 9px;
	margin-top: 14px;
}

.photo-carousel-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: var(--border);
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}

.photo-carousel-dot.active {
	background: var(--grad-main);
	transform: scale(1.35);
}

.card-news {
	border-radius: var(--radius);
	border: 1px solid var(--border);
	background: linear-gradient(0deg, rgba(11, 7, 16, .82), rgba(11, 7, 16, .5)), url(../img/inicio/news.jpg) no-repeat center;
	background-size: cover;
	overflow: hidden;
}

.ico-cont {
	border-radius: var(--radius-sm);
	padding: 9px 12px;
	height: 40px;
	width: 40px;
	text-align: center;
	background: var(--grad-main);
	box-shadow: 0 10px 26px rgba(255, 61, 139, .35);
}

.ico-cont i {
	font-size: 1.1rem;
	color: #fff;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn-slide {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--grad-main);
	color: #fff;
	padding: 13px 30px;
	border-radius: var(--radius-pill);
	font-weight: 700;
	border: none;
	font-size: 1rem;
	box-shadow: var(--shadow-glow);
	transition: transform .22s ease, box-shadow .22s ease;
}

.btn-slide:hover {
	background: var(--grad-main);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 22px 55px rgba(255, 61, 139, .5);
}

.btn-small {
	background: var(--surface);
	color: var(--text-dim);
	padding: 8px 18px;
	border-radius: var(--radius-pill);
	font-weight: 600;
	border: 1px solid var(--border);
	font-size: .9rem;
	transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-small:hover {
	background: var(--grad-main);
	color: #fff;
	border: 1px solid transparent;
}

.btn-social {
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	font-size: 1.05rem;
	color: var(--text-dim);
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-pill);
	margin-right: .6rem;
	transition: all .2s ease;
}

.btn-social:hover {
	color: #fff;
	background: var(--grad-main);
	border-color: transparent;
}

.sbtn { border-radius: var(--radius-pill) !important; }

/* Generic bootstrap buttons picking up the brand */
.btn-primary,
.btn-success {
	background: var(--grad-main) !important;
	border: none !important;
	box-shadow: var(--shadow-glow);
}

.btn-outline-light {
	color: var(--text) !important;
	border-color: var(--border) !important;
}

.btn-outline-light:hover {
	background: var(--surface-hover) !important;
	border-color: var(--border) !important;
}

/* =========================================================
   Forms
   ========================================================= */
.form-control,
.form-select,
.form-control-sus {
	display: block;
	width: 100%;
	padding: .8rem 1rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.3;
	color: var(--text) !important;
	background: var(--surface) !important;
	border: 1px solid var(--border) !important;
	border-radius: var(--radius-sm) !important;
	transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-control::placeholder { color: var(--text-faint); }

.form-control:focus,
.form-select:focus {
	color: var(--text);
	background: rgba(255, 61, 139, .07) !important;
	border-color: var(--pink) !important;
	outline: 0;
	box-shadow: 0 0 0 .2rem rgba(255, 61, 139, .18) !important;
}

.form-control-sus label,
.form-floating > label {
	color: var(--text-mute) !important;
	font-weight: 500;
}

.form-check-input { background-color: var(--surface); border-color: var(--border); }
.form-check-input:checked { background-color: var(--pink); border-color: var(--pink); }
.form-check-label { color: var(--text-dim); }

.form-range { accent-color: var(--pink); }
.form-range::-webkit-slider-runnable-track { background: var(--surface); border-radius: var(--radius-pill); }
.form-range::-moz-range-track { background: var(--surface); border-radius: var(--radius-pill); }

.service-toggle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid var(--border);
	background: var(--surface);
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
	margin: 0;
}

.service-toggle:has(input:checked) {
	border-color: rgba(255, 61, 139, .5);
	background: rgba(255, 61, 139, .12);
}

.service-toggle-text { display: flex; flex-direction: column; gap: 2px; }
.service-toggle-label { font-weight: 700; font-size: 14.5px; color: var(--text); }
.service-toggle-price { font-size: 12px; color: var(--text-mute); }

.service-toggle-check {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	background: var(--surface-hover);
	color: transparent;
	transition: background .2s ease, color .2s ease;
}

.service-toggle:has(input:checked) .service-toggle-check {
	background: var(--grad-main);
	color: #fff;
}

/* =========================================================
   Carousel / hero slide
   ========================================================= */
.video {
	object-fit: cover !important;
	filter: saturate(1.1) contrast(1.05) !important;
	opacity: .55;
	transform: scale(1.08);
	will-change: transform;
}

.carousel {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, var(--bg), 55%, rgba(11, 7, 16, 0));
}

.carousel-item {
	height: 100vh;
	background: no-repeat center center scroll;
	background-size: cover;
}

.carousel-caption {
	bottom: inherit;
	padding: 0;
	position: absolute;
	right: 7%;
	left: 7%;
	top: 70%;
	transform: translateY(-80%);
}

.carousel-indicators {
	flex-direction: column;
	align-items: flex-end;
	right: 0;
	bottom: 80px;
	left: inherit;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: 7%;
	margin-bottom: 1rem;
	margin-left: 7%;
	list-style: none;
}

.carousel-indicators .active { opacity: 1; }

.carousel-indicators [data-bs-target] {
	box-sizing: content-box;
	flex: 0 1 auto;
	width: 44px;
	height: 3px;
	padding: 0;
	margin-right: 3px;
	margin-left: 3px;
	text-indent: -999px;
	cursor: pointer;
	background: var(--grad-main);
	background-clip: padding-box;
	border: 0;
	border-radius: var(--radius-pill);
	opacity: .4;
	transition: opacity .4s ease;
}

@media (max-width: 1024px) {
	.carousel-caption {
		bottom: inherit;
		padding: 0;
		position: absolute;
		right: 7%;
		left: 7%;
		top: 70%;
		transform: translateY(-70%);
	}
}

/* =========================================================
   New components introduced by the redesign (hero, marquee,
   services grid, booking card, tags…) — used on inicio.blade.php
   and the reservation modal.
   ========================================================= */

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(255, 61, 139, .4);
	background: rgba(255, 61, 139, .1);
	backdrop-filter: blur(6px);
	font-weight: 700;
	font-size: 12.5px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #FF9EC4;
}

.hero-badge .eq { display: flex; gap: 3px; align-items: flex-end; height: 14px; }
.hero-badge .eq i {
	display: block;
	width: 3px;
	border-radius: 2px;
	background: var(--pink);
	animation: equalize 1s ease-in-out infinite;
}
.hero-badge .eq i:nth-child(1) { height: 60%; }
.hero-badge .eq i:nth-child(2) { height: 100%; background: var(--orange); animation-delay: .2s; }
.hero-badge .eq i:nth-child(3) { height: 45%; background: var(--gold); animation-delay: .4s; }

.hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 3rem; margin-bottom: 4rem; }
.hero-stats .num {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 2.1rem;
	background: var(--grad-text);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}
.hero-stats .lbl { font-size: 13px; color: var(--text-mute); font-weight: 600; }

.eyebrow {
	font-weight: 800;
	font-size: 12.5px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--pink);
	margin-bottom: 16px;
	display: block;
}

.tag-pill {
	display: inline-flex;
	padding: 9px 15px;
	border-radius: var(--radius-pill);
	border: 1px solid var(--border);
	background: var(--surface);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--text-dim);
	margin: 0 8px 8px 0;
}

.marquee-strip {
	position: relative;
	overflow: hidden;
	border-top: 1px solid var(--border-soft);
	border-bottom: 1px solid var(--border-soft);
	background: var(--bg-soft);
	padding: 18px 0;
	line-height: 1;
}

.marquee-strip .marquee-track {
	display: flex;
	align-items: center;
	white-space: nowrap;
	width: max-content;
	animation: marquee 24s linear infinite;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: .02em;
	color: var(--text-faint);
}

.marquee-strip .marquee-track span.sep { color: var(--pink); padding: 0 14px; }

.services-marquee-wrap {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.services-marquee {
	overflow-x: auto;
	overflow-y: hidden;
	width: 100%;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.services-marquee::-webkit-scrollbar { display: none; }

.services-marquee-track {
	display: flex;
	gap: 24px;
	width: max-content;
}

.services-marquee-item {
	flex: 0 0 300px;
}

@media (min-width: 992px) {
	.services-marquee-item { flex-basis: 360px; }
}

.services-marquee-arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--surface);
	color: var(--text);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .15s ease;
}

.services-marquee-arrow:hover {
	background: var(--grad-main);
	border-color: transparent;
	transform: scale(1.06);
}

@media (max-width: 575.98px) {
	.services-marquee-arrow { width: 36px; height: 36px; font-size: 18px; }
}

.photo-tag {
	position: absolute;
	bottom: -22px;
	left: -22px;
	padding: 16px 22px;
	border-radius: 18px;
	background: rgba(16, 10, 23, .88);
	backdrop-filter: blur(12px);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-soft);
}

.photo-tag .top { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--orange); }
.photo-tag .bottom { font-size: 12px; color: var(--text-mute); font-weight: 600; }

.photo-frame {
	position: relative;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: var(--shadow-deep);
}

.photo-frame::before {
	content: '';
	position: absolute;
	inset: -18px;
	z-index: -1;
	border-radius: 28px;
	background: linear-gradient(135deg, var(--pink), var(--purple));
	filter: blur(30px);
	opacity: .4;
}

.service-card {
	position: relative;
	display: block;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--bg-card);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-soft);
	text-decoration: none;
	transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover { transform: translateY(-6px); border-color: rgba(255, 61, 139, .4); }

.service-card .thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	background: #1a1226 center/cover;
}

.service-card .thumb::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(21, 14, 32, .95));
}

.service-card .icon {
	position: absolute;
	top: 16px;
	left: 16px;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	background: var(--grad-main);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
	z-index: 1;
}

.service-card .icon.icon-1 { background: var(--grad-main); }
.service-card .icon.icon-2 { background: var(--grad-cool); }
.service-card .icon.icon-3 { background: var(--grad-gold); }

.service-card .body { padding: 24px; }
.service-card .more { display: inline-flex; gap: 7px; font-weight: 700; font-size: 14px; color: var(--orange); }

.booking-card {
	position: relative;
	border-radius: 26px;
	padding: 34px;
	background: linear-gradient(180deg, rgba(28, 19, 40, .92), rgba(18, 12, 26, .92));
	border: 1px solid var(--border);
	backdrop-filter: blur(14px);
	box-shadow: var(--shadow-deep);
}

.booking-card .total {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 34px;
	background: var(--grad-main);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
}

.check-item {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dim);
}

.check-item .tick {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 7px;
	background: rgba(255, 122, 26, .16);
	color: var(--orange);
	font-size: 13px;
}

.contact-tile {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 20px 22px;
	border-radius: 16px;
	background: var(--surface);
	border: 1px solid var(--border);
	text-decoration: none;
}

.contact-tile .lbl { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mute); }
.contact-tile .val { font-size: 17px; font-weight: 700; color: var(--text); }
.contact-tile.accent { background: linear-gradient(135deg, rgba(255, 61, 139, .16), rgba(255, 122, 26, .12)); border-color: rgba(255, 61, 139, .3); }
.contact-tile.accent .lbl { color: #FF9EC4; }

/* =========================================================
   Bootstrap component overrides (modal, alerts, pagination)
   ========================================================= */
.modal-content {
	background: var(--bg-elevated);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	color: var(--text);
}

.modal-header,
.modal-footer {
	border-color: var(--border-soft);
}

.modal-title { font-family: var(--font-display); }

.btn-close { filter: invert(1) grayscale(1) opacity(.8); }

.btn-secondary {
	background: var(--surface);
	border: 1px solid var(--border);
	color: var(--text-dim);
}

.btn-secondary:hover { background: var(--surface-hover); color: var(--text); }

.alert-info {
	background: rgba(53, 231, 224, .12);
	border: 1px solid rgba(53, 231, 224, .3);
	color: var(--teal);
}

.alert-warning {
	background: rgba(231, 184, 75, .14);
	border: 1px solid rgba(231, 184, 75, .35);
	color: var(--gold);
}

.alert-danger {
	background: rgba(255, 61, 139, .12);
	border: 1px solid rgba(255, 61, 139, .35);
	color: #FF9EC4;
}

.breadcrumb-item, .breadcrumb-item a { color: var(--text-mute); font-size: 13.5px; }
.breadcrumb-item a:hover { color: var(--orange); }
.breadcrumb-item.active { color: var(--text-dim); }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-faint); }

.article-body h2, .article-body h3, .article-body h4 {
	font-family: var(--font-display);
	color: var(--text);
	margin-top: 1.6em;
	margin-bottom: .6em;
}

.article-body p { margin-bottom: 1.1em; }
.article-body a { text-decoration: underline; }
.article-body ul, .article-body ol { margin-bottom: 1.1em; padding-left: 1.3em; }

.news-sidebar-card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 20px;
}

.news-sidebar-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 0;
	border-bottom: 1px dashed var(--border);
	text-decoration: none;
	transition: opacity .2s ease;
}

.news-sidebar-item:last-of-type { border-bottom: none; }
.news-sidebar-item:hover { opacity: .8; }

.news-sidebar-item img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: var(--radius-sm);
	flex-shrink: 0;
}

.news-sidebar-item span {
	font-size: 13.5px;
	line-height: 1.35;
	font-weight: 600;
	color: var(--text-dim);
}

.news-sidebar-item.active span { color: var(--orange); }

.accordion-item {
	background: var(--bg-card);
	border: 1px solid var(--border);
	margin-bottom: 12px;
	border-radius: var(--radius-sm) !important;
	overflow: hidden;
}

.accordion-button {
	background: transparent;
	color: var(--text);
	font-weight: 700;
	font-family: var(--font-display);
	box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
	background: rgba(255, 61, 139, .08);
	color: var(--text);
}

.accordion-button::after {
	filter: invert(1) grayscale(1) opacity(.8);
}

.accordion-body {
	color: var(--text-dim);
	background: transparent;
}

.page-link {
	background: var(--surface);
	border-color: var(--border);
	color: var(--text-dim);
}

.page-link:hover { background: var(--surface-hover); color: var(--text); }

.page-item.active .page-link {
	background: var(--grad-main);
	border-color: transparent;
	color: #fff;
}

.table {
	color: var(--text);
	border-color: var(--border);
}

.table > :not(caption) > * > * {
	background: transparent;
	color: var(--text-dim);
	border-bottom-color: var(--border);
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
	background: rgba(255, 255, 255, .03);
}

/* =========================================================
   Misc
   ========================================================= */
.precio-oferta { font-size: 14px; text-decoration: line-through; color: var(--text-faint); }

.productos .card img { width: 100%; height: 250px; object-fit: cover; }

.linea-amarilla { width: 60px; height: 3px; border-radius: var(--radius-pill); background: var(--grad-main); }

.whatsapp {
	position: fixed;
	z-index: 9999 !important;
	border-radius: 50%;
	width: 52px;
	height: 52px;
	bottom: 20px;
	color: #fff !important;
	right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #25D366, #128C7E);
	box-shadow: 0 14px 34px rgba(37, 211, 102, .45);
	animation: 1.6s infinite alternate shimmy;
}

.whatsapp i { font-size: 1.5rem; color: #fff; }

.grayscale { filter: grayscale(100%); }

/* =========================================================
   Keyframes
   ========================================================= */
@keyframes shimmy {
	0% { transform: translate(0, 0); }
	100% { transform: translate(0, -6px); }
}

@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-22px); }
}

@keyframes marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes equalize {
	0%, 100% { height: 22%; }
	50% { height: 100%; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 991px) {
	footer { margin-top: 0 !important; z-index: 1010; }
	.franja { margin-top: 40px; }
	.cont-titulo { margin-top: -1rem; z-index: 1; }
	.header { margin-top: -50px !important; }
	#mainNav .navbar-brand img { width: 180px; }
	.titulo-seccion { line-height: 2.2rem; font-size: 2.2rem; }
	.titulo { bottom: -1.2rem; line-height: 2.2rem; font-size: 2.2rem; margin-bottom: 0; }
	.texto-slide { margin-right: 0; }
	.hero-stats { gap: 24px; }
}

@media (max-width: 767px) {
	#mainNav .navbar-brand img { width: 170px; }
	.titulo-slide { font-size: 30px; line-height: 34px; }
}
