/* ==========================================================================
   GuariaJourneys2 - Estilos principales
   Las variables (--gj-*) se inyectan desde el Personalizador.
   ========================================================================== */

:root {
	--gj-primary: #B45309;
	--gj-secondary: #0F766E;
	--gj-dark: #581C87;
	--gj-text: #4A3F5C;
	--gj-heading: #581C87;
	--gj-accent: #A21CAF;
	--gj-nature: #166534;
	--gj-off-white: #FBF7F0;
	--gj-white: #FFFFFF;
	--gj-footer-bg: #581C87;
	--gj-footer-text: #FBF7F0;
	--gj-font-heading: 'Poppins', sans-serif;
	--gj-font-body: 'Open Sans', sans-serif;
	--gj-font-accent: 'Dancing Script', cursive;
	--gj-base-size: 16px;
	--gj-radius: 10px;
	--gj-shadow: 0 18px 40px rgba(88, 28, 135, .12);
}

* { box-sizing: border-box; }

html {
	scroll-behavior: smooth;
	max-width: 100%;
}

body {
	margin: 0;
	width: 100%;
	max-width: 100%;
	font-family: var(--gj-font-body);
	font-size: var(--gj-base-size);
	line-height: 1.7;
	color: var(--gj-text);
	background: var(--gj-off-white);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gj-font-heading);
	color: var(--gj-heading);
	line-height: 1.2;
	margin: 0 0 .6em;
	font-weight: 700;
}

a { color: var(--gj-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gj-secondary); }

img, video, iframe, embed, object { max-width: 100%; height: auto; display: block; }

.gj2-site-content {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.gj2-topbar,
.gj2-site-header,
.gj2-footer {
	width: 100%;
	max-width: 100%;
}

.gj2-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	min-width: 0;
}

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}

.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 9999;
	background: var(--gj-primary); color: #fff; padding: 10px 18px;
}
.skip-link:focus { left: 10px; top: 10px; }

/* ---------- Botones ---------- */
.gj2-btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 50px;
	font-family: var(--gj-font-heading);
	font-weight: 600;
	font-size: .95rem;
	letter-spacing: .3px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all .25s ease;
	text-transform: uppercase;
}
.gj2-btn-primary { background: var(--gj-primary); color: var(--gj-white); border-color: var(--gj-primary); }
.gj2-btn-primary:hover { background: var(--gj-dark); border-color: var(--gj-dark); color: var(--gj-white); }
.gj2-btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---------- Cabecera estilo Roam ---------- */
.gj2-site-header {
	position: sticky;
	top: 0;
	z-index: 500;
	background: var(--gj-white);
	box-shadow: 0 2px 18px rgba(88, 28, 135, .08);
}

.gj2-header-shell {
	display: grid;
	grid-template-columns: clamp(120px, 14vw, 180px) minmax(0, 1fr);
	width: 100%;
	min-width: 0;
}

.gj2-header-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--gj-white);
	padding: 16px 18px;
	grid-row: 1 / span 2;
	align-self: stretch;
}

.gj2-header-logo .custom-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.gj2-header-logo .custom-logo {
	max-height: 73px;
	max-width: 100%;
	width: auto;
	height: auto;
}

.gj2-header-logo .gj2-site-title {
	font-family: var(--gj-font-heading);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--gj-heading);
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.gj2-header-stack {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

/* ---------- Top bar ---------- */
.gj2-topbar {
	background: var(--gj-dark);
	color: rgba(255, 255, 255, .82);
	font-size: .82rem;
}

.gj2-topbar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 44px;
	padding: 0 clamp(16px, 2.5vw, 40px);
	gap: 16px;
}

.gj2-topbar-info,
.gj2-topbar-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: clamp(14px, 2vw, 32px);
	min-width: 0;
}

.gj2-topbar-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	white-space: nowrap;
}

.gj2-topbar-item i {
	color: var(--gj-primary);
	font-size: .9rem;
	width: 1em;
	text-align: center;
	flex-shrink: 0;
}

