/* ==========================================================================
   Break&Joy — sistema de diseño global del tema
   Port del design system Tailwind del proyecto Next.js (app/globals.css).
   ========================================================================== */

/* ---------- Fuentes autoalojadas ---------- */
@font-face {
	font-family: 'Inter';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('../fonts/inter-variable.woff2') format('woff2');
}
@font-face {
	font-family: 'Anton';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/anton-400.woff2') format('woff2');
}
@font-face {
	font-family: 'Permanent Marker';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../fonts/permanent-marker-400.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
	--bj-black: #0a0a0a;
	--bj-charcoal: #1a1a1a;
	--bj-white: #ffffff;
	--bj-yellow: #FFD60A;
	--bj-magenta: #FF2E63;
	--bj-cyan: #08D9D6;
	--bj-orange: #FF6B35;
	--bj-gray-soft: #9a9a9a;
	--bj-cream: #FAF7F0;
	--bj-border: #2a2a2a;
	--bj-whatsapp: #25D366;

	--font-sans: 'Inter', system-ui, -apple-system, sans-serif;
	--font-display: 'Anton', Impact, sans-serif;
	--font-accent: 'Permanent Marker', cursive;

	--radius: 1rem;
	--radius-sm: 0.75rem;
	--radius-lg: 1.25rem;
	--header-h: 5rem;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after {
	box-sizing: border-box;
	border-color: var(--bj-border);
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-h);
	-webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
	margin: 0;
	background: var(--bj-black);
	color: var(--bj-white);
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { margin: 0 0 0.5em; line-height: 1.1; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

h1, h2, h3, .font-display {
	font-family: var(--font-display);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.font-accent { font-family: var(--font-accent); text-transform: none; }

::selection { background: var(--bj-yellow); color: var(--bj-black); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bj-charcoal); }
::-webkit-scrollbar-thumb { background: var(--bj-yellow); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--bj-orange); }

:focus-visible { outline: 2px solid var(--bj-yellow); outline-offset: 2px; }

.bj-skip-link {
	position: absolute;
	left: -9999px;
	z-index: 100;
	background: var(--bj-yellow);
	color: var(--bj-black);
	padding: 0.5rem 1rem;
	border-radius: 0.25rem;
	font-weight: 700;
	text-decoration: none;
}
.bj-skip-link:focus { left: 1rem; top: 1rem; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	word-wrap: normal !important;
}

/* ---------- Layout ---------- */
.bj-container {
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1rem;
}
.bj-section { padding-block: 4rem; }
.bj-section--charcoal { background: var(--bj-charcoal); }
.bj-section--tight { padding-block: 2.5rem; }
@media (min-width: 768px) {
	.bj-section { padding-block: 6rem; }
	.bj-section--tight { padding-block: 3.5rem; }
}

.bj-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) {
	.bj-grid--2, .bj-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
	.bj-grid--3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
	.bj-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Cabecera de sección ---------- */
.bj-section-head { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
.bj-section-head--left { text-align: left; margin-inline: 0; }
.bj-section-head__eyebrow {
	font-family: var(--font-accent);
	color: var(--bj-magenta);
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}
.bj-section-head__title {
	font-size: clamp(2rem, 5vw, 3.25rem);
	margin-bottom: 0.75rem;
}
.bj-section-head__subtitle { color: var(--bj-gray-soft); font-size: 1.125rem; margin: 0; }

/* ---------- Botones ---------- */
.bj-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 0.75rem;
	border: 2px solid transparent;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	text-align: center;
}
.bj-btn:hover { transform: scale(1.04); }
.bj-btn--yellow { background: var(--bj-yellow); color: var(--bj-black); }
.bj-btn--yellow:hover { background: #ffe04d; }
.bj-btn--magenta { background: var(--bj-magenta); color: var(--bj-white); }
.bj-btn--cyan { background: var(--bj-cyan); color: var(--bj-black); }
.bj-btn--outline { background: transparent; color: var(--bj-white); border-color: rgba(255, 255, 255, 0.3); }
.bj-btn--outline:hover { border-color: var(--bj-yellow); color: var(--bj-yellow); }
.bj-btn--ghost { background: transparent; color: var(--bj-gray-soft); }
.bj-btn--ghost:hover { color: var(--bj-white); }
.bj-btn--whatsapp { background: var(--bj-whatsapp); color: var(--bj-white); }
.bj-btn--whatsapp:hover { background: #1ebd5b; }
.bj-btn--lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.bj-btn--block { display: flex; width: 100%; }

/* ---------- Badges y chips ---------- */
.bj-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 0.15rem 0.6rem;
	border-radius: 999px;
}
.bj-badge--yellow { background: rgba(255, 214, 10, 0.2); color: var(--bj-yellow); }
.bj-badge--magenta { background: rgba(255, 46, 99, 0.2); color: var(--bj-magenta); }
.bj-badge--cyan { background: rgba(8, 217, 214, 0.2); color: var(--bj-cyan); }
.bj-badge--outline { border: 1px solid rgba(255, 255, 255, 0.25); color: var(--bj-white); }

.bj-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid;
	transition: background 0.2s ease;
}
.bj-chip--active { background: rgba(255, 214, 10, 0.1); border-color: rgba(255, 214, 10, 0.4); color: var(--bj-yellow); }
.bj-chip--active:hover { background: rgba(255, 214, 10, 0.2); }
.bj-chip--featured { background: rgba(255, 46, 99, 0.15); border-color: rgba(255, 46, 99, 0.5); color: var(--bj-white); }
.bj-chip--featured:hover { background: rgba(255, 46, 99, 0.25); }
.bj-chip--soon { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.85); }
.bj-chip--soon:hover { background: rgba(255, 255, 255, 0.1); color: var(--bj-white); }
.bj-chip__badge { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--bj-magenta); }
.bj-chip__count { font-size: 0.65rem; color: rgba(255, 214, 10, 0.9); }

/* ---------- Tarjetas ---------- */
.bj-card {
	background: var(--bj-charcoal);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.bj-card--hover { transition: transform 0.3s ease, border-color 0.3s ease; }
.bj-card--hover:hover {
	transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) scale(1.02);
	border-color: rgba(255, 214, 10, 0.4);
}
.bj-card__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.bj-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bj-card--hover:hover .bj-card__media img { transform: scale(1.06); }
.bj-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.bj-card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.bj-card__text { color: var(--bj-gray-soft); font-size: 0.95rem; flex: 1; }
.bj-card__footer { margin-top: 1.25rem; }

/* ---------- Hero ---------- */
.bj-hero {
	position: relative;
	min-height: 70vh;
	display: flex;
	align-items: center;
	padding-top: var(--header-h);
	overflow: hidden;
}
.bj-hero--full { min-height: 100svh; }
.bj-hero--short { min-height: 45vh; }
.bj-hero__bg { position: absolute; inset: 0; z-index: 0; }
.bj-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.bj-hero__bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.4) 100%);
}
.bj-hero__inner { position: relative; z-index: 1; padding-block: 4rem; }
.bj-hero__eyebrow { font-family: var(--font-accent); color: var(--bj-yellow); font-size: 1.25rem; margin-bottom: 1rem; }
.bj-hero__title { font-size: clamp(2.5rem, 8vw, 5.5rem); margin-bottom: 1rem; }
.bj-hero__subtitle { color: rgba(255, 255, 255, 0.85); font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 38rem; margin-bottom: 2rem; }
.bj-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---------- FAQ (details/summary) ---------- */
.bj-faq { max-width: 48rem; margin-inline: auto; }
.bj-faq__item {
	background: var(--bj-charcoal);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	margin-bottom: 0.75rem;
	overflow: hidden;
}
.bj-faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.35rem;
	font-weight: 600;
	list-style: none;
	cursor: pointer;
	transition: color 0.2s ease;
}
.bj-faq__q::-webkit-details-marker { display: none; }
.bj-faq__q:hover { color: var(--bj-yellow); }
.bj-faq__icon { flex-shrink: 0; width: 1rem; height: 1rem; position: relative; }
.bj-faq__icon::before, .bj-faq__icon::after {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--bj-yellow);
	transition: transform 0.25s ease;
}
.bj-faq__icon::before { width: 100%; height: 2px; }
.bj-faq__icon::after { width: 2px; height: 100%; }
.bj-faq__item[open] .bj-faq__icon::after { transform: rotate(90deg); }
.bj-faq__a { padding: 0 1.35rem 1.25rem; color: var(--bj-gray-soft); }
.bj-faq__a p:last-child { margin-bottom: 0; }