.gj2-topbar-link {
	color: rgba(255, 255, 255, .82);
	transition: color .2s ease;
}

.gj2-topbar-link:hover {
	color: #fff;
}

.gj2-topbar-social {
	display: flex;
	align-items: center;
	gap: 14px;
}

.gj2-topbar-social .gj2-social-link {
	color: rgba(255, 255, 255, .75);
	font-size: .95rem;
	transition: color .2s ease;
}

.gj2-topbar-social .gj2-social-link:hover {
	color: var(--gj-primary);
}

.gj2-topbar-login {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .9);
	font-family: var(--gj-font-heading);
	font-weight: 600;
	font-size: .78rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	white-space: nowrap;
}

.gj2-topbar-login i {
	font-size: 1rem;
}

.gj2-topbar-login:hover {
	color: var(--gj-primary);
}

/* ---------- Barra de navegación ---------- */
.gj2-header-bar {
	display: flex;
	align-items: stretch;
	background: var(--gj-white);
	min-height: 72px;
	min-width: 0;
}

.gj2-nav {
	flex: 1;
	min-width: 0;
	display: flex;
	align-items: stretch;
}

.gj2-menu,
.gj2-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gj2-menu {
	display: flex;
	align-items: stretch;
	width: 100%;
	min-width: 0;
}

.gj2-menu > li {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	border-left: 1px solid rgba(88, 28, 135, .1);
}

.gj2-menu > li:first-child {
	border-left: none;
}

.gj2-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 72px;
	padding: 0 clamp(12px, 2vw, 36px);
	font-family: var(--gj-font-heading);
	font-weight: 500;
	color: var(--gj-heading);
	font-size: .92rem;
	text-align: center;
	white-space: nowrap;
	transition: color .2s ease;
}

.gj2-menu > li > a:hover,
.gj2-menu > li.current-menu-item > a,
.gj2-menu > li.current-menu-ancestor > a {
	color: var(--gj-primary);
}

.gj2-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	min-width: 220px;
	background: var(--gj-white);
	box-shadow: var(--gj-shadow);
	border-radius: 8px;
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transition: all .25s ease;
	z-index: 600;
}

.gj2-menu .sub-menu li {
	border-left: none;
}

.gj2-menu .sub-menu a {
	display: block;
	padding: 10px 20px;
	text-align: left;
	white-space: normal;
}

.gj2-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.gj2-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
	transform: translateY(10px);
}

.gj2-menu .sub-menu li:hover > .sub-menu {
	transform: translateY(0);
}

.gj2-menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 72px;
	min-width: 72px;
	min-height: 72px;
	background: none;
	border: none;
	border-left: 1px solid rgba(88, 28, 135, .1);
	cursor: pointer;
	flex-shrink: 0;
}

.gj2-menu-toggle span {
	display: block;
	width: 26px;
	height: 3px;
	background: var(--gj-heading);
	border-radius: 3px;
	transition: .3s;
}

.gj2-menu-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.gj2-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.gj2-menu-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.gj2-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}
.gj2-hero-track { position: relative; }
.gj2-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	background-color: var(--gj-secondary);
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease;
	overflow: hidden;
}

.gj2-hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: var(--gj-secondary);
	z-index: 0;
	transform: scale(1);
	will-change: transform;
}
.gj2-hero-slide:first-child { position: relative; }
.gj2-hero-slide.is-active { opacity: 1; visibility: visible; z-index: 2; }
.gj2-hero-slide:not(.is-active) {
	pointer-events: none;
	z-index: 0;
}
.gj2-hero { min-height: 86vh; }
.gj2-hero-slide { min-height: 86vh; }
.gj2-hero-overlay {
	position: absolute; inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(88, 28, 135, .75) 0%, rgba(88, 28, 135, .35) 60%, rgba(15, 118, 110, .2) 100%);
}
.gj2-hero-content { position: relative; z-index: 3; max-width: 720px; color: #fff; }
.gj2-hero-sub {
	font-family: var(--gj-font-accent);
	font-size: 2rem;
	color: #fff;
	display: block;
	margin-bottom: 10px;
}

/* Emblema · Font Awesome (playa, sol, montaña) */
.gj2-hero-emblem {
	margin-bottom: 12px;
	max-width: 100%;
}

.gj2-hero-emblem-icons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 18px;
}