/* ---------- Banda CTA ---------- */
.bj-cta-band { padding-block: 4.5rem; text-align: center; }
.bj-cta-band--yellow { background: var(--bj-yellow); color: var(--bj-black); }
.bj-cta-band--magenta { background: var(--bj-magenta); color: var(--bj-white); }
.bj-cta-band--dark { background: var(--bj-charcoal); color: var(--bj-white); }
.bj-cta-band__title { font-size: clamp(1.8rem, 4.5vw, 3rem); margin-bottom: 0.75rem; }
.bj-cta-band__subtitle { font-size: 1.15rem; opacity: 0.85; max-width: 40rem; margin: 0 auto 1.75rem; }
.bj-cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.bj-cta-band--yellow .bj-btn--outline { color: var(--bj-black); border-color: rgba(10, 10, 10, 0.4); }
.bj-cta-band--yellow .bj-btn--outline:hover { border-color: var(--bj-black); color: var(--bj-black); }

/* ---------- Formularios ---------- */
.bj-form { display: flex; flex-direction: column; gap: 1.1rem; }
.bj-form__row { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .bj-form__row { grid-template-columns: 1fr 1fr; } }
.bj-form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.bj-form__field label { font-size: 0.85rem; font-weight: 600; color: rgba(255, 255, 255, 0.9); }
.bj-input, .bj-select, .bj-textarea {
	width: 100%;
	background: var(--bj-charcoal);
	border: 1px solid var(--bj-border);
	border-radius: 0.6rem;
	color: var(--bj-white);
	padding: 0.7rem 0.9rem;
	font: inherit;
	transition: border-color 0.2s ease;
}
.bj-input:focus, .bj-select:focus, .bj-textarea:focus { outline: none; border-color: var(--bj-yellow); }
.bj-input::placeholder, .bj-textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.bj-textarea { min-height: 7rem; resize: vertical; }
.bj-check { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.85rem; color: var(--bj-gray-soft); }
.bj-check input { margin-top: 0.2rem; accent-color: var(--bj-yellow); }
.bj-check a { color: var(--bj-yellow); }
.bj-hp { position: absolute !important; left: -9999px !important; opacity: 0; pointer-events: none; }

.bj-notice { padding: 0.9rem 1.2rem; border-radius: 0.6rem; font-weight: 600; margin-bottom: 1.25rem; }
.bj-notice--success { background: rgba(8, 217, 214, 0.12); border: 1px solid rgba(8, 217, 214, 0.5); color: var(--bj-cyan); }
.bj-notice--error { background: rgba(255, 46, 99, 0.12); border: 1px solid rgba(255, 46, 99, 0.5); color: var(--bj-magenta); }

/* ---------- Breadcrumbs ---------- */
.bj-breadcrumbs { font-size: 0.8rem; color: var(--bj-gray-soft); }
.bj-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.bj-breadcrumbs li + li::before { content: '›'; margin-right: 0.4rem; opacity: 0.5; }
.bj-breadcrumbs a { color: var(--bj-gray-soft); text-decoration: none; }
.bj-breadcrumbs a:hover { color: var(--bj-yellow); }
.bj-breadcrumbs [aria-current] { color: rgba(255, 255, 255, 0.85); }

/* ---------- Prose (legal, blog) ---------- */
.bj-prose { max-width: 46rem; margin-inline: auto; font-size: 1.05rem; }
.bj-prose h2 { font-size: 1.9rem; margin: 2.5rem 0 1rem; }
.bj-prose h3 { font-size: 1.4rem; margin: 2rem 0 0.75rem; }
.bj-prose p, .bj-prose li { color: rgba(255, 255, 255, 0.85); line-height: 1.75; }
.bj-prose a { color: var(--bj-yellow); }
.bj-prose strong { color: var(--bj-white); }
.bj-prose blockquote {
	border-left: 4px solid var(--bj-yellow);
	margin: 1.5rem 0;
	padding: 0.5rem 0 0.5rem 1.25rem;
	color: rgba(255, 255, 255, 0.75);
	font-style: italic;
}
.bj-prose table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.95rem; }
.bj-prose th, .bj-prose td { border: 1px solid var(--bj-border); padding: 0.6rem 0.8rem; text-align: left; }
.bj-prose th { background: var(--bj-charcoal); font-weight: 700; }
.bj-prose img { border-radius: var(--radius); margin: 1.5rem 0; }
.bj-prose hr { border: 0; border-top: 1px solid var(--bj-border); margin: 2.5rem 0; }
.bj-prose > p:first-of-type { font-size: 1.25rem; line-height: 1.7; color: rgba(255, 255, 255, 0.92); }

/* ---------- Stats ---------- */
.bj-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; text-align: center; }
@media (min-width: 768px) { .bj-stats { grid-template-columns: repeat(4, 1fr); } }
.bj-stat__number { font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 3.5rem); color: var(--bj-yellow); line-height: 1; }
.bj-stat__label { color: var(--bj-gray-soft); font-size: 0.9rem; margin-top: 0.5rem; }

/* ---------- Carrusel (scroll-snap) ---------- */
.bj-carousel { position: relative; }
.bj-carousel__track {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.5rem;
}
.bj-carousel__track::-webkit-scrollbar { display: none; }
.bj-carousel__track > * { flex: 0 0 min(100%, 24rem); scroll-snap-align: start; }
.bj-carousel__nav { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; }
.bj-carousel__btn {
	width: 2.75rem; height: 2.75rem;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: var(--bj-charcoal);
	color: var(--bj-white);
	transition: background 0.2s ease, color 0.2s ease;
}
.bj-carousel__btn:hover { background: var(--bj-yellow); color: var(--bj-black); }

/* ---------- Efectos del original ---------- */
.gradient-text {
	background: linear-gradient(135deg, var(--bj-yellow), var(--bj-orange));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.strike-through { position: relative; display: inline-block; }
.strike-through::after {
	content: '';
	position: absolute;
	left: -5%; top: 50%;
	width: 110%; height: 4px;
	background: var(--bj-magenta);
	transform: rotate(-2deg);
}
.underline-accent { position: relative; display: inline-block; }
.underline-accent::after {
	content: '';
	position: absolute;
	left: 0; bottom: -4px;
	width: 100%; height: 6px;
	background: var(--bj-yellow);
	transform: rotate(-1deg);
}
.torn-edge-top { clip-path: polygon(0 5%, 5% 0, 12% 4%, 20% 1%, 30% 5%, 38% 2%, 48% 4%, 55% 0, 62% 3%, 72% 1%, 80% 5%, 88% 2%, 95% 4%, 100% 0, 100% 100%, 0 100%); }
.torn-edge-bottom { clip-path: polygon(0 0, 100% 0, 100% 95%, 95% 100%, 88% 96%, 80% 99%, 72% 95%, 62% 98%, 55% 100%, 48% 96%, 38% 99%, 30% 95%, 20% 98%, 12% 96%, 5% 100%, 0 95%); }

@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-2px) rotate(-1deg); }
	75% { transform: translateX(2px) rotate(1deg); }
}
@keyframes splatter-in {
	0% { transform: scale(0) rotate(-10deg); opacity: 0; }
	50% { transform: scale(1.1) rotate(5deg); opacity: 1; }
	100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
.animate-shake { animation: shake 0.3s ease-in-out; }
.animate-splatter { animation: splatter-in 0.5s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

.crack-hover { position: relative; overflow: hidden; }
.crack-hover::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L45 30 L20 25 L35 50 L10 55 L40 70 L25 100 M50 0 L55 25 L80 20 L65 45 L90 50 L60 65 L75 100' stroke='white' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3C/svg%3E") center/cover;
	opacity: 0;
	transition: opacity 0.3s;
}
.crack-hover:hover::before { opacity: 1; }
.tilt-card { transform-style: preserve-3d; transition: transform 0.3s ease; }
.tilt-card:hover { transform: perspective(1000px) rotateX(2deg) rotateY(-3deg) scale(1.02); }

/* ---------- Barra de anuncios ---------- */
.bj-announcement { background: var(--bj-yellow); color: var(--bj-black); font-size: 0.85rem; font-weight: 600; }
.bj-announcement .bj-container { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding-block: 0.45rem; }
.bj-announcement__cta { font-weight: 800; color: var(--bj-black); text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: transparent;
	transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled, .site-header.is-open {
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(6px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.site-header__logo-img { height: 2.5rem; width: auto; }
@media (min-width: 768px) { .site-header__logo-img { height: 2.75rem; } }

.site-nav { display: none; }
@media (min-width: 1024px) { .site-nav { display: flex; align-items: center; gap: 0.25rem; } }
.site-nav__item { position: relative; }
.site-nav__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	text-decoration: none;
	position: relative;
	transition: color 0.2s ease;
}
.site-nav__link::after {
	content: '';
	position: absolute;
	bottom: 0; left: 50%;
	transform: translateX(-50%);
	width: 0; height: 2px;
	background: var(--bj-yellow);
	transition: width 0.25s ease;
}
.site-nav__link:hover { color: var(--bj-yellow); }
.site-nav__link:hover::after { width: 75%; }
.site-nav__caret { font-size: 0.7em; opacity: 0.7; }

.site-nav__dropdown {
	position: absolute;
	top: 100%; left: 0;
	width: 20rem;
	background: var(--bj-charcoal);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	padding: 0.75rem;
	max-height: 28rem;
	overflow-y: auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.site-nav__item.has-dropdown:hover .site-nav__dropdown,
.site-nav__item.has-dropdown:focus-within .site-nav__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.site-nav__featured, .mobile-menu__featured {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.75rem;
	margin-bottom: 0.75rem;
	border-radius: 0.6rem;
	background: rgba(255, 46, 99, 0.1);
	border: 1px solid rgba(255, 46, 99, 0.4);
	text-decoration: none;
	transition: background 0.2s ease;
}
.site-nav__featured:hover, .mobile-menu__featured:hover { background: rgba(255, 46, 99, 0.2); }
.site-nav__featured-eyebrow { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bj-magenta); font-weight: 700; }
.site-nav__featured-city { display: block; color: var(--bj-white); font-weight: 600; margin-top: 0.15rem; }
.site-nav__featured-cta { font-size: 0.75rem; color: var(--bj-magenta); white-space: nowrap; }
.site-nav__group-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bj-gray-soft); margin: 0 0 0.5rem; padding-inline: 0.25rem; }
.site-nav__chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.75rem; }