.gj2-emblem-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 1.45rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, .1);
	backdrop-filter: blur(4px);
}

.gj2-emblem-sun { animation-delay: 0s; color: #f5c76a; animation: gj2-emblem-rise 1s ease-out both, gj2-emblem-spin 14s linear 1s infinite; }
.gj2-emblem-boat { animation-delay: .15s; color: #fff; animation: gj2-emblem-rise 1s ease-out both, gj2-emblem-boat-rock 4s ease-in-out 1.15s infinite; }
.gj2-emblem-waves { animation-delay: .3s; color: #7ee8df; animation: gj2-emblem-rise 1s ease-out both, gj2-emblem-wave 2.8s ease-in-out 1.3s infinite; }
.gj2-emblem-nature { animation-delay: .45s; color: #86efac; animation: gj2-emblem-rise 1s ease-out both, gj2-emblem-pulse 3.5s ease-in-out 1.45s infinite; }

@keyframes gj2-emblem-rise {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

@keyframes gj2-emblem-boat-rock {
	0%, 100% { transform: rotate(0deg) translateY(0); }
	50% { transform: rotate(-8deg) translateY(-2px); }
}

@keyframes gj2-emblem-pulse {
	0%, 100% { opacity: .85; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.08); }
}

@keyframes gj2-emblem-wave {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

@keyframes gj2-emblem-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Animate.css · estado inicial */
.gj2-animate-scroll:not(.gj2-animated),
.gj2-animate-hero:not(.gj2-animated) {
	opacity: 0;
}

.gj2-animate.gj2-animated {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.gj2-animate-scroll:not(.gj2-animated),
	.gj2-animate-hero:not(.gj2-animated) {
		opacity: 1;
	}

	.gj2-hero-emblem * {
		animation: none !important;
	}

	.gj2-hero-slide-bg {
		animation: none !important;
		transform: scale(1) !important;
	}
}

.gj2-hero-title {
	color: #fff;
	font-size: clamp(2.2rem, 5vw, 4rem);
	margin-bottom: 28px;
	font-weight: 800;
}
.gj2-hero-arrow {
	position: absolute; top: 50%; transform: translateY(-50%);
	z-index: 5; width: 52px; height: 52px; border-radius: 50%;
	background: rgba(255, 255, 255, .2); border: none; color: #fff; cursor: pointer;
	display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.gj2-hero-arrow:hover { background: var(--gj-primary); }
.gj2-hero-prev { left: 24px; }
.gj2-hero-next { right: 24px; }
.gj2-hero-arrow i { font-size: 1.1rem; }
.gj2-hero-dots {
	position: absolute; bottom: 28px; left: 0; right: 0; z-index: 5;
	display: flex; justify-content: center; gap: 10px;
}
.gj2-hero-dot { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; cursor: pointer; padding: 0; }
.gj2-hero-dot.is-active { background: var(--gj-primary); border-color: var(--gj-primary); }

@media (min-width: 901px) {
	.gj2-hero-slide.is-active .gj2-hero-slide-bg {
		animation: gj2-hero-zoom 6s ease-out forwards;
	}

	.gj2-hero-slide:not(.is-active) .gj2-hero-slide-bg {
		animation: none;
		transform: scale(1);
	}
}

@keyframes gj2-hero-zoom {
	from { transform: scale(1); }
	to { transform: scale(1.12); }
}

/* ---------- Buscador ---------- */
.gj2-search-section {
	margin-top: -70px;
	position: relative;
	z-index: 50;
	padding-bottom: 40px;
	width: 100%;
	max-width: 100%;
}
.gj2-search-title { text-align: center; color: #fff; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,.4); display: none; }
.gj2-search-form {
	background: var(--gj-white);
	border-radius: var(--gj-radius);
	box-shadow: var(--gj-shadow);
	padding: 22px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) auto;
	gap: 18px;
	align-items: end;
	width: 100%;
	max-width: 100%;
}
.gj2-search-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gj2-search-field label { font-family: var(--gj-font-heading); font-weight: 600; font-size: .85rem; color: var(--gj-heading); }
.gj2-search-field select, .gj2-search-field input {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	padding: 12px 14px;
	border: 1px solid rgba(88, 28, 135, .15);
	border-radius: 8px;
	font-family: var(--gj-font-body);
	font-size: .95rem;
	color: var(--gj-text);
	background: var(--gj-off-white);
}
.gj2-search-submit .gj2-btn { width: 100%; }

.gj2-search-hint {
	margin: 6px 0 0;
	font-size: .78rem;
	color: var(--gj-text);
	opacity: .85;
}

/* ---------- Secciones ---------- */
.gj2-section { padding: 90px 0; width: 100%; max-width: 100%; overflow-x: hidden; }
.gj2-section-alt { background: var(--gj-white); }
.gj2-section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.gj2-section-sub {
	font-family: var(--gj-font-accent);
	font-size: 1.8rem;
	color: var(--gj-accent);
	display: block;
	margin-bottom: 6px;
}
.gj2-section-sub-light { color: var(--gj-primary); }
.gj2-section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }

/* ---------- Destinos ---------- */
.gj2-dest-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}
.gj2-dest-card {
	position: relative;
	border-radius: var(--gj-radius);
	overflow: hidden;
	min-height: 320px;
	display: flex;
	align-items: flex-end;
	box-shadow: var(--gj-shadow);
}
.gj2-dest-img {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	background-color: var(--gj-secondary);
	transition: transform .6s ease;
}
.gj2-dest-card:hover .gj2-dest-img { transform: scale(1.08); }
.gj2-dest-overlay {
	position: relative; z-index: 2; width: 100%;
	padding: 24px;
	color: #fff;
	background: linear-gradient(to top, rgba(88, 28, 135, .9), rgba(88, 28, 135, 0));
}
.gj2-dest-loc { font-size: .85rem; opacity: .9; }
.gj2-dest-title { color: #fff; margin: 4px 0 6px; font-size: 1.3rem; }
.gj2-dest-price { color: var(--gj-primary); font-weight: 700; font-family: var(--gj-font-heading); }

/* ---------- Tours ---------- */
.gj2-tours-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.gj2-tour-card {
	background: var(--gj-white);
	border-radius: var(--gj-radius);
	overflow: hidden;
	box-shadow: var(--gj-shadow);
	transition: transform .3s ease;
}
.gj2-tour-card:hover { transform: translateY(-6px); }
.gj2-tour-media { position: relative; display: block; }
.gj2-tour-img { height: 200px; background-size: cover; background-position: center; background-color: var(--gj-secondary); }
.gj2-tour-badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--gj-accent); color: var(--gj-white);
	padding: 4px 14px; border-radius: 50px; font-size: .75rem; font-weight: 600; text-transform: uppercase;
}
.gj2-tour-body { padding: 20px; }
.gj2-tour-loc { font-size: .8rem; color: var(--gj-text); display: flex; align-items: center; gap: 4px; }
.gj2-tour-loc i,
.gj2-tour-days i { color: var(--gj-primary); font-size: .95rem; width: 1em; flex-shrink: 0; }
.gj2-tour-title { font-size: 1.15rem; margin: 8px 0 14px; }
.gj2-tour-title a { color: var(--gj-heading); }
.gj2-tour-title a:hover { color: var(--gj-primary); }
.gj2-tour-meta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(88, 28, 135, .1); padding-top: 14px; }
.gj2-tour-days { font-size: .85rem; display: flex; align-items: center; gap: 4px; }
.gj2-tour-price { font-family: var(--gj-font-heading); font-weight: 700; color: var(--gj-primary); font-size: 1.15rem; }
.gj2-tour-price del { color: #aab4be; font-weight: 400; font-size: .9rem; margin-right: 6px; }

/* ---------- Oferta ---------- */
.gj2-offer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.gj2-offer-media {
	min-height: 420px; border-radius: var(--gj-radius);
	background-size: cover; background-position: center; background-color: var(--gj-secondary);
	box-shadow: var(--gj-shadow);
}
.gj2-offer-text { margin-bottom: 24px; }

/* ---------- Features ---------- */
.gj2-features-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.gj2-feature {
	background: var(--gj-white); border-radius: var(--gj-radius); padding: 36px 26px; text-align: center;
	box-shadow: var(--gj-shadow); transition: transform .3s ease;
}
.gj2-feature:hover { transform: translateY(-6px); border-bottom: 3px solid var(--gj-nature); }
.gj2-feature-icon {
	width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%;
	background: rgba(180, 83, 9, .12); color: var(--gj-primary);
	display: flex; align-items: center; justify-content: center;
}
.gj2-feature-icon i { font-size: 1.75rem; }
.gj2-feature-title { font-size: 1.2rem; }
.gj2-feature-text { font-size: .92rem; margin: 0; }

/* ---------- Contadores ---------- */
.gj2-counters {
	position: relative; padding: 90px 0;
	background-size: cover; background-position: center; background-attachment: fixed;
	background-color: var(--gj-dark);
}
.gj2-counters-overlay { position: absolute; inset: 0; background: rgba(88, 28, 135, .88); }
.gj2-counters-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.gj2-counter { color: #fff; }
.gj2-counter-num, .gj2-counter-suf {
	font-family: var(--gj-font-heading); font-size: 3rem; font-weight: 800; color: var(--gj-primary);
}
.gj2-counter-label { display: block; margin-top: 8px; color: rgba(255, 255, 255, .85); font-size: .95rem; }

/* ---------- CTA ---------- */
.gj2-cta {
	position: relative; padding: 110px 0; text-align: center;
	background-size: cover; background-position: center; background-color: var(--gj-secondary);
}
.gj2-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(88, 28, 135, .85) 0%, rgba(15, 118, 110, .75) 100%); }
.gj2-cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; color: #fff; }
.gj2-cta-title { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.gj2-cta-text { color: rgba(255, 255, 255, .9); margin-bottom: 30px; font-size: 1.1rem; }

/* ---------- Páginas internas ---------- */
.gj2-page-header { background: var(--gj-white); padding: 60px 0; text-align: center; border-bottom: 3px solid var(--gj-primary); }
.gj2-page-title { font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 0; }
.gj2-page-title span { color: var(--gj-primary); }
.gj2-page-hero { position: relative; padding: 120px 0; text-align: center; background-size: cover; background-position: center; background-color: var(--gj-secondary); }
.gj2-page-hero-overlay { position: absolute; inset: 0; background: rgba(88, 28, 135, .65); }
.gj2-page-hero .gj2-container { position: relative; z-index: 2; }
.gj2-page-title-light { color: #fff; }

.gj2-main-layout { display: grid; grid-template-columns: 1fr 320px; gap: 50px; padding-top: 70px; padding-bottom: 90px; align-items: start; }
.gj2-no-sidebar .gj2-main-layout { grid-template-columns: 1fr; }
.gj2-single { max-width: 860px; padding-top: 60px; padding-bottom: 80px; }

.gj2-posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.gj2-post-card { background: var(--gj-white); border-radius: var(--gj-radius); overflow: hidden; box-shadow: var(--gj-shadow); }
.gj2-post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.gj2-post-body { padding: 24px; }
.gj2-post-meta { font-size: .82rem; color: var(--gj-text); display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.gj2-post-meta i { font-size: .9rem; width: 1em; color: var(--gj-primary); flex-shrink: 0; }
.gj2-post-meta-sep { opacity: .5; }
.gj2-post-title { font-size: 1.3rem; }
.gj2-post-title a { color: var(--gj-heading); }
.gj2-post-title a:hover { color: var(--gj-primary); }
.gj2-read-more { font-family: var(--gj-font-heading); font-weight: 600; }

.gj2-entry-content { line-height: 1.8; max-width: 100%; overflow-wrap: anywhere; word-break: break-word; }
.gj2-entry-content img { border-radius: 8px; margin: 18px 0; }
.gj2-entry-content h2, .gj2-entry-content h3 { margin-top: 1.4em; }
.gj2-entry-content pre,
.gj2-entry-content table { max-width: 100%; overflow-x: auto; display: block; }
.gj2-entry-tags a { display: inline-block; background: rgba(162, 28, 175, .1); color: var(--gj-accent); padding: 4px 14px; border-radius: 50px; font-size: .8rem; margin: 4px 4px 0 0; }

/* Sidebar */
.gj2-sidebar .widget { background: var(--gj-white); padding: 26px; border-radius: var(--gj-radius); margin-bottom: 26px; box-shadow: var(--gj-shadow); }
.gj2-widget-title, .widget-title { font-size: 1.15rem; margin-bottom: 16px; }
.gj2-sidebar ul { list-style: none; padding: 0; margin: 0; }
.gj2-sidebar li { padding: 8px 0; border-bottom: 1px solid rgba(88, 28, 135, .1); }

/* Búsqueda */
.gj2-searchform { display: flex; max-width: 420px; margin: 20px auto; }
.gj2-searchform input { flex: 1; padding: 12px 16px; border: 1px solid rgba(88, 28, 135, .15); border-radius: 8px 0 0 8px; background: var(--gj-off-white); }
.gj2-searchform button { background: var(--gj-primary); color: #fff; border: none; padding: 0 18px; border-radius: 0 8px 8px 0; cursor: pointer; }

/* 404 */
.gj2-404 { text-align: center; padding: 110px 20px; }
.gj2-404 h1 { font-size: 7rem; color: var(--gj-primary); margin: 0; line-height: 1; }

/* Paginación */
.pagination, .nav-links { display: flex; gap: 8px; justify-content: center; margin-top: 50px; flex-wrap: wrap; }
.pagination .page-numbers, .nav-links .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 44px; height: 44px; padding: 0 12px; border-radius: 8px;
	background: var(--gj-off-white); color: var(--gj-heading); font-weight: 600;
}
.pagination .current { background: var(--gj-primary); color: #fff; }

/* Comentarios */
.gj2-comments { margin-top: 50px; }
.gj2-comment-list { list-style: none; padding: 0; }
.gj2-comment-list .comment-body { background: var(--gj-off-white); padding: 20px; border-radius: 8px; margin-bottom: 16px; }

/* ---------- Footer ---------- */
.gj2-footer { background: var(--gj-footer-bg); color: var(--gj-footer-text); }
.gj2-footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding: 70px 20px; }
.gj2-footer-logo { color: #fff; }
.gj2-footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.15rem; }
.gj2-footer-about p { margin-bottom: 20px; }
.gj2-footer-contact { list-style: none; padding: 0; margin: 0; }
.gj2-footer-contact li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.gj2-footer-contact i { color: var(--gj-primary); width: 1em; flex-shrink: 0; }
.gj2-footer-contact a { color: var(--gj-footer-text); }
.gj2-footer-menu, .gj2-footer-links ul { list-style: none; padding: 0; margin: 0; }
.gj2-footer-links li { padding: 7px 0; }
.gj2-footer-links a { color: var(--gj-footer-text); }
.gj2-footer-links a:hover { color: var(--gj-primary); }
.gj2-footer-social { display: flex; gap: 12px; }
.gj2-footer-social a {
	width: 42px; height: 42px; border-radius: 50%;
	background: rgba(255, 255, 255, .08); color: #fff;
	display: flex; align-items: center; justify-content: center; transition: background .25s;
}
.gj2-footer-social a:hover { background: var(--gj-primary); }
.gj2-footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 22px 0; text-align: center; font-size: .9rem; }
.gj2-footer-bottom p { margin: 0; }

/* Botón ir arriba */
.gj2-go-up {
	position: fixed; bottom: 26px; right: 26px; z-index: 600;
	width: 48px; height: 48px; border-radius: 50%; border: none;
	background: var(--gj-primary); color: #fff; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .3s ease;
	box-shadow: var(--gj-shadow);
}
.gj2-go-up.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.gj2-go-up i { font-size: 1.1rem; }

/* Overlay menú móvil (solo celular/tablet) */
.gj2-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 680;
	background: rgba(88, 28, 135, .45);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}

body.gj2-menu-open {
	overflow: hidden;
}

body.gj2-menu-open .gj2-site-header {
	z-index: 710;
}

@media (max-width: 900px) {
	body.gj2-menu-open .gj2-nav-overlay {
		display: block;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (min-width: 901px) {
	body.gj2-menu-open {
		overflow: auto;
	}

	body.gj2-menu-open .gj2-site-header {
		z-index: 500;
	}

	.gj2-nav-overlay {
		display: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.gj2-menu-toggle {
		display: none;
	}
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.gj2-dest-grid, .gj2-tours-grid, .gj2-features-grid { grid-template-columns: repeat(2, 1fr); }
	.gj2-counters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
	html,
	body {
		width: 100%;
		max-width: 100%;
		overflow-x: hidden;
		overscroll-behavior-x: none;
	}

	body {
		touch-action: pan-y pinch-zoom;
	}

	.gj2-header-shell {
		grid-template-columns: clamp(128px, 36vw, 190px) minmax(0, 1fr);
	}

	.gj2-header-logo {
		grid-row: auto;
		padding: 16px 14px;
	}

	.gj2-header-logo .custom-logo {
		max-height: 96px;
	}

	.gj2-header-bar {
		min-height: 72px;
		justify-content: flex-end;
		position: relative;
		z-index: 2;
	}

	.gj2-menu-toggle {
		position: relative;
		z-index: 3;
	}

	.gj2-topbar {
		display: none;
	}

	.gj2-hero-arrow { display: none; }

	.gj2-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(85vw, 320px);
		height: 100%;
		height: 100dvh;
		background: var(--gj-white);
		box-shadow: none;
		padding: 80px 24px 24px;
		overflow-y: auto;
		overflow-x: hidden;
		transition: transform .35s ease, visibility .35s ease, box-shadow .35s ease;
		z-index: 720;
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
		pointer-events: none;
		will-change: transform;
		flex: none;
		isolation: isolate;
	}

	.gj2-nav.is-open {
		transform: translate3d(0, 0, 0);
		visibility: visible;
		pointer-events: auto;
		box-shadow: -10px 0 40px rgba(88, 28, 135, .15);
		touch-action: pan-y;
	}

	.gj2-menu {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.gj2-menu > li {
		flex: none;
		border-left: none;
		border-bottom: 1px solid rgba(88, 28, 135, .1);
	}

	.gj2-menu > li > a {
		justify-content: flex-start;
		min-height: 0;
		padding: 14px 4px;
		white-space: normal;
		position: relative;
		z-index: 1;
	}

	.gj2-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		padding-left: 16px;
		display: none;
		min-width: 0;
		left: auto;
	}

	.gj2-menu .sub-menu .sub-menu {
		left: auto;
		top: auto;
		transform: none;
	}

	.gj2-menu li.is-expanded > .sub-menu {
		display: block;
	}

	.gj2-menu-toggle {
		width: 64px;
		min-width: 64px;
		min-height: 64px;
	}

	.gj2-main-layout { grid-template-columns: 1fr; }
	.gj2-offer-inner { grid-template-columns: 1fr; }
	.gj2-search-form { grid-template-columns: minmax(0, 1fr); }
	.gj2-counters { background-attachment: scroll; }
}

@media (max-width: 640px) {
	.gj2-dest-grid, .gj2-tours-grid, .gj2-features-grid, .gj2-posts-grid { grid-template-columns: 1fr; }
	.gj2-counters-grid { grid-template-columns: 1fr 1fr; }
	.gj2-search-form { grid-template-columns: minmax(0, 1fr); }
	.gj2-section { padding: 60px 0; }
	.gj2-hero, .gj2-hero-slide { min-height: 70vh; }
	.gj2-hero-title { overflow-wrap: anywhere; word-break: break-word; }
}