.site-header__actions { display: flex; align-items: center; gap: 0.75rem; }
.site-header__cta { display: none; }
@media (min-width: 1024px) { .site-header__cta { display: inline-flex; } }

.site-header__burger {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 2.5rem; height: 2.5rem;
	padding: 0.5rem;
	background: none;
	border: 0;
}
.site-header__burger span { display: block; height: 2px; background: var(--bj-white); transition: transform 0.25s ease, opacity 0.25s ease; }
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .site-header__burger { display: none; } }

.mobile-menu {
	background: var(--bj-charcoal);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-height: calc(100vh - var(--header-h));
	overflow-y: auto;
	padding-block: 1rem;
}
.mobile-menu__item { border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 0.75rem; margin-bottom: 0.25rem; }
.mobile-menu__link { display: block; padding: 0.75rem 0; color: var(--bj-white); font-weight: 500; text-decoration: none; }
.mobile-menu__link:hover { color: var(--bj-yellow); }
.mobile-menu__cities summary { font-size: 0.85rem; color: var(--bj-gray-soft); cursor: pointer; padding: 0.5rem 0; list-style: none; }
.mobile-menu__cities summary::-webkit-details-marker { display: none; }
.mobile-menu__cities summary::after { content: ' ▾'; }
.mobile-menu__cities[open] summary::after { content: ' ▴'; }
.mobile-menu__cities .site-nav__chips { padding-top: 0.5rem; }
.mobile-menu__cta { margin-top: 1rem; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--bj-black); border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding-block: 4rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.site-footer__logo { height: 3.5rem; width: auto; margin-bottom: 1.5rem; }
.site-footer__tagline { color: var(--bj-gray-soft); font-size: 0.9rem; margin-bottom: 1.5rem; }
.site-footer__social { display: flex; gap: 1rem; }
.site-footer__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem; height: 2.5rem;
	border-radius: 50%;
	background: var(--bj-charcoal);
	color: var(--bj-white);
	transition: background 0.2s ease, color 0.2s ease;
}
.site-footer__social-link:hover { background: var(--bj-yellow); color: var(--bj-black); }
.site-footer__title { font-size: 1.1rem; margin-bottom: 1.5rem; }
.site-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__list a { color: var(--bj-gray-soft); font-size: 0.9rem; text-decoration: none; transition: color 0.2s ease; }
.site-footer__list a:hover { color: var(--bj-yellow); }
.site-footer__link--highlight { color: var(--bj-yellow) !important; font-weight: 500; }
.site-footer__address { color: var(--bj-gray-soft); font-size: 0.9rem; }
.site-footer__legal-links { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
.site-footer__legal-links a, .site-footer__legal-links button {
	color: var(--bj-gray-soft);
	font-size: 0.75rem;
	text-decoration: none;
	background: none;
	border: 0;
	padding: 0;
	transition: color 0.2s ease;
}
.site-footer__legal-links a:hover, .site-footer__legal-links button:hover { color: var(--bj-yellow); }
.site-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding-block: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--bj-gray-soft);
	font-size: 0.85rem;
	text-align: center;
}
@media (min-width: 768px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; } }
.site-footer__operated { font-size: 0.75rem; }
.site-footer__bottom p { margin: 0; }

/* ---------- WhatsApp flotante ---------- */
.bj-whatsapp-float {
	position: fixed;
	right: 1.5rem; bottom: 1.5rem;
	z-index: 40;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.5rem; height: 3.5rem;
	border-radius: 50%;
	background: var(--bj-whatsapp);
	color: var(--bj-white);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	transition: background 0.2s ease, transform 0.2s ease, opacity 0.3s ease;
}
.bj-whatsapp-float:hover { background: #1ebd5b; transform: scale(1.06); }
.bj-whatsapp-float[hidden] { display: none; }

/* ---------- Cookies ---------- */
.bj-cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; z-index: 60; }
@media (min-width: 640px) { .bj-cookie-banner { right: auto; max-width: 24rem; } }
.bj-cookie-banner[hidden], .bj-cookie-modal[hidden] { display: none; }
.bj-cookie-banner__box {
	background: rgba(26, 26, 26, 0.97);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	padding: 1rem;
}
.bj-cookie-banner__head { display: flex; gap: 0.75rem; align-items: flex-start; }
.bj-cookie-banner__icon {
	flex-shrink: 0;
	width: 2.25rem; height: 2.25rem;
	border-radius: 50%;
	background: rgba(255, 214, 10, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
}
.bj-cookie-banner__title { font-weight: 600; font-size: 0.9rem; margin: 0; }
.bj-cookie-banner__desc { color: var(--bj-gray-soft); font-size: 0.75rem; margin: 0.25rem 0 0; }
.bj-cookie-banner__desc a { color: var(--bj-yellow); }
.bj-cookie-banner__actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.bj-cookie-banner__configure {
	background: none; border: 0; padding: 0;
	color: var(--bj-gray-soft);
	font-size: 0.75rem;
	text-decoration: underline;
	text-underline-offset: 2px;
	margin-right: auto;
}
.bj-cookie-banner__configure:hover { color: var(--bj-white); }
.bj-cookie-banner__btn {
	font-size: 0.75rem;
	padding: 0.4rem 0.8rem;
	border-radius: 0.4rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: none;
	color: rgba(255, 255, 255, 0.8);
	transition: border-color 0.2s ease, background 0.2s ease;
}
.bj-cookie-banner__btn:hover { border-color: rgba(255, 255, 255, 0.35); }
.bj-cookie-banner__btn--accept { background: var(--bj-yellow); border-color: var(--bj-yellow); color: var(--bj-black); font-weight: 600; }
.bj-cookie-banner__btn--accept:hover { background: #ffe04d; }

.bj-cookie-modal { position: fixed; inset: 0; z-index: 70; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.bj-cookie-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); }
.bj-cookie-modal__box {
	position: relative;
	background: var(--bj-charcoal);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.9rem;
	max-width: 28rem;
	width: 100%;
	padding: 1.5rem;
	max-height: 90vh;
	overflow-y: auto;
}
.bj-cookie-modal__title { font-size: 1.3rem; margin-bottom: 0.25rem; }
.bj-cookie-modal__desc { color: var(--bj-gray-soft); font-size: 0.85rem; margin-bottom: 1.25rem; }
.bj-cookie-modal__rows { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; }
.bj-cookie-modal__row {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	background: rgba(10, 10, 10, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.6rem;
	padding: 0.75rem;
}
.bj-cookie-modal__row-title { font-size: 0.85rem; font-weight: 500; margin: 0; }
.bj-cookie-modal__row-desc { color: var(--bj-gray-soft); font-size: 0.72rem; margin: 0.15rem 0 0; }
.bj-cookie-modal__row input { accent-color: var(--bj-yellow); width: 1.15rem; height: 1.15rem; margin-top: 0.2rem; }
.bj-cookie-modal__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: flex-end; }

/* ---------- Paginación / navegación de posts ---------- */
.bj-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.bj-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem; height: 2.5rem;
	padding-inline: 0.75rem;
	border-radius: 0.6rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--bj-gray-soft);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.bj-pagination .page-numbers:hover { color: var(--bj-yellow); border-color: rgba(255, 214, 10, 0.5); }
.bj-pagination .page-numbers.current { background: var(--bj-yellow); border-color: var(--bj-yellow); color: var(--bj-black); font-weight: 700; }

/* ---------- WordPress core ---------- */
.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin-inline: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { color: var(--bj-gray-soft); font-size: 0.85rem; text-align: center; padding-top: 0.5rem; }
.sticky { display: block; }
.bypostauthor { display: block; }
