/**
 * Andora Travel - Estilos de Lujo para Cabecera y Hero Banner
 *
 * Desarrollado por: Cusco Creativos
 * Agencia: Andora Travel
 *
 * @package Andora_Travel
 */

/* ==========================================================================
   1. VARIABLES CSS GLOBALES
   ========================================================================== */
:root {
	/* Tipografía */
	--font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	/* Paleta de Colores Oficial Andora Travel */
	--color-brand-primary: #1B4332;       /* Verde Esmeralda Andino Principal (#1B4332) */
	--color-brand-secondary: #2D6A4F;     /* Verde Bosque Medio / Acentos */
	--color-brand-cream: #F4F0E5;         /* Crema Suave / Off-White */
	--color-brand-sand: #EDE8D0;          /* Arena Cálida / Champagne */

	/* Alias de compatibilidad y acentos luminosos */
	--color-gold-light: #F4F0E5;
	--color-gold: #EDE8D0;                /* Arena Cálida / Champagne (Alto Contraste) */
	--color-gold-dark: #C9B88E;
	--color-gold-rich: #D4AF37;
	
	--color-dark-bg: #1B4332;             /* Verde Esmeralda Andino Principal (#1B4332) */
	--color-dark-surface: #112d22;        /* Superficie de tarjetas / contenedores */
	--color-dark-glass: rgba(27, 67, 50, 0.85);
	--color-dark-glass-strong: rgba(27, 67, 50, 0.96);
	--color-border-glass: rgba(237, 232, 208, 0.2);
	--color-border-gold-glass: rgba(237, 232, 208, 0.35);

	--color-text-main: #F4F0E5;
	--color-text-muted: #EDE8D0;
	--color-text-dim: #9fb3ad;

	/* Contenedores y Transiciones */
	--container-max-width: 1360px;
	--container-padding: 2rem;
	--transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET Y BASES ESTRUCTURALES
   ========================================================================== */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background-color: var(--color-dark-bg);
	color: var(--color-text-main);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

ul, ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: var(--transition-smooth);
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}

.container {
	width: 100%;
	max-width: var(--container-max-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--container-padding);
	padding-right: var(--container-padding);
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

/* ==========================================================================
   3. CABECERA DE LUJO (LUXURY HEADER) - DEGRADADO DIFUMINADO SOBRE HERO
   ========================================================================== */
.luxury-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 65%, transparent 100%);
	border-bottom: none;
	box-shadow: none;
	transition: var(--transition-smooth);
}

/* --- 3.1 Barra Superior (Top Bar) --- */
.header-top-bar {
	position: relative;
	z-index: 1200;
	background: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 0.85rem 0;
	transition: var(--transition-smooth);
}

.top-bar-container {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1.5rem;
}

/* Lado Izquierdo: Teléfono y Horario */
.top-bar-left {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.top-info-item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-text-muted);
	letter-spacing: 0.02em;
}

.top-info-item .icon {
	color: var(--color-gold);
	width: 15px;
	height: 15px;
}

.top-phone:hover {
	color: var(--color-gold-light);
}

/* Centro: Logotipo Andora Travel */
.top-bar-center {
	display: flex;
	justify-content: center;
}

.brand-composite-logo {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
}

.site-logo-img,
.site-logo-white {
	max-height: 85px;
	height: 75px;
	width: auto;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}

.custom-logo-link:hover .site-logo-img,
.brand-composite-logo:hover .site-logo-img,
.custom-logo-link:hover .site-logo-white,
.brand-composite-logo:hover .site-logo-white {
	transform: scale(1.03);
}

.footer-logo-img,
.footer-logo-white {
	max-height: 95px;
	height: 80px;
	width: auto;
	object-fit: contain;
	display: block;
	transition: transform 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img,
.footer-logo-link:hover .footer-logo-white {
	transform: scale(1.03);
}

.brand-logo-icon {
	color: var(--color-gold);
	transition: transform 0.4s ease;
}

.brand-composite-logo:hover .brand-logo-icon {
	transform: rotate(15deg) scale(1.05);
}

.brand-logo-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.brand-name {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #ffffff;
	line-height: 1;
	text-transform: uppercase;
}

.brand-tagline {
	font-family: var(--font-body);
	font-size: 0.625rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	color: var(--color-gold-light);
	text-transform: uppercase;
	margin-top: 0.2rem;
}

/* Lado Derecho: Idioma y Contacto */
.top-bar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1.5rem;
}

/* Selector de Idioma */
.language-switcher {
	position: relative;
	z-index: 1300;
}

.lang-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(237, 232, 208, 0.35);
	border-radius: 6px;
	padding: 0.4rem 0.75rem;
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 600;
	transition: var(--transition-smooth);
	cursor: pointer;
}

.lang-btn:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--color-brand-sand);
}

.icon-lang-arrow {
	width: 13px;
	height: 13px;
	color: var(--color-brand-sand);
	stroke: var(--color-brand-sand);
	stroke-width: 2.5px;
	transition: transform 0.3s ease;
}

.language-switcher.is-open .icon-lang-arrow {
	transform: rotate(180deg);
}

.lang-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	background-color: #071512 !important;
	border: 1px solid rgba(237, 232, 208, 0.32);
	border-radius: 6px;
	padding: 0.4rem 0;
	min-width: 140px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: var(--transition-smooth);
	z-index: 99999;
}

.language-switcher.is-open .lang-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.lang-item a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-brand-cream);
	background: transparent;
}

.lang-item a:hover,
.lang-item.active a {
	background-color: rgba(28, 107, 90, 0.3);
	color: var(--color-brand-sand);
}

/* Botón Contáctenos */
.top-contact-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(237, 232, 208, 0.35);
	border-radius: 6px;
	padding: 0.4rem 0.85rem;
	color: var(--color-brand-cream);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: var(--transition-smooth);
}

.top-contact-btn .icon,
.top-contact-btn svg {
	color: var(--color-brand-sand);
	stroke: var(--color-brand-sand);
	stroke-width: 2px;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.top-contact-btn:hover {
	background: var(--color-brand-primary);
	border-color: var(--color-brand-sand);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(16, 88, 75, 0.4);
}

.top-contact-btn:hover .icon,
.top-contact-btn:hover svg {
	color: #ffffff;
	stroke: #ffffff;
}

/* --- 3.2 Barra de Navegación Principal --- */
/* --- 3.2 Barra de Navegación Principal (La única fila que acompaña el Sticky) --- */
.header-nav-bar {
	position: relative;
	z-index: 900;
	padding: 0.85rem 0 1.25rem;
	transition: all 0.3s ease;
}

/* Comportamiento Sticky Desktop: SOLO la fila de navegación acompaña el scroll */
@media (min-width: 993px) {
	.luxury-header.is-sticky .header-nav-bar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9990;
		background: rgba(27, 67, 50, 0.96) !important;
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		border-bottom: 1px solid rgba(237, 232, 208, 0.22);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
		padding: 0.7rem 0;
		animation: slideDownStickyNav 0.32s cubic-bezier(0.4, 0, 0.2, 1) forwards;
	}
}

@keyframes slideDownStickyNav {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.luxury-navigation {
	display: flex;
	justify-content: center;
}

.luxury-nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	z-index: 10050;
}

.luxury-nav-menu > .menu-item {
	list-style: none;
	position: relative;
	z-index: 10051;
	padding: 0.25rem 0;
}

.luxury-nav-menu > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--color-brand-cream);
	text-transform: uppercase;
	padding: 0.65rem 0.35rem;
	position: relative;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
	transition: color 0.25s ease;
}

.luxury-nav-menu > .menu-item > a:hover,
.luxury-nav-menu > .menu-item:hover > a {
	color: #ffffff;
}

.dropdown-arrow-icon {
	width: 13px;
	height: 13px;
	color: var(--color-brand-sand);
	stroke: var(--color-brand-sand);
	stroke-width: 2.4px;
	fill: none;
	display: inline-block;
	vertical-align: middle;
	margin-left: 0.15rem;
	flex-shrink: 0;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease, stroke 0.25s ease;
}

.luxury-nav-menu > .menu-item:hover .dropdown-arrow-icon,
.luxury-nav-menu > .menu-item > a:hover .dropdown-arrow-icon {
	transform: rotate(180deg);
	color: #ffffff;
	stroke: #ffffff;
}

.menu-separator {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Submenús Desplegables de Lujo */
.luxury-nav-menu .menu-item-has-children {
	position: relative;
}

.luxury-nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	background-color: #1B4332;
	background: linear-gradient(180deg, #1B4332 0%, #15382a 100%);
	border: 1px solid rgba(237, 232, 208, 0.28);
	border-radius: 8px;
	padding: 0.65rem 0;
	min-width: 230px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.luxury-nav-menu .menu-item-has-children:hover > .sub-menu,
.luxury-nav-menu .menu-item-has-children.focus > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.luxury-nav-menu .sub-menu li a {
	display: block;
	padding: 0.6rem 1.25rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-brand-cream);
	text-transform: none;
	letter-spacing: 0.02em;
	transition: var(--transition-smooth);
	white-space: nowrap;
}

.luxury-nav-menu .sub-menu li a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	padding-left: 1.5rem;
}

/* --- 3.3 Mega Menú Personalizado de Lujo (3 Columnas) --- */
.luxury-nav-menu .menu-item-has-mega-menu {
	position: static !important;
}

.header-nav-bar .nav-bar-container {
	position: relative;
}

.mega-menu-dropdown {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%) translateY(0);
	width: 94vw;
	max-width: 1140px;
	background: linear-gradient(145deg, #1B4332 0%, #112d22 100%);
	border: 1px solid rgba(237, 232, 208, 0.32);
	border-radius: 14px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(27, 67, 50, 0.25);
	padding: 2.25rem 2.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.22s ease;
	z-index: 9999;
}

.luxury-nav-menu .menu-item-has-mega-menu:hover > .mega-menu-dropdown,
.luxury-nav-menu .menu-item-has-mega-menu.focus > .mega-menu-dropdown,
.luxury-nav-menu .menu-item-has-mega-menu > .mega-menu-dropdown:hover {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mega-menu-grid {
	display: grid;
	grid-template-columns: 1.15fr 1.55fr 1.3fr;
	gap: 2.75rem;
	align-items: stretch;
}

/* Columna 1: Imagen Destacada */
.mega-menu-col-image {
	display: flex;
}

.mega-image-card {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 270px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
	display: block;
}

.mega-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-image-card:hover .mega-img {
	transform: scale(1.06);
}

.mega-image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(8, 38, 32, 0.55) 0%, transparent 60%);
	pointer-events: none;
}

/* Columna 2: Lista de Enlaces / Tours */
.mega-menu-col-links {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.mega-col-heading {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-brand-sand);
	margin: 0 0 1.25rem;
}

.mega-col-links-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mega-link-item {
	list-style: none;
}

.mega-tour-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	color: var(--color-brand-cream);
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.25s ease, transform 0.25s ease;
	line-height: 1.35;
}

.mega-pin-icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-brand-sand);
	flex-shrink: 0;
}

.icon-mega-pin {
	width: 15px;
	height: 15px;
	color: var(--color-brand-sand);
	transition: transform 0.25s ease, color 0.25s ease;
}

.mega-tour-link:hover {
	color: #ffffff;
	transform: translateX(4px);
}

.mega-tour-link:hover .icon-mega-pin {
	color: #ffffff;
	transform: scale(1.15);
}

.mega-col-divider {
	width: 100%;
	height: 1px;
	background: rgba(244, 240, 229, 0.15);
	margin: 1.25rem 0 1rem;
}

.mega-col-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-sand);
	text-decoration: none;
	transition: var(--transition-smooth);
	margin-top: auto;
}

.mega-col-cta:hover {
	color: #ffffff;
	transform: translateX(4px);
}

/* Columna 3: Texto Descriptivo */
.mega-menu-col-text {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.mega-text-title {
	font-family: var(--font-heading);
	font-size: 1.85rem;
	font-weight: 700;
	color: var(--color-brand-cream);
	line-height: 1.2;
	margin: 0 0 1rem;
	letter-spacing: 0.01em;
}

.mega-text-paragraph {
	font-size: 0.9rem;
	line-height: 1.75;
	color: #d1deda;
}

.mega-text-paragraph p {
	margin-bottom: 0.85rem;
}

.mega-text-paragraph p:last-child {
	margin-bottom: 0;
}

/* Botón Toggle Móvil / Tablet de Lujo */
.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	background: rgba(16, 88, 75, 0.55);
	border: 1px solid rgba(237, 232, 208, 0.4);
	border-radius: 50px;
	padding: 0.5rem 1.4rem;
	color: var(--color-brand-cream);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 100000;
}

.menu-toggle .label-close {
	display: none;
}

.menu-toggle .label-menu {
	display: inline;
}

.menu-toggle:hover {
	background: var(--color-brand-primary);
	border-color: var(--color-brand-sand);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(16, 88, 75, 0.5);
}

.menu-toggle-icon-wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 17px;
	height: 12px;
	position: relative;
}

.hamburger-bar {
	width: 100%;
	height: 2px;
	background-color: var(--color-brand-sand);
	border-radius: 2px;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.menu-toggle:hover .hamburger-bar {
	background-color: #ffffff;
}

/* Estado Abierto / CERRAR (Morfosis a X) */
.menu-toggle[aria-expanded="true"] {
	background: rgba(185, 28, 28, 0.55);
	border-color: rgba(252, 165, 165, 0.7);
	color: #ffffff;
	box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
}

.menu-toggle[aria-expanded="true"]:hover {
	background: rgba(220, 38, 38, 0.8);
	border-color: #ffffff;
}

.menu-toggle[aria-expanded="true"] .label-menu {
	display: none;
}

.menu-toggle[aria-expanded="true"] .label-close {
	display: inline;
}

.menu-toggle[aria-expanded="true"] .bar-1 {
	transform: translateY(5px) rotate(45deg);
	background-color: #ffffff;
}

.menu-toggle[aria-expanded="true"] .bar-2 {
	opacity: 0;
	transform: scale(0);
}

.menu-toggle[aria-expanded="true"] .bar-3 {
	transform: translateY(-5px) rotate(-45deg);
	background-color: #ffffff;
}

/* Backdrop Overlay */
.primary-menu-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(4, 13, 11, 0.82);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 99990;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.primary-menu-backdrop.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* Drawer Header y Footer (Ocultos en Desktop) */
.mobile-drawer-header,
.mobile-drawer-footer {
	display: none;
}

/* ==========================================================================
   4. HERO BANNER DE LUJO (HERO BANNER)
   ========================================================================== */
.luxury-hero-banner {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 180px;
	padding-bottom: 60px;
	overflow: hidden;
}

/* Fondo de Imagen con Capas de Gradiente */
.hero-background-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center right;
}

.hero-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(11, 17, 26, 0.90) 0%,
		rgba(11, 17, 26, 0.72) 42%,
		rgba(11, 17, 26, 0.40) 70%,
		rgba(11, 17, 26, 0.20) 100%
	);
}

.hero-dot-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
	background-size: 24px 24px;
	opacity: 0.6;
	pointer-events: none;
}

/* Contenido del Hero */
.hero-container {
	position: relative;
	z-index: 10;
}

.hero-content-column {
	max-width: 680px;
}

/* Titular Principal H1 */
.hero-main-title {
	font-family: var(--font-heading);
	font-size: 3.25rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.04em;
	color: #ffffff;
	text-transform: uppercase;
	text-shadow: 0 4px 24px rgba(0, 0, 0, 0.6);
	margin-bottom: 1.25rem;
}

/* Línea de Acento Dorado */
.hero-gold-accent-line {
	width: 60px;
	height: 3px;
	background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
	margin-bottom: 1.5rem;
	border-radius: 2px;
}

/* Subtítulo Descriptivo */
.hero-main-description {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--color-text-muted);
	font-style: italic;
	margin-bottom: 1.75rem;
	max-width: 580px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Enlace CTA */
.hero-cta-wrap {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1.25rem;
	margin-bottom: 2.25rem;
}

.hero-cta-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
	border: 1px solid var(--color-brand-sand);
	color: #ffffff;
	padding: 0.85rem 1.85rem;
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	box-shadow: 0 6px 20px rgba(16, 88, 75, 0.45);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.hero-cta-btn-primary:hover {
	background: linear-gradient(135deg, var(--color-brand-secondary) 0%, #24826e 100%);
	border-color: #ffffff;
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(16, 88, 75, 0.6);
}

.hero-cta-btn-primary .icon-hero-arrow {
	width: 16px;
	height: 16px;
	color: var(--color-brand-sand);
	transition: transform 0.3s ease;
}

.hero-cta-btn-primary:hover .icon-hero-arrow {
	transform: translateX(4px);
}

.hero-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	color: var(--color-brand-cream);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	transition: var(--transition-smooth);
}

.hero-cta-link:hover {
	color: var(--color-brand-sand);
}

/* --- 4.1 Barra Flotante de Búsqueda de Destinos --- */
.hero-search-wrapper {
	margin-bottom: 1rem;
	max-width: 580px;
}

.hero-search-form {
	display: flex;
	align-items: stretch;
	background: rgba(18, 26, 36, 0.65);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
	transition: var(--transition-smooth);
}

.hero-search-form:focus-within {
	border-color: var(--color-gold);
	box-shadow: 0 16px 40px rgba(212, 163, 75, 0.2);
}

.search-input-group {
	display: flex;
	align-items: center;
	flex: 1;
	padding: 0 1rem;
}

.search-icon-box {
	display: flex;
	align-items: center;
	color: var(--color-gold);
	margin-right: 0.75rem;
}

.search-pin-icon {
	width: 18px;
	height: 18px;
}

.search-destination-input {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	color: #ffffff;
	font-size: 0.9375rem;
	padding: 0.9rem 0;
}

.search-destination-input::placeholder {
	color: var(--color-text-dim);
	font-weight: 400;
}

.search-submit-btn {
	background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
	color: #ffffff;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0 2rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
}

.search-submit-btn:hover {
	background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
	box-shadow: 0 0 20px rgba(212, 163, 75, 0.4);
}

/* --- 4.2 Fila de Premios (Awards Badges) --- */
.hero-awards-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2.25rem;
}

.award-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0.5rem;
}

.award-badge-icon {
	width: 48px;
	height: 48px;
	color: var(--color-gold);
	transition: transform 0.3s ease;
}

.award-item:hover .award-badge-icon {
	transform: translateY(-4px) scale(1.05);
}

.award-svg {
	width: 100%;
	height: 100%;
}

.award-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.award-name {
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: #ffffff;
	text-transform: uppercase;
}

.award-sub {
	font-size: 0.5625rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--color-gold-light);
	text-transform: uppercase;
}

/* ==========================================================================
   5. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1100px) {
	.luxury-nav-menu {
		gap: 0.85rem;
	}
	.luxury-nav-menu > .menu-item > a {
		font-size: 0.75rem;
	}
	.top-bar-left {
		gap: 1rem;
	}
	.top-schedule {
		display: none;
	}
}

@media (max-width: 992px) {
	.header-top-bar {
		padding: 0.75rem 0;
	}

	.top-bar-container {
		grid-template-columns: auto 1fr auto;
		gap: 1.25rem;
		align-items: center;
	}

	.top-bar-right {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 0.85rem;
	}

	/* Sticky en Tablet y Móvil: La barra superior acompaña el scroll */
	.luxury-header.is-sticky .header-top-bar {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9990;
		background: rgba(27, 67, 50, 0.96) !important;
		backdrop-filter: blur(14px);
		-webkit-backdrop-filter: blur(14px);
		border-bottom: 1px solid rgba(237, 232, 208, 0.22);
		box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
		padding: 0.5rem 0;
	}

	/* La barra horizontal inferior se oculta visualmente en tablet/móvil sin bloquear a sus hijos fijos */
	.header-nav-bar {
		padding: 0 !important;
		margin: 0 !important;
		border: none !important;
		background: transparent !important;
		height: 0 !important;
		min-height: 0 !important;
		line-height: 0 !important;
		box-shadow: none !important;
	}

	.header-nav-bar > .nav-bar-container {
		padding: 0 !important;
		margin: 0 !important;
		max-width: 100% !important;
	}

	.header-nav-bar .luxury-navigation {
		padding: 0 !important;
		margin: 0 !important;
	}

	/* Mostrar el botón toggle en la barra superior al costado de Contáctenos */
	.header-menu-toggle {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		gap: 0.5rem;
		background: rgba(16, 88, 75, 0.6);
		border: 1px solid rgba(237, 232, 208, 0.4);
		border-radius: 6px;
		padding: 0.45rem 0.95rem;
		color: var(--color-brand-cream);
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		cursor: pointer;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		margin-left: 0.35rem;
	}

	.header-menu-toggle:hover {
		background: var(--color-brand-primary);
		border-color: var(--color-brand-sand);
		color: #ffffff;
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(16, 88, 75, 0.5);
	}

	/* Cajón Off-Canvas Deslizante de Lujo para Tablet y Móvil */
	.primary-menu-container {
		display: flex !important;
		flex-direction: column !important;
		position: fixed !important;
		top: 0 !important;
		right: 0 !important;
		width: 100% !important;
		max-width: 380px !important;
		height: 100vh !important;
		background: linear-gradient(180deg, #1B4332 0%, #112d22 100%) !important;
		border-left: 1px solid rgba(237, 232, 208, 0.25) !important;
		box-shadow: -15px 0 45px rgba(0, 0, 0, 0.85) !important;
		z-index: 99999 !important;
		padding: 0 !important;
		overflow: hidden !important;
		transform: translateX(105%) !important;
		transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1) !important;
		visibility: hidden !important;
		pointer-events: none !important;
	}

	.primary-menu-container.is-active {
		transform: translateX(0) !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}

	.mobile-drawer-header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 1.25rem 1.5rem;
		border-bottom: 1px solid rgba(237, 232, 208, 0.15);
		background: rgba(7, 21, 18, 0.85);
	}

	.drawer-logo-img {
		max-height: 42px;
		width: auto;
	}

	.mobile-drawer-close-btn {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(237, 232, 208, 0.25);
		color: var(--color-brand-sand);
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.3s ease;
	}

	.mobile-drawer-close-btn:hover {
		background: var(--color-brand-primary);
		color: #ffffff;
		border-color: var(--color-brand-sand);
		transform: rotate(90deg);
	}

	.icon-drawer-close {
		width: 16px;
		height: 16px;
	}

	.mobile-drawer-body {
		flex: 1;
		overflow-y: auto;
		padding: 1.25rem 1.5rem;
	}

	.luxury-nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
	}

	.luxury-nav-menu > .menu-item {
		border-bottom: 1px solid rgba(237, 232, 208, 0.12);
		width: 100%;
	}

	.luxury-nav-menu > .menu-item:last-child {
		border-bottom: none;
	}

	.luxury-nav-menu > .menu-item > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.95rem 0.25rem;
		font-size: 0.875rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		color: var(--color-brand-cream);
		text-transform: uppercase;
	}

	.luxury-nav-menu > .menu-item > a:hover {
		color: var(--color-brand-sand);
	}

	.menu-separator {
		display: none;
	}

	/* Submenús y Mega Menú CERRADOS por defecto en móvil */
	.luxury-nav-menu li .sub-menu,
	.luxury-nav-menu li .mega-menu-dropdown {
		display: none !important;
		position: static !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		opacity: 0 !important;
		visibility: hidden !important;
		pointer-events: none !important;
		max-height: 0 !important;
		overflow: hidden !important;
		margin: 0 !important;
		padding: 0 !important;
		border: none !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	/* Submenús y Mega Menú ABIERTOS al hacer clic en el item padre */
	.luxury-nav-menu li.is-mobile-open > .sub-menu,
	.luxury-nav-menu li.is-mobile-open > .mega-menu-dropdown,
	.luxury-nav-menu li.is-mobile-open .mega-menu-dropdown {
		display: block !important;
		position: static !important;
		top: auto !important;
		left: auto !important;
		transform: none !important;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
		max-height: none !important;
		overflow: visible !important;
		margin: 0.75rem 0 1.25rem !important;
		padding: 1.25rem !important;
		background: rgba(16, 88, 75, 0.45) !important;
		border: 1px solid rgba(237, 232, 208, 0.25) !important;
		border-radius: 8px !important;
		box-shadow: none !important;
		width: 100% !important;
		max-width: 100% !important;
	}

	.luxury-nav-menu > li > a {
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0.95rem 0.25rem;
		font-size: 0.875rem;
		font-weight: 700;
		letter-spacing: 0.08em;
		color: var(--color-brand-cream);
		text-transform: uppercase;
	}

	.luxury-nav-menu > li > a .dropdown-arrow-icon {
		transition: transform 0.3s ease;
		width: 16px;
		height: 16px;
		color: var(--color-brand-sand);
		flex-shrink: 0;
	}

	.luxury-nav-menu li.is-mobile-open > a .dropdown-arrow-icon,
	.luxury-nav-menu li.is-mobile-open .dropdown-arrow-icon {
		transform: rotate(180deg) !important;
		color: #ffffff !important;
	}

	.luxury-nav-menu .sub-menu {
		padding: 0.5rem 0.75rem !important;
	}

	.luxury-nav-menu .sub-menu li {
		border-bottom: 1px solid rgba(237, 232, 208, 0.12);
	}

	.luxury-nav-menu .sub-menu li:last-child {
		border-bottom: none;
	}

	.luxury-nav-menu .sub-menu li a {
		display: block;
		padding: 0.95rem 0.75rem;
		font-size: 0.875rem;
		line-height: 1.5;
		color: var(--color-brand-cream);
		transition: all 0.25s ease;
		border-radius: 4px;
	}

	.luxury-nav-menu .sub-menu li a:hover {
		color: var(--color-brand-sand);
		background: rgba(255, 255, 255, 0.05);
		padding-left: 1.05rem;
	}

	/* Estilos limpios y espaciados para el Mega Menú dentro del Drawer Móvil */
	.mega-menu-inner,
	.mega-menu-inner.container {
		width: 100% !important;
		max-width: 100% !important;
		padding: 0.25rem !important;
		margin: 0 !important;
	}

	.mega-menu-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 1.5rem !important;
		width: 100% !important;
	}

	.mega-menu-col-image {
		display: none !important;
	}

	.mega-menu-col-links .mega-heading-uppercase,
	.mega-menu-col-links .mega-col-heading {
		font-size: 0.75rem;
		letter-spacing: 0.14em;
		color: var(--color-brand-sand);
		margin: 0 0 1.25rem;
		font-weight: 700;
		text-transform: uppercase;
		display: block;
	}

	.mega-col-links-list {
		display: flex !important;
		flex-direction: column !important;
		gap: 1rem !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.mega-link-item {
		margin-bottom: 0.25rem;
		list-style: none;
		border-bottom: 1px solid rgba(237, 232, 208, 0.08);
		padding-bottom: 0.75rem;
	}

	.mega-link-item:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.mega-tour-link {
		font-size: 0.875rem;
		line-height: 1.55;
		color: var(--color-brand-cream);
		display: inline-flex;
		align-items: flex-start;
		gap: 0.75rem;
		text-decoration: none;
		padding: 0.25rem 0;
	}

	.mega-tour-link .icon-mega-pin {
		margin-top: 3px;
	}

	.mega-col-divider {
		width: 100%;
		height: 1px;
		background: rgba(237, 232, 208, 0.18);
		margin: 1.5rem 0 1.25rem;
	}

	.mega-col-cta {
		display: block;
		font-size: 0.75rem;
		font-weight: 700;
		color: var(--color-brand-sand);
		letter-spacing: 0.1em;
		text-decoration: none;
		margin: 0 0 1.25rem;
		padding: 0.35rem 0;
	}

	.mega-menu-col-text {
		border-top: 1px solid rgba(237, 232, 208, 0.18);
		padding-top: 1.25rem;
		margin-top: 0.5rem;
	}

	.mega-text-title {
		font-family: var(--font-heading);
		font-size: 1.35rem;
		font-weight: 700;
		color: var(--color-brand-cream);
		line-height: 1.25;
		margin: 0 0 0.75rem;
	}

	.mega-text-paragraph {
		font-size: 0.8125rem;
		line-height: 1.65;
		color: rgba(244, 240, 229, 0.8);
	}

	.mobile-drawer-footer {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		padding: 1.25rem 1.5rem;
		border-top: 1px solid rgba(237, 232, 208, 0.15);
		background: rgba(7, 21, 18, 0.95);
	}

	.drawer-contact-info {
		display: flex;
		flex-direction: column;
		gap: 0.5rem;
	}

	.drawer-contact-item {
		display: inline-flex;
		align-items: center;
		gap: 0.6rem;
		font-size: 0.8125rem;
		color: var(--color-brand-sand);
		text-decoration: none;
	}

	.drawer-contact-item .icon {
		width: 15px;
		height: 15px;
		color: var(--color-brand-sand);
	}

	.drawer-cta-btn {
		background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
		border: 1px solid var(--color-brand-sand);
		border-radius: 6px;
		padding: 0.75rem;
		text-align: center;
		color: #ffffff;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.14em;
		text-transform: uppercase;
		text-decoration: none;
		transition: all 0.3s ease;
		box-shadow: 0 4px 15px rgba(16, 88, 75, 0.4);
	}

	.drawer-cta-btn:hover {
		background: linear-gradient(135deg, var(--color-brand-secondary) 0%, #24826e 100%);
		color: #ffffff;
		transform: translateY(-2px);
	}

	.hero-main-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.top-bar-left {
		display: none;
	}

	.top-bar-container {
		grid-template-columns: 1fr auto;
		justify-content: space-between;
	}

	.brand-name {
		font-size: 1.2rem;
	}

	.luxury-hero-banner {
		padding-top: 140px;
		min-height: auto;
		padding-bottom: 40px;
	}

	.hero-main-title {
		font-size: 2rem;
	}

	.hero-search-form {
		flex-direction: column;
	}

	.search-submit-btn {
		padding: 0.85rem;
		width: 100%;
	}
}

@media (max-width: 580px) {
	.top-contact-btn span {
		display: none;
	}

	.top-contact-btn {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		padding: 0.45rem 0.65rem;
		background: rgba(255, 255, 255, 0.08);
		border: 1px solid rgba(237, 232, 208, 0.35);
		border-radius: 6px;
	}

	.top-contact-btn .icon,
	.top-contact-btn svg {
		color: var(--color-brand-sand);
		stroke: var(--color-brand-sand);
		width: 17px;
		height: 17px;
	}

	.lang-btn {
		padding: 0.45rem 0.65rem;
		border: 1px solid rgba(237, 232, 208, 0.35);
	}

	.lang-btn .lang-current {
		display: none;
	}

	.top-bar-right {
		gap: 0.5rem;
	}

	.header-menu-toggle {
		padding: 0.45rem 0.85rem;
		font-size: 0.6875rem;
	}
}

/* ==========================================================================
   6. SECCIÓN CATEGORÍAS DE EXPERIENCIAS ANDINAS (HOME CATEGORIES)
   ========================================================================== */
.section-home-categories {
	background-color: var(--color-brand-cream);
	padding: 6rem 0 6.5rem;
	position: relative;
	z-index: 10;
}

.categories-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 3.75rem;
}

.categories-overline {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-brand-secondary);
	display: block;
	margin-bottom: 0.85rem;
}

.categories-title {
	font-family: var(--font-heading);
	font-size: 3.25rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1.15;
	margin-bottom: 1.25rem;
	letter-spacing: 0.01em;
}

.categories-subtitle {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #3b504b;
	font-weight: 400;
	max-width: 740px;
	margin: 0 auto;
}

/* Grilla de 4 Tarjetas */
.categories-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
}

.category-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: #121a24;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.category-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.category-card-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.category-card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4;
	min-height: 380px;
	overflow: hidden;
}

.category-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-img {
	transform: scale(1.08);
}

.category-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(15, 20, 30, 0.92) 0%,
		rgba(15, 20, 30, 0.50) 35%,
		rgba(15, 20, 30, 0.10) 70%,
		transparent 100%
	);
	transition: opacity 0.4s ease;
}

.category-card:hover .category-gradient-overlay {
	background: linear-gradient(
		to top,
		rgba(15, 20, 30, 0.96) 0%,
		rgba(15, 20, 30, 0.60) 45%,
		rgba(15, 20, 30, 0.15) 75%,
		transparent 100%
	);
}

.category-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.75rem 1.25rem;
	text-align: center;
	z-index: 2;
}

.category-card-title {
	font-family: var(--font-body);
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.35;
	margin: 0;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
	letter-spacing: 0.01em;
}

/* Responsivo para Categorías */
@media (max-width: 1024px) {
	.categories-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.categories-title {
		font-size: 2.75rem;
	}
}

@media (max-width: 640px) {
	.section-home-categories {
		padding: 4rem 0;
	}

	.categories-title {
		font-size: 2.125rem;
	}

	.categories-subtitle {
		font-size: 0.9375rem;
	}

	.categories-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin: 0 auto;
	}

	.category-card-media {
		aspect-ratio: 4 / 3;
		min-height: 280px;
	}
}

/* ==========================================================================
   7. SECCIÓN TOURS DESTACADOS (FEATURED TOURS) - FONDO PASTEL ARENA / CHAMPAGNE
   ========================================================================== */
.section-featured-tours {
	background-color: var(--color-brand-sand);
	background-image: linear-gradient(180deg, #EDE8D0 0%, #E5DFCA 100%);
	padding: 6.5rem 0 7rem;
	position: relative;
	border-top: 1px solid rgba(16, 88, 75, 0.08);
	border-bottom: 1px solid rgba(16, 88, 75, 0.08);
}

.section-header {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 3.75rem;
}

.section-overline {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-brand-secondary);
	display: block;
	margin-bottom: 0.85rem;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 3.25rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1.15;
	letter-spacing: 0.02em;
	margin-bottom: 1.25rem;
	text-shadow: none;
}

.section-gold-divider {
	width: 60px;
	height: 3px;
	background: var(--color-brand-secondary);
	margin: 0 auto 1.5rem;
	border-radius: 2px;
}

.section-subtitle {
	font-family: var(--font-body);
	font-size: 1.0625rem;
	line-height: 1.7;
	color: #3b504b;
	font-weight: 400;
	max-width: 680px;
	margin: 0 auto;
}

/* Grilla de Tours */
.tours-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.25rem;
	margin-bottom: 1.5rem;
}

/* Tarjeta Individual de Tour Inmersiva */
.tour-card {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	min-height: 480px;
	background-color: var(--color-dark-surface);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.tour-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 163, 75, 0.12);
}

.tour-card-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
	color: #ffffff;
}

/* Imagen de Fondo Completa */
.tour-card-bg-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	overflow: hidden;
	background-color: #080d14;
}

.tour-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-card-img {
	transform: scale(1.06);
}

.tour-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: #061510;
	position: relative;
	overflow: hidden;
}

.brand-placeholder-sun {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #106B5A;
	z-index: 2;
	transform: translateY(-22px);
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .brand-placeholder-sun {
	transform: translateY(-22px) scale(1.08) rotate(8deg);
}

.card-sun-symbol {
	width: 150px;
	height: 150px;
	color: #127260;
}

.brand-placeholder-watermark {
	position: absolute;
	bottom: 25%;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 3.25rem;
	font-weight: 700;
	letter-spacing: 0.24em;
	color: rgba(255, 255, 255, 0.04);
	text-transform: uppercase;
	pointer-events: none;
	user-select: none;
	z-index: 1;
}

/* Degradado inferior por defecto para legibilidad del texto */
.tour-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.92) 0%,
		rgba(0, 0, 0, 0.55) 28%,
		rgba(0, 0, 0, 0.1) 60%,
		transparent 100%
	);
	transition: opacity 0.4s ease;
	pointer-events: none;
}

/* Capa oscura sutil activada al pasar el cursor (Hover) */
.tour-card-hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.tour-card:hover .tour-card-hover-overlay {
	opacity: 1;
}

/* Badge Superior Derecho */
.tour-card-badge-wrap {
	position: absolute;
	top: 1.15rem;
	right: 1.15rem;
	z-index: 10;
}

.tour-card-badge {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #ffffff;
	padding: 0.38rem 0.88rem;
	border-radius: 4px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
	text-transform: none;
	line-height: 1.2;
}

.tour-badge-dark {
	background-color: rgba(16, 88, 75, 0.92);
	border: 1px solid rgba(237, 232, 208, 0.3);
	color: #ffffff;
}

.tour-badge-gold {
	background-color: rgba(28, 107, 90, 0.92);
	border: 1px solid rgba(237, 232, 208, 0.3);
	color: #ffffff;
}

/* Contenido Inferior Superpuesto */
.tour-card-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.85rem 1.65rem;
	z-index: 10;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: left;
	transition: transform 0.35s ease;
}

/* Título */
.tour-card-title {
	font-family: var(--font-heading);
	font-size: 1.45rem;
	font-weight: 600;
	line-height: 1.25;
	color: #ffffff;
	margin: 0;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
	letter-spacing: 0.01em;
}

/* Rating con estrellas doradas y reseñas (Efecto Hover) */
.tour-card-rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0;
	opacity: 0;
	max-height: 0;
	transform: translateY(8px);
	overflow: hidden;
	transition: opacity 0.35s ease, max-height 0.35s ease, transform 0.35s ease, margin-top 0.35s ease;
}

.tour-card:hover .tour-card-rating {
	opacity: 1;
	max-height: 35px;
	margin-top: 0.65rem;
	transform: translateY(0);
}

.rating-stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	color: #d4a34b;
}

.rating-stars .star-icon {
	width: 13px;
	height: 13px;
	fill: #d4a34b;
	color: #d4a34b;
}

.rating-reviews {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 500;
	color: #cbd5e1;
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

/* Pie de Sección (Botón Ver Todos) */
.section-footer {
	text-align: center;
	margin-top: 3.75rem;
}

.btn-all-tours {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2.75rem;
	border-radius: 6px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ffffff;
	border: 1.5px solid var(--color-brand-primary);
	background: var(--color-brand-primary);
	box-shadow: 0 6px 20px rgba(16, 88, 75, 0.25);
	transition: var(--transition-smooth);
	text-decoration: none;
}

.btn-all-tours:hover {
	background: var(--color-brand-secondary);
	border-color: var(--color-brand-secondary);
	color: #ffffff;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(16, 88, 75, 0.4);
}

.icon-btn-arrow {
	width: 16px;
	height: 16px;
	color: currentColor;
	transition: transform 0.3s ease;
}

.btn-all-tours:hover .icon-btn-arrow {
	transform: translateX(5px);
}

/* Responsivo Tours */
@media (max-width: 1100px) {
	.tours-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.75rem;
	}
}

@media (max-width: 640px) {
	.section-featured-tours {
		padding: 4.5rem 0;
	}

	.tours-grid {
		grid-template-columns: 1fr;
		max-width: 420px;
		margin: 0 auto 1.5rem;
	}

	.section-title {
		font-size: 2.125rem;
	}

	.section-subtitle {
		font-size: 0.9375rem;
	}
}

/* ==========================================================================
   8. SECCIÓN BANNER DE VIDEO CINEMATOGRÁFICO (VIDEO BANNER)
   ========================================================================== */
.section-video-banner {
	position: relative;
	width: 100%;
	min-height: 520px;
	display: flex;
	align-items: center;
	padding: 6rem 0;
	overflow: hidden;
}

.video-banner-bg-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.video-banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.video-banner-gradient-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		rgba(10, 15, 24, 0.88) 0%,
		rgba(10, 15, 24, 0.65) 45%,
		rgba(10, 15, 24, 0.35) 100%
	);
}

.video-banner-container {
	position: relative;
	z-index: 10;
}

.video-banner-content {
	max-width: 650px;
}

.video-banner-overline {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-gold);
	display: block;
	margin-bottom: 1.25rem;
}

.video-banner-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	letter-spacing: 0.01em;
	margin-bottom: 2.25rem;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

/* Botón de Reproducción con Efecto de Onda */
.video-play-action {
	display: flex;
	align-items: center;
}

.video-play-trigger-btn {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	cursor: pointer;
	background: none;
	border: none;
	color: #ffffff;
	padding: 0.5rem 0;
	transition: var(--transition-smooth);
}

.play-icon-circle {
	position: relative;
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b111a;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
	transition: var(--transition-smooth);
}

.play-triangle-svg {
	width: 18px;
	height: 18px;
	margin-left: 3px;
	color: #0b111a;
	transition: transform 0.3s ease;
}

.play-pulse-ring {
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border: 2px solid rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
	0% {
		transform: scale(0.95);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.2);
		opacity: 0;
	}
	100% {
		transform: scale(0.95);
		opacity: 0;
	}
}

.play-btn-label {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #ffffff;
	transition: color 0.3s ease;
}

.video-play-trigger-btn:hover .play-icon-circle {
	background: var(--color-gold);
	transform: scale(1.08);
	box-shadow: 0 0 30px rgba(212, 163, 75, 0.6);
}

.video-play-trigger-btn:hover .play-btn-label {
	color: var(--color-gold-light);
}

/* Modal Lightbox para Video de YouTube */
.video-modal-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal-lightbox.is-open {
	opacity: 1;
	visibility: visible;
}

.video-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(5, 10, 16, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.video-modal-dialog {
	position: relative;
	width: 90%;
	max-width: 1000px;
	z-index: 10;
	transform: scale(0.92);
	transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.video-modal-lightbox.is-open .video-modal-dialog {
	transform: scale(1);
}

.video-modal-close-btn {
	position: absolute;
	top: -45px;
	right: 0;
	background: none;
	border: none;
	color: #ffffff;
	cursor: pointer;
	padding: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.3s ease, transform 0.3s ease;
}

.video-modal-close-btn:hover {
	color: var(--color-gold);
	transform: rotate(90deg);
}

.video-modal-close-btn .icon {
	width: 32px;
	height: 32px;
}

.video-iframe-responsive-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%; /* Ratio 16:9 */
	height: 0;
	overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: #000000;
}

.video-iframe-responsive-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 992px) {
	.video-banner-title {
		font-size: 2.75rem;
	}
}

@media (max-width: 768px) {
	.section-video-banner {
		min-height: 420px;
		padding: 4.5rem 0;
	}

	.video-banner-title {
		font-size: 2.125rem;
		margin-bottom: 1.75rem;
	}

	.play-icon-circle {
		width: 48px;
		height: 48px;
	}

	.play-triangle-svg {
		width: 15px;
		height: 15px;
	}
}

/* ==========================================================================
   9. SECCIÓN DESTINOS POPULARES (LUGARES EMBLEMÁTICOS) - FONDO PASTEL CREMA
   ========================================================================== */
.section-destinations {
	background-color: var(--color-brand-cream);
	background-image: linear-gradient(180deg, #F4F0E5 0%, #ECE6D8 100%);
	padding: 5.5rem 0 6rem;
	position: relative;
	border-bottom: 1px solid rgba(27, 67, 50, 0.08);
}

.section-destinations .section-overline {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-brand-secondary);
	text-transform: uppercase;
}

.section-destinations .section-title {
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	text-shadow: none;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.section-destinations .section-gold-divider {
	width: 48px;
	height: 2px;
	background: var(--color-brand-secondary);
	margin: 0.85rem auto 1.25rem;
}

.section-destinations .section-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: #3b504b;
	max-width: 680px;
	margin: 0 auto 3rem;
}

.destinations-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.destination-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	background-color: #121a24;
	box-shadow: 0 12px 30px rgba(27, 67, 50, 0.12);
	border: 1px solid rgba(237, 232, 208, 0.4);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.destination-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(27, 67, 50, 0.22);
}

.destination-link {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.destination-media {
	position: relative;
	width: 100%;
	aspect-ratio: 3 / 4.1;
	min-height: 400px;
	overflow: hidden;
}

.destination-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.destination-card:hover .destination-img {
	transform: scale(1.08);
}

.destination-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		to top,
		rgba(7, 18, 14, 0.95) 0%,
		rgba(7, 18, 14, 0.5) 45%,
		rgba(7, 18, 14, 0.08) 75%,
		transparent 100%
	);
	transition: opacity 0.4s ease;
}

.destination-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.75rem 1.4rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.destination-badge {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	color: var(--color-brand-sand);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin-bottom: 0.35rem;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.destination-title {
	font-family: var(--font-heading);
	font-size: 1.6rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.2;
	margin-bottom: 0.65rem;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
	transition: color 0.3s ease;
}

.destination-card:hover .destination-title {
	color: var(--color-brand-sand);
}

.destination-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-brand-sand);
	opacity: 0.9;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
	transition: var(--transition-smooth);
}

.icon-dest-arrow {
	width: 13px;
	height: 13px;
	color: var(--color-brand-sand);
	transition: transform 0.3s ease;
}

.destination-card:hover .destination-cta {
	opacity: 1;
	transform: translateX(4px);
	color: #ffffff;
}

.destination-card:hover .icon-dest-arrow {
	transform: translateX(3px);
	color: #ffffff;
}

@media (max-width: 1024px) {
	.destinations-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 640px) {
	.section-destinations {
		padding: 4.5rem 0;
	}

	.destinations-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin: 0 auto;
	}

	.destination-media {
		aspect-ratio: 4 / 3;
		min-height: 280px;
	}
}

/* ==========================================================================
   10. SECCIÓN PREGUNTAS FRECUENTES (FAQ ACORDEONES - 2 COLUMNAS)
   ========================================================================== */
.section-faq {
	background-color: var(--color-brand-cream);
	background-image: linear-gradient(180deg, #F4F0E5 0%, #EDE8D0 100%);
	padding: 6rem 0 6.5rem;
	position: relative;
	border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.section-faq .section-overline {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-brand-secondary);
	text-transform: uppercase;
}

.section-faq .section-title {
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	text-shadow: none;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.section-faq .section-gold-divider {
	width: 48px;
	height: 2px;
	background: var(--color-brand-secondary);
	margin: 0.85rem auto 1.25rem;
}

.section-faq .section-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: #3b504b;
	max-width: 680px;
	margin: 0 auto 3.25rem;
}

.faq-grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	max-width: 1200px;
	margin: 0 auto;
}

.faq-column {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item {
	background: #ffffff;
	border: 1px solid #D6CEBE;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(27, 67, 50, 0.04);
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
	border-color: var(--color-brand-secondary);
	box-shadow: 0 8px 22px rgba(27, 67, 50, 0.09);
	transform: translateY(-2px);
}

.faq-item.is-active {
	border-color: var(--color-brand-primary);
	box-shadow: 0 8px 24px rgba(27, 67, 50, 0.12);
}

.faq-question-btn {
	width: 100%;
	min-height: 68px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.15rem 1.4rem;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	outline: none;
	transition: background-color 0.25s ease;
}

.faq-question-btn:focus-visible {
	outline: 2px solid var(--color-brand-primary);
	outline-offset: -2px;
}

.faq-question-text {
	font-family: var(--font-body);
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1a2925;
	line-height: 1.45;
	transition: color 0.25s ease;
}

.faq-question-btn:hover .faq-question-text,
.faq-item.is-active .faq-question-text {
	color: var(--color-brand-primary);
}

.faq-icon-wrap {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(27, 67, 50, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-chevron-icon {
	width: 13px;
	height: 13px;
	stroke: var(--color-brand-primary);
	stroke-width: 2.5px;
	color: var(--color-brand-primary);
	transition: all 0.35s ease;
}

.faq-item.is-active .faq-icon-wrap {
	background: var(--color-brand-primary);
	transform: rotate(180deg);
}

.faq-item.is-active .faq-chevron-icon {
	stroke: #ffffff;
	color: #ffffff;
}

.faq-answer-panel {
	display: none;
	animation: faqFadeSlide 0.3s ease forwards;
}

.faq-answer-panel:not([hidden]) {
	display: block;
}

@keyframes faqFadeSlide {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.faq-answer-inner {
	padding: 0 1.4rem 1.35rem;
	border-top: 1px solid rgba(214, 206, 190, 0.5);
	padding-top: 1rem;
	margin-top: -0.15rem;
}

.faq-answer-inner p {
	font-size: 0.8875rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0;
}

/* Contenedor CTA Centrado y Elegante */
.faq-cta-footer {
	margin-top: 3.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2.25rem 2rem;
	background: rgba(255, 255, 255, 0.65);
	border: 1px dashed rgba(45, 106, 79, 0.35);
	border-radius: 16px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.faq-cta-prompt {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	margin: 0 0 1.25rem;
	text-align: center;
	line-height: 1.3;
}

.faq-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
	color: #ffffff;
	border-radius: 8px;
	padding: 1.05rem 2.25rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(27, 67, 50, 0.25);
	transition: all 0.3s ease;
}

.faq-cta-btn:hover {
	background: linear-gradient(135deg, var(--color-brand-secondary) 0%, #15382a 100%);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(27, 67, 50, 0.38);
}

.faq-cta-btn .icon-btn-arrow {
	width: 14px;
	height: 14px;
	transition: transform 0.3s ease;
}

.faq-cta-btn:hover .icon-btn-arrow {
	transform: translateX(4px);
}

@media (max-width: 992px) {
	.section-faq {
		padding: 4.5rem 0 5rem;
	}

	.faq-grid-2col {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.section-faq .section-title {
		font-size: 2.25rem;
	}
}

/* ==========================================================================
   11. SECCIÓN VALORES DE LA MARCA (BRAND VALUES - 5 PILARES DE CONFIANZA)
   ========================================================================== */
.section-brand-values {
	background-color: #ffffff;
	background-image: none;
	padding: 5.5rem 0 6rem;
	position: relative;
	border-top: 1px solid rgba(27, 67, 50, 0.07);
	border-bottom: 1px solid rgba(27, 67, 50, 0.07);
}

.section-brand-values .section-overline {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-brand-secondary);
	text-transform: uppercase;
}

.section-brand-values .section-title {
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	text-shadow: none;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.section-brand-values .section-gold-divider {
	width: 48px;
	height: 2px;
	background: var(--color-brand-secondary);
	margin: 0.85rem auto 3.5rem;
}

.brand-values-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
	max-width: 1240px;
	margin: 0 auto;
}

.value-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 1rem 0.5rem;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-item:hover {
	transform: translateY(-4px);
}

.value-icon-wrap {
	width: 50px;
	height: 50px;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #BFA882;
	transition: all 0.3s ease;
}

.icon-value-svg {
	width: 34px;
	height: 34px;
	stroke: #BFA882;
	stroke-width: 1.15px;
	fill: none;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.3s ease;
}

.value-item:hover .icon-value-svg {
	transform: scale(1.12);
	stroke: var(--color-brand-primary);
}

.value-title {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-primary);
	margin-bottom: 0.65rem;
	line-height: 1.35;
	transition: color 0.3s ease;
}

.value-desc {
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #4A5854;
	margin: 0;
	max-width: 220px;
}

@media (max-width: 1024px) {
	.brand-values-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.25rem 1.25rem;
	}
}

@media (max-width: 640px) {
	.section-brand-values {
		padding: 4.5rem 0;
	}

	.brand-values-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 320px;
		margin: 0 auto;
	}

	.section-brand-values .section-title {
		font-size: 2.15rem;
	}
}

/* ==========================================================================
   12. SECCIÓN BLOG EN PORTADA (ARTÍCULOS & GUÍAS DE VIAJE)
   ========================================================================== */
.section-home-blog {
	background-color: #ffffff;
	padding: 6rem 0 6.5rem;
	position: relative;
	border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.section-home-blog .section-overline {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-brand-secondary);
	text-transform: uppercase;
}

.section-home-blog .section-title {
	font-family: var(--font-heading);
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	text-shadow: none;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.section-home-blog .section-gold-divider {
	width: 48px;
	height: 2px;
	background: var(--color-brand-secondary);
	margin: 0.85rem auto 1.25rem;
}

.section-home-blog .section-subtitle {
	font-size: 1rem;
	line-height: 1.6;
	color: #3b504b;
	max-width: 680px;
	margin: 0 auto 3.5rem;
}

.blog-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.blog-card {
	background: var(--color-brand-cream);
	background-image: linear-gradient(180deg, #FAF8F2 0%, #F4F0E5 100%);
	border: 1px solid #E2DCCE;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 16px rgba(27, 67, 50, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
	transform: translateY(-6px);
	border-color: var(--color-brand-secondary);
	box-shadow: 0 14px 32px rgba(27, 67, 50, 0.12);
}

.blog-card-media-link {
	display: block;
	overflow: hidden;
	text-decoration: none;
}

.blog-card-media {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #112d22;
}

.blog-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-card-img {
	transform: scale(1.08);
}

.blog-card-badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: rgba(27, 67, 50, 0.92);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: var(--color-brand-sand);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.blog-card-body {
	padding: 1.5rem 1.6rem 1.6rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: #6B7D77;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
}

.blog-meta-dot {
	color: #BFA882;
}

.blog-card-title {
	font-family: var(--font-heading);
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--color-brand-primary);
	margin-bottom: 0.75rem;
	margin-top: 0;
}

.blog-card-title a {
	color: var(--color-brand-primary);
	text-decoration: none;
	transition: color 0.25s ease;
}

.blog-card-title a:hover {
	color: var(--color-brand-secondary);
}

.blog-card-excerpt {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #4A5854;
	margin: 0 0 1.25rem;
	flex-grow: 1;
}

.blog-card-footer {
	border-top: 1px solid rgba(214, 206, 190, 0.6);
	padding-top: 1rem;
	margin-top: auto;
}

.blog-read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-brand-primary);
	text-decoration: none;
	transition: color 0.25s ease;
}

.blog-read-more-link:hover {
	color: var(--color-brand-secondary);
}

.icon-blog-arrow {
	width: 13px;
	height: 13px;
	stroke: var(--color-brand-primary);
	stroke-width: 2.2px;
	transition: transform 0.3s ease;
}

.blog-card:hover .icon-blog-arrow {
	transform: translateX(4px);
}

.blog-cta-footer {
	margin-top: 3.5rem;
}

@media (max-width: 992px) {
	.section-home-blog {
		padding: 4.5rem 0 5rem;
	}

	.blog-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}

	.section-home-blog .section-title {
		font-size: 2.25rem;
	}
}

@media (max-width: 640px) {
	.blog-posts-grid {
		grid-template-columns: 1fr;
		max-width: 380px;
		margin: 0 auto;
	}
}

/* ==========================================================================
   13. PLANTILLA INDIVIDUAL DE TOUR / PAQUETE DE LUJO (SINGLE TOUR VIEW)
   ========================================================================== */
.single-tour-hero {
	position: relative;
	width: 100%;
	min-height: 85vh;
	min-height: 720px;
	padding: 16.5rem 0 4.5rem;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
}

.single-tour-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.45) 0%,
		rgba(10, 24, 18, 0.12) 32%,
		rgba(15, 45, 33, 0.55) 68%,
		rgba(27, 67, 50, 0.94) 90%,
		#1B4332 100%
	);
	z-index: 1;
}

.single-tour-hero-container {
	position: relative;
	z-index: 10;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.single-tour-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #EDE8D0;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.single-tour-breadcrumbs a {
	color: #EDE8D0;
	text-decoration: none;
	transition: color 0.25s ease;
}

.single-tour-breadcrumbs a:hover {
	color: #ffffff;
}

.single-tour-breadcrumbs .breadcrumb-separator {
	opacity: 0.7;
	font-size: 0.65rem;
}

.single-tour-breadcrumbs .breadcrumb-current {
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.single-tour-main-title {
	font-family: var(--font-heading);
	font-size: 3.65rem;
	font-weight: 600;
	line-height: 1.15;
	color: #ffffff;
	margin: 0 0 2.25rem;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
	max-width: 800px;
	letter-spacing: 0.01em;
}

/* Barra de 4 Columnas de Atributos Clave (Minimal Seamless Strip) */
.tour-hero-meta-strip {
	display: flex;
	gap: 3.75rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
	padding-top: 1.6rem;
	background: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	box-shadow: none;
	border-radius: 0;
	max-width: 860px;
}

.meta-strip-col {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	border: none;
	padding: 0;
}

.meta-strip-label {
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #C2AF93;
}

.meta-strip-val {
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: 0.01em;
}

.meta-strip-val .pp-unit {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 400;
	color: #EDE8D0;
	margin-left: 2px;
}

/* Barra de Navegación Rápida Sticky (Luxury Sub-Nav) */
.tour-quick-nav {
	position: sticky;
	top: var(--tour-quick-nav-top, 55px);
	z-index: 80;
	background: #FAF8F2;
	background: linear-gradient(180deg, #FAF8F2 0%, #F4EFE6 100%);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-top: 2px solid #C8BD9F;
	border-bottom: 1px solid #D8D0BF;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09), 0 1px 3px rgba(0, 0, 0, 0.05);
	transition: top 0.2s ease, box-shadow 0.3s ease;
	width: 100%;
}

.tour-quick-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0 1.25rem;
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
}

.quick-nav-links {
	display: flex;
	gap: 2.2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.tour-quick-nav-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	flex-shrink: 0;
}

.btn-quicknav-airbnb-action {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: #FFFFFF;
	border: 1px solid #D6CEBE;
	color: #032B20;
	padding: 0.45rem 0.95rem;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.btn-quicknav-airbnb-action i {
	font-size: 1rem;
	line-height: 1;
}

.btn-quicknav-airbnb-action:hover {
	border-color: #032B20;
	background: #FAF7F2;
	color: #10584B;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(3, 43, 32, 0.08);
}

.btn-quicknav-airbnb-action.btn-airbnb-wishlist.is-saved {
	color: #D97706 !important;
	border-color: #F59E0B !important;
	background-color: #FFFBEB !important;
}

.quick-nav-links::-webkit-scrollbar {
	display: none;
}

.quick-link {
	font-size: 0.78125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #554C42;
	text-decoration: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	padding: 1.05rem 0.35rem;
	position: relative;
	transition: color 0.25s ease;
	flex-shrink: 0;
	cursor: pointer;
}

.quick-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: #032B20;
	border-radius: 3px 3px 0 0;
	transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.25s ease;
}

.quick-link:hover {
	color: #032B20;
}

.quick-link:hover::after {
	width: 100%;
	background: #8A7552;
}

.quick-link.active {
	color: #032B20;
}

.quick-link.active::after {
	width: 100%;
	background: #032B20;
}

@media (max-width: 991px) {
	.tour-quick-nav {
		top: var(--tour-quick-nav-top, 82px);
		border-top: 2px solid #C8BD9F;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	}
	.tour-quick-nav-container {
		gap: 1rem;
	}
	.quick-nav-links {
		gap: 1.5rem;
		padding: 0 0.25rem;
	}
	.quick-link {
		font-size: 0.72rem;
		letter-spacing: 0.1em;
		padding: 0.95rem 0.25rem;
	}
}

@media (max-width: 576px) {
	.tour-quick-nav {
		top: var(--tour-quick-nav-top, 78px);
	}
	.quick-nav-links {
		gap: 1.15rem;
	}
	.btn-quicknav-airbnb-action span {
		display: none;
	}
	.btn-quicknav-airbnb-action {
		padding: 0.45rem;
		width: 34px;
		height: 34px;
		justify-content: center;
	}
}

/* Cuerpo Principal del Tour: Distribución en 2 Columnas */
.single-tour-body-section {
	background-color: #ffffff;
	padding: 5.5rem 0 6.5rem;
}

.single-tour-layout-grid {
	display: grid;
	grid-template-columns: 1.85fr 1.15fr;
	gap: 3.5rem;
	align-items: start;
	max-width: 1240px;
	margin: 0 auto;
}

@media (max-width: 991px) {
	.single-tour-layout-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.single-tour-sidebar {
		display: none !important;
	}
}

/* Bloques de Secciones del Tour */
.tour-section-block {
	margin-bottom: 4rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid rgba(214, 206, 190, 0.45);
	scroll-margin-top: 130px;
}

.tour-section-block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.section-block-header {
	margin-bottom: 1.85rem;
}

.block-overline {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-brand-secondary);
	margin-bottom: 0.35rem;
}

.block-title {
	font-family: var(--font-heading);
	font-size: 2.35rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1.2;
	margin: 0 0 0.75rem;
}

.block-divider {
	width: 42px;
	height: 2px;
	background: var(--color-brand-secondary);
}

/* 2.1 Descripción General */
.lead-editorial-p {
	font-size: 1.125rem !important;
	font-weight: 500;
	line-height: 1.9 !important;
	color: #1B4332 !important;
	border-left: 3px solid var(--color-brand-secondary);
	padding-left: 1.25rem;
	margin-bottom: 1.75rem !important;
}

.editorial-prose p {
	font-size: 0.9375rem;
	line-height: 1.85;
	color: #3A4D48;
	margin-bottom: 1.5rem;
}

.editorial-prose p:last-child {
	margin-bottom: 0;
}

.tour-attractions-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 2rem;
}

.pill-item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: #FAF8F2;
	border: 1px solid #E2DCCE;
	border-radius: 20px;
	padding: 0.45rem 1.15rem;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #2D6A4F;
	letter-spacing: 0.02em;
	transition: all 0.25s ease;
}

.pill-item i {
	font-size: 0.95rem;
	color: #D4A373;
	transition: color 0.25s ease;
}

.pill-item:hover {
	background: var(--color-brand-primary);
	color: #ffffff;
	border-color: var(--color-brand-primary);
}

.pill-item:hover i {
	color: #ffffff;
}

/* 2.2 Itinerario Timeline V2 */
.itinerary-timeline-v2 {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	position: relative;
}

.itinerary-card-step {
	display: flex;
	gap: 1.5rem;
	background: #FAF8F2;
	border: 1px solid #E2DCCE;
	border-radius: 14px;
	padding: 1.5rem 1.75rem;
	transition: all 0.3s ease;
	position: relative;
}

.itinerary-card-step:hover {
	border-color: var(--color-brand-secondary);
	transform: translateX(6px);
	box-shadow: 0 8px 24px rgba(27, 67, 50, 0.06);
	background: #FFFFFF;
}

.step-badge-col {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 92px;
	padding: 0.65rem 0.75rem;
	background: #ffffff;
	border: 1px solid #E2DCCE;
	border-radius: 10px;
	text-align: center;
	flex-shrink: 0;
}

.itinerary-card-step:hover .step-badge-col {
	background: #FAF8F2;
	border-color: var(--color-brand-secondary);
}

.step-number {
	font-family: var(--font-heading);
	font-size: 1.65rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1;
	margin-bottom: 0.25rem;
}

.step-time-tag {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-brand-secondary);
	line-height: 1.2;
}

.step-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.step-headline {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	margin: 0 0 0.45rem;
}

.step-text {
	font-size: 0.8875rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0;
}

/* -------------------------------------------------------------------------- */
/* Acordeón de Itinerario Día por Día para Paquetes Turísticos               */
/* -------------------------------------------------------------------------- */
.itinerary-accordion-package {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.package-accordion-card {
	background: #FFFFFF;
	border: 1.5px solid #E5DFD3;
	border-radius: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.package-accordion-card:hover {
	border-color: #C8BD9F;
	box-shadow: 0 6px 20px rgba(3, 43, 32, 0.06);
}

.package-accordion-card.is-open {
	border-color: #032B20;
	box-shadow: 0 8px 24px rgba(3, 43, 32, 0.08);
}

.package-accordion-header {
	width: 100%;
	background: #FAF7F2;
	border: none;
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.25s ease;
	font-family: inherit;
}

.package-accordion-card.is-open .package-accordion-header {
	background: #F2ECE1;
	border-bottom: 1px solid #E2DCCE;
}

.package-accordion-header:hover {
	background: #F5EFE4;
}

.acc-day-info {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

.acc-day-badge {
	background: #032B20;
	color: #FFFFFF;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.35rem 0.75rem;
	border-radius: 6px;
	white-space: nowrap;
	flex-shrink: 0;
}

.package-accordion-card.is-open .acc-day-badge {
	background: #8A7552;
	color: #FFFFFF;
}

.acc-day-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 700;
	color: #032B20;
	margin: 0;
	line-height: 1.3;
}

.acc-toggle-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #FFFFFF;
	border: 1px solid #D8D0C0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #032B20;
	font-size: 1.15rem;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.package-accordion-card:hover .acc-toggle-icon {
	border-color: #032B20;
}

.package-accordion-card.is-open .acc-toggle-icon {
	background: #032B20;
	color: #FFFFFF;
	border-color: #032B20;
}

.acc-toggle-icon .icon-opened {
	display: none;
}

.package-accordion-card.is-open .acc-toggle-icon .icon-closed {
	display: none;
}

.package-accordion-card.is-open .acc-toggle-icon .icon-opened {
	display: block;
}

.package-accordion-content {
	background: #FFFFFF;
}

.package-accordion-content-inner {
	padding: 1.5rem 1.75rem 1.75rem;
}

.day-steps-timeline {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.day-step-entry {
	display: flex;
	gap: 1.25rem;
	position: relative;
}

.step-entry-marker {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 16px;
	flex-shrink: 0;
	padding-top: 4px;
}

.marker-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #8A7552;
	border: 2.5px solid #FAF7F2;
	box-shadow: 0 0 0 2px #8A7552;
	display: block;
}

.marker-line {
	width: 2px;
	background: #E5DFD3;
	flex: 1;
	margin-top: 6px;
	margin-bottom: -1rem;
	min-height: 24px;
}

.step-entry-details {
	flex: 1;
	min-width: 0;
}

.step-entry-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.45rem;
	flex-wrap: wrap;
}

.step-entry-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: #032B20;
	margin: 0;
}

.step-entry-location {
	font-size: 0.78rem;
	font-weight: 600;
	color: #8A7552;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.step-entry-desc {
	font-size: 0.8875rem;
	line-height: 1.6;
	color: #4A5854;
}

.step-entry-desc p {
	margin: 0 0 0.5rem;
}

.step-entry-desc p:last-child {
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.package-accordion-header {
		padding: 1rem 1.15rem;
	}
	.acc-day-title {
		font-size: 1rem;
	}
	.package-accordion-content-inner {
		padding: 1.25rem 1rem 1.25rem;
	}
}

/* 2.3 Inclusiones V2 */
.inclusions-grid-v2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.85rem;
}

.inclusion-card-v2 {
	border-radius: 14px;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.card-included {
	background: #F4F9F6;
	border: 1.5px solid #C3DFD3;
}

.card-excluded {
	background: #FAF7F5;
	border: 1.5px solid #EADBDA;
}

.inc-card-header {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.card-included .inc-header-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--color-brand-primary);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.card-excluded .inc-header-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #964d4d;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.inc-header-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
	stroke-width: 2.5px;
}

.inc-card-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0;
}

.card-included .inc-card-title {
	color: var(--color-brand-primary);
}

.card-excluded .inc-card-title {
	color: #7A3535;
}

.inc-checklist,
.inc-crosslist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.inc-checklist li,
.inc-crosslist li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 0.8875rem;
	line-height: 1.5;
	color: #3A4D48;
}

.card-included .inc-card-content-body ul,
.card-excluded .inc-card-content-body ul,
.inc-checklist,
.inc-crosslist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.card-included .inc-card-content-body ul li,
.card-excluded .inc-card-content-body ul li,
.inc-checklist li,
.inc-crosslist li {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
	font-size: 0.8875rem;
	line-height: 1.55;
	position: static;
	padding-left: 0;
	margin: 0;
}

.card-included .inc-card-content-body ul li::before,
.card-excluded .inc-card-content-body ul li::before,
.inc-checklist li::before,
.inc-crosslist li::before {
	display: none !important;
	content: none !important;
}

.inc-checklist li .inc-item-text {
	color: #3A4D48;
	flex: 1;
}

.inc-crosslist li .inc-item-text {
	color: #4D3F3F;
	flex: 1;
}

.editorial-recommendations-box {
	background: #FAF8F2;
	border: 1px solid #E2DCCE;
	border-radius: 14px;
	padding: 2rem 2.25rem;
	color: #3A4D48;
	line-height: 1.8;
}

.editorial-recommendations-box ul {
	list-style: none;
	padding: 0;
	margin: 1rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.editorial-recommendations-box ul li {
	position: relative;
	padding-left: 2rem;
}

.editorial-recommendations-box ul li::before {
	content: "💡";
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
}

.check-icon-wrap {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(27, 67, 50, 0.12);
	color: var(--color-brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.check-icon-wrap svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.5px;
}

.check-icon-wrap i {
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
}

.cross-icon-wrap {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: rgba(150, 77, 77, 0.12);
	color: #964d4d;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}

.cross-icon-wrap svg {
	width: 14px;
	height: 14px;
	stroke: currentColor;
	stroke-width: 2.5px;
}

.cross-icon-wrap i {
	font-size: 13px;
	line-height: 1;
	font-weight: 700;
}

/* 2.4 Recomendaciones Unificadas (Opción 2: Caja Editorial 2 Columnas) */
.unified-recommendations-card {
	background: #FAF7F2;
	border: 1.5px solid #E2DCCE;
	border-radius: 14px;
	padding: 2.25rem 2.5rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.rec-card-inner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.35rem 2.25rem;
}

.rec-unified-item {
	display: flex;
	align-items: flex-start;
	gap: 0.95rem;
}

.rec-icon-badge {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #032B20;
	color: #FAF7F2;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
	transition: all 0.25s ease;
}

.rec-icon-badge i {
	font-size: 16px;
	line-height: 1;
}

.rec-unified-item:hover .rec-icon-badge {
	background: #8A7552;
	color: #FFFFFF;
	transform: scale(1.05);
}

.rec-item-label {
	font-size: 0.8875rem;
	line-height: 1.55;
	color: #3A4D48;
	font-weight: 500;
	flex: 1;
}

@media (max-width: 768px) {
	.unified-recommendations-card {
		padding: 1.75rem 1.35rem;
	}
	.rec-card-inner-grid {
		grid-template-columns: 1fr;
		gap: 1.15rem;
	}
}

/* 2.4 Recomendaciones V2 (Legacy Grid) */
.recommendations-grid-v2 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
}

.rec-card-item {
	background: #FAF8F2;
	border: 1px solid #E2DCCE;
	border-radius: 12px;
	padding: 1.5rem 1.35rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	transition: all 0.25s ease;
}

.rec-card-item:hover {
	border-color: var(--color-brand-secondary);
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(27, 67, 50, 0.05);
	background: #FFFFFF;
}

.rec-card-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(27, 67, 50, 0.08);
	color: #1B4332;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.25s ease;
}

.rec-card-icon svg {
	width: 22px;
	height: 22px;
	stroke: currentColor;
}

.rec-card-icon i {
	font-size: 22px;
	line-height: 1;
	color: currentColor;
}

.rec-card-item:hover .rec-card-icon {
	background: #1B4332;
	color: #ffffff;
}

.rec-card-text {
	font-size: 0.8625rem;
	line-height: 1.55;
	color: #4A5854;
	margin: 0;
}

.rec-card-highlight {
	grid-column: span 3;
	background: linear-gradient(135deg, #FAF8F2 0%, #EDE8D0 100%);
	border: 1.5px solid #C8BD9F;
	flex-direction: row;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem 1.75rem;
}

.rec-card-highlight .rec-card-icon {
	background: rgba(27, 67, 50, 0.12);
	color: #1B4332;
	width: 48px;
	height: 48px;
}

.rec-card-highlight .rec-card-text {
	font-size: 0.9375rem;
}

/* Barra Lateral Fija */
.single-tour-sidebar {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	position: sticky;
	top: 135px;
}

.curated-highlights-card {
	background: #FAF8F2;
	border: 1px solid #E2DCCE;
	border-radius: 14px;
	padding: 2rem 1.75rem;
	box-shadow: 0 4px 18px rgba(27, 67, 50, 0.04);
}

.curated-highlights-card .card-overline {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-brand-secondary);
	margin-bottom: 1.5rem;
}

.highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1.4rem;
}

.highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}

.highlight-icon {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(27, 67, 50, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-brand-secondary);
	margin-top: 2px;
	transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
	background: var(--color-brand-primary);
	color: #ffffff;
}

.highlight-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
}

.highlight-info {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.highlight-title {
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1.3;
}

.highlight-desc {
	font-size: 0.7875rem;
	line-height: 1.45;
	color: #52635F;
}

/* -------------------------------------------------------------------------- */
/* Tarjeta de Consulta & Reserva (Bespoke Inquiry - Luxury Reference)         */
/* -------------------------------------------------------------------------- */
.bespoke-inquiry-card {
	background: #F2E6D5;
	border: 1px solid #E2D4BF;
	border-radius: 4px;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	color: #1E1A17;
}

.bespoke-inquiry-card .card-overline {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #7A6F62;
	margin-bottom: 0.65rem;
}

.bespoke-inquiry-card .inquiry-card-title {
	font-family: var(--font-family-serif);
	font-size: 1.75rem;
	font-weight: 400;
	line-height: 1.25;
	color: #1E1A17;
	margin: 0 0 0.85rem;
	letter-spacing: 0.01em;
}

.bespoke-inquiry-card .inquiry-pricing-note {
	font-size: 0.95rem;
	line-height: 1.5;
	color: #3B342C;
	margin: 0 0 1.35rem;
}

.inquiry-card-divider {
	height: 1px;
	background: #D5C7B2;
	margin-bottom: 1.5rem;
}

.bespoke-inquiry-card .form-field-group {
	margin-bottom: 1.35rem;
}

.bespoke-inquiry-card .form-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #554C42;
	margin-bottom: 0.35rem;
}

/* Minimal Underline Select */
.minimal-select-wrapper {
	position: relative;
	border-bottom: 1px solid #B4A693;
	display: flex;
	align-items: center;
	transition: border-color 0.25s ease;
}

.minimal-select-wrapper:hover,
.minimal-select-wrapper:focus-within {
	border-color: #1E1A17;
}

.minimal-select {
	width: 100%;
	background: transparent;
	border: none;
	padding: 0.45rem 1.75rem 0.45rem 0;
	font-size: 0.98rem;
	color: #1E1A17;
	font-family: inherit;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	cursor: pointer;
	outline: none;
}

.select-chevron {
	position: absolute;
	right: 0;
	pointer-events: none;
	color: #7A6F62;
	font-size: 1.15rem;
	display: flex;
	align-items: center;
}

/* Minimal Underline Input */
.minimal-input-wrapper {
	position: relative;
	border-bottom: 1px solid #B4A693;
	display: flex;
	align-items: center;
	transition: border-color 0.25s ease;
	cursor: pointer;
}

.minimal-input-wrapper:hover,
.minimal-input-wrapper:focus-within {
	border-color: #1E1A17;
}

.minimal-input {
	width: 100%;
	background: transparent;
	border: none;
	padding: 0.45rem 2rem 0.45rem 0;
	font-size: 0.95rem;
	color: #1E1A17;
	font-family: inherit;
	outline: none;
	cursor: pointer;
}

/* Ocultar el icono por defecto duplicado de navegadores Webkit (Chrome, Safari, Edge) */
.minimal-date-input::-webkit-calendar-picker-indicator {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.minimal-date-input::-webkit-inner-spin-button {
	display: none;
	-webkit-appearance: none;
}

.minimal-input::placeholder {
	color: #7A6F62;
}

.input-calendar-icon {
	position: absolute;
	right: 0;
	pointer-events: none;
	color: #7A6F62;
	font-size: 1.25rem !important;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* -------------------------------------------------------------------------- */
/* Popover Calendario de Lujo Custom (Andora Travel Bespoke Datepicker)       */
/* -------------------------------------------------------------------------- */
.bespoke-datepicker-wrapper {
	position: relative;
}

.bespoke-date-input {
	cursor: pointer;
}

.luxury-calendar-popover {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	right: 0;
	z-index: 999;
	background: #FFFFFF;
	border: 1px solid #E2DCCE;
	border-radius: 12px;
	box-shadow: 0 14px 40px rgba(27, 67, 50, 0.18);
	padding: 1.15rem;
	font-family: var(--font-body);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: none;
	user-select: none;
}

.luxury-calendar-popover.is-active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}

.cal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.85rem;
}

.cal-month-year-title {
	font-family: var(--font-family-serif);
	font-size: 1.05rem;
	font-weight: 700;
	color: #032B20;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}

.cal-nav-btn {
	background: #F4EFE6;
	border: none;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #032B20;
	cursor: pointer;
	transition: all 0.2s ease;
	font-size: 1.1rem;
}

.cal-nav-btn:hover {
	background: #032B20;
	color: #FFFFFF;
}

.cal-weekdays {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.5rem;
}

.cal-days-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
	text-align: center;
}

.cal-day-cell {
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.84rem;
	color: #1E1A17;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.18s ease;
	position: relative;
}

.cal-day-cell:hover:not(.is-disabled):not(.is-empty) {
	background: #F4EFE6;
	color: #032B20;
	font-weight: 600;
}

.cal-day-cell.is-today {
	border: 1.5px solid #C8BD9F;
	font-weight: 700;
	color: #032B20;
}

.cal-day-cell.is-selected {
	background: #032B20 !important;
	color: #FFFFFF !important;
	font-weight: 700;
	box-shadow: 0 3px 10px rgba(3, 43, 32, 0.3);
}

.cal-day-cell.is-disabled {
	color: #D3CCC2;
	cursor: not-allowed;
	pointer-events: none;
	opacity: 0.45;
}

.cal-day-cell.is-empty {
	cursor: default;
	pointer-events: none;
}

.cal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 0.85rem;
	padding-top: 0.65rem;
	border-top: 1px solid #ECE7DE;
}

.cal-footer-btn {
	background: transparent;
	border: none;
	font-size: 0.78rem;
	font-weight: 700;
	color: #8A7552;
	cursor: pointer;
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.cal-footer-btn:hover {
	color: #032B20;
	background: #F4EFE6;
}

/* Desglose de Cálculo en Tiempo Real */
.inquiry-price-calculation {
	background: rgba(255, 255, 255, 0.5);
	border: 1px dashed #C8BD9F;
	border-radius: 4px;
	padding: 0.85rem 1rem;
	margin: 1.25rem 0 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.45rem;
}

.price-calc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.8125rem;
	color: #554C42;
}

.price-calc-row .calc-val {
	font-weight: 600;
	color: #1E1A17;
}

.price-calc-total {
	border-top: 1px solid rgba(200, 189, 159, 0.6);
	padding-top: 0.45rem;
	margin-top: 0.2rem;
	color: #1E1A17;
}

.price-calc-total .calc-label {
	font-weight: 700;
	color: #1E1A17;
}

.price-calc-total .calc-val-total {
	font-size: 1.15rem;
	font-weight: 800;
	color: #032B20;
	font-family: var(--font-family-serif);
}

/* Botón BEGIN CONSULTATION */
.btn-begin-consultation {
	width: 100%;
	background: #032B20;
	color: #ffffff;
	border: none;
	border-radius: 2px;
	padding: 1.05rem 1.5rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 0.75rem;
	font-family: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-begin-consultation:hover {
	background: #0b4736;
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(3, 43, 32, 0.25);
}

.btn-sidebar-whatsapp {
	width: 100%;
	height: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	background-color: #25D366;
	color: #ffffff;
	border-radius: 2px;
	font-size: 0.78125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	box-shadow: 0 3px 10px rgba(37, 211, 102, 0.2);
	transition: all 0.3s ease;
}

.btn-sidebar-whatsapp:hover {
	background-color: #1ebc57;
	color: #ffffff;
	transform: translateY(-1px);
}

.whatsapp-official-icon {
	width: 20px;
	height: 20px;
	fill: currentColor;
	flex-shrink: 0;
	display: inline-block;
}

.btn-sidebar-whatsapp i {
	font-size: 18px;
}

.bespoke-inquiry-card .inquiry-guarantee-note {
	font-size: 0.8125rem;
	line-height: 1.5;
	font-style: italic;
	color: #6E6356;
	text-align: center;
	margin: 1.5rem 0 0;
	padding: 0;
}

/* -------------------------------------------------------------------------- */
/* Barra Inferior Flotante de Reserva en Móvil (Mobile Floating Booking Bar)  */
/* -------------------------------------------------------------------------- */
.mobile-floating-booking-bar {
	display: none;
}

@media (max-width: 991px) {
	.mobile-floating-booking-bar {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 9995;
		background: #FFFFFF;
		border-top: 1.5px solid #E2DCCE;
		box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.12);
		padding: 0.75rem 1rem max(0.75rem, env(safe-area-inset-bottom));
		animation: slideUpBottomBar 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}

	@keyframes slideUpBottomBar {
		from {
			transform: translateY(100%);
			opacity: 0;
		}
		to {
			transform: translateY(0);
			opacity: 1;
		}
	}

	.mobile-booking-bar-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.85rem;
		max-width: 100%;
		padding: 0;
	}

	.mobile-booking-price-col {
		display: flex;
		flex-direction: column;
		min-width: 0;
	}

	.mobile-booking-price-label {
		font-size: 0.65rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: #8A7552;
		line-height: 1;
		margin-bottom: 0.2rem;
	}

	.mobile-booking-price-val {
		display: flex;
		align-items: baseline;
		gap: 0.35rem;
		line-height: 1.1;
		white-space: nowrap;
	}

	.mb-price-num {
		font-family: var(--font-heading);
		font-size: 1.15rem;
		font-weight: 700;
		color: #032B20;
		letter-spacing: -0.01em;
	}

	.mb-price-sub {
		font-size: 0.72rem;
		color: #7A6F62;
		font-weight: 500;
	}

	.mobile-booking-actions {
		display: flex;
		align-items: center;
		gap: 0.5rem;
		flex-shrink: 0;
	}

	.btn-mobile-wa {
		width: 44px;
		height: 44px;
		background-color: #25D366;
		color: #FFFFFF;
		border-radius: 8px;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
		box-shadow: 0 3px 10px rgba(37, 211, 102, 0.28);
		transition: transform 0.2s ease, background-color 0.2s ease;
		flex-shrink: 0;
	}

	.btn-mobile-wa:hover,
	.btn-mobile-wa:active {
		background-color: #1ebc57;
		transform: scale(1.04);
		color: #FFFFFF;
	}

	.btn-mobile-book-now {
		background: #032B20;
		color: #FFFFFF;
		border: none;
		border-radius: 8px;
		padding: 0 1.25rem;
		height: 44px;
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		cursor: pointer;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		box-shadow: 0 4px 14px rgba(3, 43, 32, 0.25);
		transition: background-color 0.2s ease, transform 0.2s ease;
		white-space: nowrap;
		font-family: inherit;
	}

	.btn-mobile-book-now:hover,
	.btn-mobile-book-now:active {
		background: #0b4736;
		transform: translateY(-1px);
	}

	/* Espacio en el footer para evitar solapamiento con la barra flotante */
	body.single-tours {
		padding-bottom: 75px;
	}
}

/* -------------------------------------------------------------------------- */
/* Modal Bottom Sheet de Reserva Móvil (Drawer)                               */
/* -------------------------------------------------------------------------- */
.mobile-booking-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	z-index: 99998;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-booking-drawer.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.mobile-drawer-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(3, 20, 15, 0.75);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.mobile-drawer-card {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 20px 20px 0 0 !important;
	padding: 1.75rem 1.5rem max(1.5rem, env(safe-area-inset-bottom)) !important;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.35);
}

.mobile-booking-drawer.is-active .mobile-drawer-card {
	transform: translateY(0);
}

.mobile-drawer-header-row {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
}

.mobile-drawer-header-text {
	flex: 1;
}

.mobile-drawer-close-btn {
	background: #EFE9DC;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: #032B20;
	cursor: pointer;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.mobile-drawer-close-btn:hover {
	background: #032B20;
	color: #FFFFFF;
}

/* Sección de Tours Relacionados */
.section-related-tours {
	background-color: var(--color-brand-cream);
	background-image: linear-gradient(180deg, #F4F0E5 0%, #EDE8D0 100%);
	padding: 5.5rem 0 6rem;
	border-top: 1px solid rgba(27, 67, 50, 0.08);
}

.section-related-tours .section-overline {
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--color-brand-secondary);
	text-transform: uppercase;
}

.section-related-tours .section-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	text-shadow: none;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.section-related-tours .section-gold-divider {
	width: 48px;
	height: 2px;
	background: var(--color-brand-secondary);
	margin: 0.85rem auto 3.25rem;
}

/* Responsividad para Single Tour */
@media (max-width: 1024px) {
	.single-tour-hero {
		min-height: 620px;
		padding: 11rem 0 4rem;
	}

	.single-tour-main-title {
		font-size: 2.75rem;
	}

	.tour-hero-meta-strip {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.25rem;
	}

	.meta-strip-col {
		border-right: none;
		padding: 0;
	}

	.single-tour-layout-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.single-tour-sidebar {
		position: static;
		max-width: 550px;
		margin: 0 auto;
		width: 100%;
	}

	.recommendations-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
	}

	.rec-card-highlight {
		grid-column: span 2;
	}
}

@media (max-width: 640px) {
	.single-tour-hero {
		min-height: 540px;
		padding: 9.5rem 0 3rem;
	}

	.single-tour-main-title {
		font-size: 2.25rem;
	}

	.inclusions-grid-v2 {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.recommendations-grid-v2 {
		grid-template-columns: 1fr;
	}

	.rec-card-highlight {
		grid-column: span 1;
		flex-direction: column;
		align-items: flex-start;
	}

	.tour-hero-meta-strip {
		grid-template-columns: 1fr;
		gap: 0.85rem;
		padding: 1.25rem;
	}

	.single-tour-body-section {
		padding: 4rem 0 4.5rem;
	}

	.block-title {
		font-size: 1.85rem;
	}

	.itinerary-card-step {
		flex-direction: column;
		gap: 1rem;
	}

	.step-badge-col {
		align-self: flex-start;
		flex-direction: row;
		gap: 0.75rem;
		min-width: unset;
		padding: 0.4rem 0.85rem;
	}

	.step-number {
		margin-bottom: 0;
		font-size: 1.25rem;
	}
}

/* ==========================================================================
   14. PIE DE PÁGINA DE LUJO (LUXURY TOPOGRAPHIC FOOTER)
   ========================================================================== */
.luxury-footer {
	position: relative;
	background-color: #1B4332;
	background-image: linear-gradient(180deg, #1B4332 0%, #112d22 100%);
	color: #d1deda;
	padding: 5.5rem 0 2.5rem;
	overflow: hidden;
	margin-top: 0;
	border-top: 1px solid rgba(237, 232, 208, 0.15);
}

.footer-topographic-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600' viewBox='0 0 600 600'%3E%3Cg fill='none' stroke='%231C6B5A' stroke-width='1.2' stroke-opacity='0.16'%3E%3Cpath d='M0,150 Q150,50 300,180 T600,120'/%3E%3Cpath d='M0,220 Q180,120 330,260 T600,190'/%3E%3Cpath d='M0,300 Q200,200 370,340 T600,280'/%3E%3Cpath d='M0,380 Q220,290 410,420 T600,360'/%3E%3Cpath d='M0,460 Q250,370 450,500 T600,440'/%3E%3Cpath d='M0,80 Q120,20 280,110 T600,60'/%3E%3Cpath d='M50,0 Q180,160 120,320 T200,600'/%3E%3Cpath d='M150,0 Q300,180 220,380 T320,600'/%3E%3Cpath d='M280,0 Q420,220 340,440 T460,600'/%3E%3Cpath d='M420,0 Q540,260 460,500 T580,600'/%3E%3Ccircle cx='300' cy='300' r='180' stroke-dasharray='8 6'/%3E%3Ccircle cx='300' cy='300' r='120'/%3E%3Ccircle cx='300' cy='300' r='60'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 550px 550px;
	pointer-events: none;
	opacity: 0.9;
}

.footer-main-grid {
	display: grid;
	grid-template-columns: 1.4fr 0.9fr 1.2fr 1.5fr;
	gap: 3.5rem;
	margin-bottom: 4rem;
	position: relative;
	z-index: 2;
}

/* Columna 1: Branding y Misión */
.footer-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
	text-decoration: none;
}

.footer-logo-icon {
	color: var(--color-gold);
	transition: transform 0.4s ease;
}

.footer-logo-link:hover .footer-logo-icon {
	transform: rotate(15deg) scale(1.05);
}

.footer-logo-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.footer-brand-name {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #ffffff;
	line-height: 1;
	text-transform: uppercase;
}

.footer-brand-tagline {
	font-family: var(--font-body);
	font-size: 0.58rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	color: var(--color-gold-light);
	text-transform: uppercase;
	margin-top: 0.2rem;
}

.footer-brand-desc {
	font-size: 0.875rem;
	line-height: 1.7;
	color: #94a3b8;
	max-width: 330px;
}

/* Columnas 2 y 3: Títulos y Enlaces */
.footer-col-title {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 1.5rem;
}

.footer-nav-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.footer-nav-list li a {
	font-size: 0.875rem;
	color: #94a3b8;
	transition: var(--transition-smooth);
	display: inline-block;
}

.footer-nav-list li a:hover {
	color: var(--color-gold-light);
	transform: translateX(4px);
}

/* Columna 4: Contacto y Reclamaciones */
.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.9rem;
	margin-bottom: 1.75rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	color: #94a3b8;
}

.contact-icon {
	color: var(--color-gold);
	width: 17px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 3px;
}

.contact-link {
	color: #94a3b8;
	transition: var(--transition-smooth);
}

.contact-link:hover {
	color: var(--color-gold-light);
}

.contact-text {
	line-height: 1.5;
	color: #94a3b8;
}

/* Tarjeta de Libro de Reclamaciones */
.footer-reclamaciones-box {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 0.75rem 1rem;
	transition: var(--transition-smooth);
	display: inline-block;
	max-width: 280px;
}

.footer-reclamaciones-box:hover {
	background: rgba(255, 255, 255, 0.06);
	border-color: var(--color-gold);
	transform: translateY(-2px);
}

.reclamaciones-link {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none;
}

.reclamaciones-icon {
	color: #4ade80;
	display: flex;
	align-items: center;
}

.reclamaciones-icon .icon {
	width: 26px;
	height: 26px;
}

.reclamaciones-text {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.reclamaciones-tag {
	font-size: 0.58rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: #64748b;
	text-transform: uppercase;
	margin-bottom: 0.1rem;
}

.reclamaciones-title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.reclamaciones-arrow {
	color: var(--color-gold);
	transition: transform 0.3s ease;
}

.footer-reclamaciones-box:hover .reclamaciones-arrow {
	transform: translateX(4px);
}

/* Línea Divisoria */
.footer-divider-line {
	height: 1px;
	background: rgba(255, 255, 255, 0.08);
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}

/* --- Barra Inferior del Pie de Página (Sub-footer) --- */
.site-info-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 2;
}

.site-info-left {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	font-size: 0.8125rem;
	color: #64748b;
}

.copyright-text {
	color: #94a3b8;
}

.copyright-text strong {
	color: #ffffff;
}

.developer-credit-text {
	font-size: 0.75rem;
	color: #64748b;
}

.developer-link {
	color: var(--color-gold);
	transition: var(--transition-smooth);
}

.developer-link:hover {
	color: var(--color-gold-light);
	text-decoration: underline;
}

/* Redes Sociales */
.site-info-right {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.social-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #ffffff;
}

.footer-social-icons {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.social-circle-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: var(--transition-smooth);
}

.social-circle-btn .icon {
	width: 17px;
	height: 17px;
}

.social-circle-btn:hover {
	background: var(--color-gold);
	border-color: var(--color-gold);
	color: #071010;
	transform: translateY(-3px);
	box-shadow: 0 6px 16px rgba(212, 163, 75, 0.35);
}

/* Responsivo para el Pie de Página */
@media (max-width: 1024px) {
	.footer-main-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.luxury-footer {
		padding: 4rem 0 2rem;
	}

	.footer-main-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.site-info-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}

/* ==========================================================================
   10. MODAL DE SOLICITUD DE COTIZACIÓN (PERSONALIZA TU VIAJE)
   ========================================================================== */
body.quote-modal-open {
	overflow: hidden;
}

.quote-modal-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	padding: 1.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.quote-modal-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.quote-modal-backdrop {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(4, 13, 11, 0.88);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.quote-modal-dialog {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 760px;
	max-height: 90vh;
	overflow-y: auto;
	background: linear-gradient(180deg, #F4F0E5 0%, #EDE8D0 100%);
	border: 1px solid rgba(16, 88, 75, 0.18);
	border-radius: 16px;
	box-shadow: 0 25px 60px rgba(7, 21, 18, 0.35);
	padding: 2.5rem 2.75rem;
	transform: scale(0.95) translateY(15px);
	transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quote-modal-lightbox.is-open .quote-modal-dialog {
	transform: scale(1) translateY(0);
}

/* Botón Cerrar Modal */
.quote-modal-close-btn {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(16, 88, 75, 0.08);
	border: 1px solid rgba(16, 88, 75, 0.2);
	color: var(--color-brand-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.quote-modal-close-btn:hover {
	background: var(--color-brand-primary);
	color: #ffffff;
	border-color: var(--color-brand-primary);
	transform: rotate(90deg);
}

.icon-modal-close {
	width: 16px;
	height: 16px;
}

/* Cabecera del Modal */
.quote-modal-header {
	margin-bottom: 2rem;
	text-align: left;
	padding-right: 2.5rem;
}

.quote-modal-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(16, 88, 75, 0.08);
	border: 1px solid rgba(16, 88, 75, 0.22);
	padding: 0.3rem 0.85rem;
	border-radius: 20px;
	margin-bottom: 0.75rem;
}

.quote-badge-dot {
	width: 6px;
	height: 6px;
	background-color: var(--color-brand-primary);
	border-radius: 50%;
	box-shadow: 0 0 6px rgba(16, 88, 75, 0.4);
}

.quote-badge-text {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: var(--color-brand-primary);
	text-transform: uppercase;
}

.quote-modal-title {
	font-family: var(--font-heading);
	font-size: 2.15rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	line-height: 1.2;
	margin: 0 0 0.5rem;
	letter-spacing: 0.01em;
}

.quote-modal-subtitle {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #3b504b;
	margin: 0;
}

/* Cuadrícula del Formulario */
.quote-form-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1.25rem 1rem;
	margin-bottom: 1.5rem;
}

.col-full {
	grid-column: span 6;
}

.col-half {
	grid-column: span 3;
}

.col-third {
	grid-column: span 2;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--color-brand-primary);
	text-transform: uppercase;
}

.form-control {
	width: 100%;
	background: #ffffff;
	border: 1px solid #D6CEBE;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	color: #1a2925;
	outline: none;
	transition: all 0.3s ease;
}

.form-control::placeholder {
	color: #8C9995;
}

.form-control:focus {
	border-color: var(--color-brand-primary);
	background: #ffffff;
	box-shadow: 0 0 0 3px rgba(16, 88, 75, 0.15);
}

.form-select {
	appearance: none;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310584B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 14px 14px;
	padding-right: 2.5rem;
	cursor: pointer;
}

.form-select option {
	background-color: #ffffff;
	color: #1a2925;
}

.passengers-inputs-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.form-textarea {
	resize: vertical;
	min-height: 80px;
}

/* Chips de Destinos de Interés */
.destinations-chips-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.25rem;
}

.destination-chip {
	position: relative;
	cursor: pointer;
	user-select: none;
}

.destination-chip input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.destination-chip .chip-label {
	display: inline-block;
	padding: 0.45rem 0.95rem;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid #D6CEBE;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 500;
	color: #2D3D39;
	transition: all 0.25s ease;
}

.destination-chip input[type="checkbox"]:checked + .chip-label {
	background: var(--color-brand-primary);
	border-color: var(--color-brand-primary);
	color: #ffffff;
	font-weight: 700;
	box-shadow: 0 3px 10px rgba(16, 88, 75, 0.35);
}

.destination-chip:hover .chip-label {
	border-color: var(--color-brand-primary);
	color: var(--color-brand-primary);
	background: #ffffff;
}

.destination-chip input[type="checkbox"]:checked:hover + .chip-label {
	color: #ffffff;
	background: var(--color-brand-secondary);
}

/* Alerta de Error */
.quote-form-error-alert {
	background: rgba(220, 38, 38, 0.1);
	border: 1px solid rgba(220, 38, 38, 0.3);
	color: #b91c1c;
	padding: 0.75rem 1rem;
	border-radius: 8px;
	font-size: 0.8125rem;
	margin-bottom: 1.25rem;
}

/* Pie del Formulario */
.quote-form-footer {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.quote-submit-btn {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
	border: 1px solid var(--color-brand-primary);
	border-radius: 8px;
	padding: 1.05rem 1.75rem;
	color: #ffffff;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(16, 88, 75, 0.35);
	transition: all 0.3s ease;
}

.quote-submit-btn:hover:not(:disabled) {
	background: linear-gradient(135deg, var(--color-brand-secondary) 0%, #0e4438 100%);
	border-color: var(--color-brand-secondary);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(16, 88, 75, 0.5);
}

.quote-submit-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.btn-arrow-svg {
	width: 18px;
	height: 18px;
	color: #ffffff;
	transition: transform 0.3s ease;
}

.quote-submit-btn:hover .btn-arrow-svg {
	transform: translateX(4px);
}

/* Spinner de Carga */
.btn-spinner {
	display: none;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #ffffff;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

.quote-submit-btn.is-loading .btn-spinner {
	display: inline-block;
}

.quote-submit-btn.is-loading .btn-arrow-svg {
	display: none;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

.quote-form-guarantee {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	color: #4A5854;
}

.guarantee-shield-icon {
	width: 15px;
	height: 15px;
	color: var(--color-brand-primary);
	flex-shrink: 0;
}

/* Estado de Éxito */
.quote-modal-success-state {
	text-align: center;
	padding: 2.5rem 1rem;
}

.quote-success-icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: rgba(16, 88, 75, 0.1);
	border: 2px solid var(--color-brand-primary);
	color: var(--color-brand-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.quote-success-icon {
	width: 36px;
	height: 36px;
}

.quote-success-title {
	font-family: var(--font-heading);
	font-size: 2.15rem;
	font-weight: 700;
	color: var(--color-brand-primary);
	margin: 0 0 0.85rem;
}

.quote-success-desc {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #3b504b;
	max-width: 520px;
	margin: 0 auto 2rem;
}

.quote-success-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	max-width: 380px;
	margin: 0 auto;
}

.quote-btn-whatsapp-direct {
	width: 100%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	background: #25D366;
	color: #ffffff;
	padding: 0.9rem 1.5rem;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.quote-btn-whatsapp-direct:hover {
	background: #1eb956;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.icon-btn-wa {
	width: 18px;
	height: 18px;
}

.quote-btn-close-final {
	background: transparent;
	border: 1px solid rgba(16, 88, 75, 0.25);
	color: var(--color-brand-primary);
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
}

.quote-btn-close-final:hover {
	background: rgba(16, 88, 75, 0.08);
	border-color: var(--color-brand-primary);
}

/* Responsivo para el Modal */
@media (max-width: 768px) {
	.quote-modal-dialog {
		padding: 2rem 1.5rem;
	}

	.col-half,
	.col-third {
		grid-column: span 6;
	}

	.quote-modal-title {
		font-size: 1.5rem;
	}
}

/* -------------------------------------------------------------------------- */
/* 2.5 Galería de Fotos Frontend (Diseño Airbnb & Lightbox Fullscreen)       */
/* -------------------------------------------------------------------------- */
.airbnb-gallery-wrapper {
	position: relative;
	margin-top: 1.25rem;
	border-radius: 16px;
	overflow: hidden;
	background: #ffffff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.airbnb-gallery-grid {
	display: grid;
	gap: 8px;
	height: 440px;
	background: #ffffff;
}

/* 5 Fotos: Distribución Clásica Airbnb (1 grande izquierda, 4 pequeñas derecha 2x2) */
.airbnb-gallery-grid.grid-5-items {
	grid-template-columns: 2fr 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(2) {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
}

.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(3) {
	grid-column: 3 / 4;
	grid-row: 1 / 2;
}

.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(4) {
	grid-column: 2 / 3;
	grid-row: 2 / 3;
}

.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(5) {
	grid-column: 3 / 4;
	grid-row: 2 / 3;
}

/* 4 Fotos */
.airbnb-gallery-grid.grid-4-items {
	grid-template-columns: 2fr 1fr;
	grid-template-rows: repeat(3, 1fr);
}
.airbnb-gallery-grid.grid-4-items .airbnb-gallery-item:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1 / 4;
}

/* 3 Fotos */
.airbnb-gallery-grid.grid-3-items {
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 1fr 1fr;
}
.airbnb-gallery-grid.grid-3-items .airbnb-gallery-item:nth-child(1) {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

/* 2 Fotos */
.airbnb-gallery-grid.grid-2-items {
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
}

/* 1 Foto */
.airbnb-gallery-grid.grid-1-items {
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}

.airbnb-gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	background: #f1f5f3;
	display: block;
	user-select: none;
}

.airbnb-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease, filter 0.3s ease;
}

/* Efecto Airbnb: atenúa ligeramente las otras fotos al enfocar una */
.airbnb-gallery-grid:hover .airbnb-gallery-item img {
	filter: brightness(0.85);
}

.airbnb-gallery-grid .airbnb-gallery-item:hover img {
	filter: brightness(1.05);
	transform: scale(1.04);
}

.airbnb-gallery-item-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.18);
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airbnb-gallery-item:hover .airbnb-gallery-item-overlay {
	opacity: 1;
}

.airbnb-gallery-item-overlay i {
	font-size: 22px;
	color: #ffffff;
	background: rgba(27, 67, 50, 0.8);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
}

/* Botón Flotante Estilo Airbnb "Mostrar todas las fotos" */
.airbnb-show-all-btn {
	position: absolute;
	right: 18px;
	bottom: 18px;
	background: #ffffff;
	color: #1e293b;
	border: 1px solid rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	padding: 9px 18px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
	transition: all 0.25s ease;
	z-index: 5;
}

.airbnb-show-all-btn i {
	font-size: 16px;
	color: #1B4332;
}

.airbnb-show-all-btn:hover {
	background: #FAF8F2;
	color: #1B4332;
	border-color: #1B4332;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

/* Modal Lightbox Fullscreen Airbnb */
.airbnb-modal {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
}

.airbnb-modal.is-open {
	display: flex;
	animation: airbnbFadeIn 0.25s ease;
}

@keyframes airbnbFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.airbnb-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 25, 19, 0.95);
	backdrop-filter: blur(8px);
}

.airbnb-modal-content {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	z-index: 10;
	color: #ffffff;
}

/* Modal Header */
.airbnb-modal-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 30px;
	background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
}

.airbnb-modal-counter {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #e2e8f0;
}

.airbnb-modal-tour-title {
	font-family: var(--font-family-serif);
	font-size: 17px;
	color: #FAF8F2;
	letter-spacing: 0.02em;
	max-width: 60%;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.airbnb-modal-close {
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.airbnb-modal-close:hover {
	background: rgba(255, 255, 255, 0.25);
	color: #ffffff;
	transform: scale(1.05);
}

/* Modal Body */
.airbnb-modal-body {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 40px;
	position: relative;
	overflow: hidden;
}

.airbnb-active-image-wrap {
	max-width: 82vw;
	max-height: 70vh;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
}

.airbnb-active-image-wrap img {
	max-width: 100%;
	max-height: 70vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
	transition: opacity 0.2s ease;
}

.airbnb-nav-arrow {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	cursor: pointer;
	transition: all 0.25s ease;
	z-index: 20;
}

.airbnb-nav-arrow:hover {
	background: #ffffff;
	color: #1B4332;
	transform: scale(1.1);
}

/* Modal Footer / Thumbnails Filmstrip */
.airbnb-modal-footer {
	padding: 14px 30px 22px;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.airbnb-thumbnails-track {
	display: flex;
	gap: 10px;
	justify-content: center;
	overflow-x: auto;
	padding: 6px 0;
	scrollbar-width: thin;
}

.airbnb-thumb-btn {
	width: 65px;
	height: 48px;
	border-radius: 6px;
	overflow: hidden;
	border: 2px solid transparent;
	background: transparent;
	padding: 0;
	cursor: pointer;
	opacity: 0.5;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.airbnb-thumb-btn:hover {
	opacity: 0.85;
	transform: translateY(-2px);
}

.airbnb-thumb-btn.active {
	opacity: 1;
	border-color: #D4A373;
	box-shadow: 0 0 0 2px rgba(212, 163, 115, 0.4);
	transform: scale(1.05);
}

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

/* Responsivo para la Galería Airbnb */
@media (max-width: 991px) {
	.airbnb-gallery-grid {
		height: 360px;
	}
}

@media (max-width: 768px) {
	.airbnb-gallery-grid {
		height: 280px;
	}
	.airbnb-gallery-grid.grid-5-items,
	.airbnb-gallery-grid.grid-4-items,
	.airbnb-gallery-grid.grid-3-items {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
	}
	.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 3;
	}
	.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(2) {
		grid-column: 2 / 3;
		grid-row: 1 / 2;
	}
	.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(3) {
		grid-column: 2 / 3;
		grid-row: 2 / 3;
	}
	.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(4),
	.airbnb-gallery-grid.grid-5-items .airbnb-gallery-item:nth-child(5) {
		display: none;
	}

	.airbnb-modal-body {
		padding: 10px 15px;
	}
	.airbnb-nav-arrow {
		width: 40px;
		height: 40px;
		font-size: 22px;
	}
}

@media (max-width: 576px) {
	.airbnb-gallery-grid {
		height: 240px;
	}
	.airbnb-gallery-grid .airbnb-gallery-item:nth-child(n+2) {
		display: none;
	}
	.airbnb-gallery-grid.grid-5-items,
	.airbnb-gallery-grid.grid-4-items,
	.airbnb-gallery-grid.grid-3-items,
	.airbnb-gallery-grid.grid-2-items {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
	}
	.airbnb-gallery-grid .airbnb-gallery-item:nth-child(1) {
		grid-column: 1 / 2;
		grid-row: 1 / 2;
	}
	.airbnb-show-all-btn {
		right: 12px;
		bottom: 12px;
		padding: 7px 12px;
		font-size: 12px;
	}
	.airbnb-modal-tour-title {
		display: none;
	}
}

/* ==========================================================================
   THE ANDORA JOURNAL (Blog Archive & Categories)
   ========================================================================== */

/* Cabecera sólida para páginas de Blog/Journal y Archivo de Tours */
body.blog .luxury-header,
body.category .luxury-header,
body.archive .luxury-header,
body.post-type-archive-tours .luxury-header,
body.tax-tour_category .luxury-header,
body.single-post .luxury-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(180deg, #071E17 0%, #1B4332 100%);
	border-bottom: 1px solid rgba(237, 232, 208, 0.2);
}

.journal-archive-page {
	padding-top: 220px;
	background: #FFFFFF;
}

@media (max-width: 992px) {
	.journal-archive-page {
		padding-top: 130px;
	}
}

/* 1. Header Editorial */
.journal-header-section {
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #EBE4D8;
	margin-bottom: 3.5rem;
}

.journal-header-inner {
	max-width: 760px;
	margin: 0 auto 2.5rem;
}

.journal-overline {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #8A7552;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}

.journal-main-title {
	font-family: var(--font-heading);
	font-size: 3.65rem;
	line-height: 1.12;
	color: #1B4332;
	margin: 0 0 1.15rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.journal-lead-desc {
	font-size: 1.075rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0;
}

/* Filtro Horizontal de Categorías */
.journal-category-nav {
	display: flex;
	justify-content: center;
}

.journal-category-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem 1rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.journal-cat-pill {
	display: inline-block;
	padding: 0.55rem 1.45rem;
	border-radius: 50px;
	font-size: 0.8625rem;
	font-weight: 600;
	color: #3A4D48;
	background: transparent;
	border: 1px solid #D6CEBE;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-cat-pill:hover {
	border-color: #1B4332;
	color: #1B4332;
	transform: translateY(-1px);
}

.journal-cat-pill.active {
	background: #1B4332;
	color: #FFFFFF;
	border-color: #1B4332;
	box-shadow: 0 4px 14px rgba(27, 67, 50, 0.16);
}

/* 2. Historia Destacada (Split 50/50) */
.journal-featured-section {
	margin-bottom: 4.5rem;
}

.journal-featured-card {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	border-radius: 16px;
	overflow: hidden;
	background: transparent;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.journal-featured-media {
	position: relative;
	min-height: 460px;
	overflow: hidden;
	background: #E2DCCE;
}

.journal-featured-img-wrap {
	display: block;
	width: 100%;
	height: 100%;
}

.journal-featured-img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-featured-card:hover .journal-featured-img-wrap img {
	transform: scale(1.04);
}

.journal-featured-body {
	background: #F5EBE1;
	padding: 3.5rem 3.25rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.journal-featured-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-bottom: 1.35rem;
	font-size: 0.775rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A7552;
}

.journal-badge-boxed {
	display: inline-block;
	border: 1px solid #C8BD9F;
	padding: 0.25rem 0.65rem;
	border-radius: 4px;
	color: #6B5838;
	background: rgba(255, 255, 255, 0.5);
}

.journal-meta-divider {
	color: #C8BD9F;
}

.journal-featured-title {
	font-family: var(--font-heading);
	font-size: 2.35rem;
	line-height: 1.22;
	color: #1B4332;
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.journal-featured-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.journal-featured-title a:hover {
	color: #8A7552;
}

.journal-featured-excerpt {
	font-size: 0.9625rem;
	line-height: 1.7;
	color: #4A5854;
	margin: 0 0 2rem;
}

.btn-journal-hero {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	background: #032B20;
	color: #FFFFFF;
	padding: 0.85rem 1.85rem;
	border-radius: 50px;
	font-size: 0.825rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	width: fit-content;
}

.btn-journal-hero i {
	font-size: 1.1rem;
	color: #D4AF37;
	transition: transform 0.25s ease;
}

.btn-journal-hero:hover {
	background: #0F271D;
	color: #FAF7F2;
	transform: translateX(3px);
	box-shadow: 0 6px 18px rgba(3, 43, 32, 0.25);
}

.btn-journal-hero:hover i {
	transform: translateX(4px);
}

/* 3. Cuadrícula de Artículos (3 Columnas) */
.journal-grid-section {
	margin-bottom: 5rem;
}

.journal-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3rem 2.25rem;
}

.journal-card-item {
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
}

.journal-card-media {
	display: block;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	margin-bottom: 1.35rem;
	background: #E2DCCE;
}

.journal-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.journal-card-item:hover .journal-card-media img {
	transform: scale(1.05);
}

.journal-card-body {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.journal-card-meta {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.75rem;
}

.journal-card-badge {
	color: #1B4332;
}

.journal-card-meta-dot {
	color: #C8BD9F;
}

.journal-card-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	line-height: 1.32;
	color: #1B4332;
	margin: 0 0 0.85rem;
	font-weight: 600;
}

.journal-card-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.journal-card-title a:hover {
	color: #8A7552;
}

.journal-card-excerpt {
	font-size: 0.8875rem;
	line-height: 1.62;
	color: #4A5854;
	margin: 0 0 1.25rem;
	flex: 1;
}

.journal-card-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1B4332;
	text-decoration: none;
	transition: all 0.25s ease;
	margin-top: auto;
}

.journal-card-link i {
	font-size: 0.95rem;
	color: #8A7552;
	transition: transform 0.25s ease;
}

.journal-card-link:hover {
	color: #8A7552;
}

.journal-card-link:hover i {
	transform: translateX(4px);
}

/* Paginación del Journal */
.journal-pagination-wrap {
	display: flex;
	justify-content: center;
	margin-top: 3.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #EBE4D8;
}

.journal-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	margin: 0 4px;
	border-radius: 50px;
	border: 1px solid #D6CEBE;
	color: #3A4D48;
	text-decoration: none;
	font-size: 0.8875rem;
	font-weight: 600;
	transition: all 0.2s ease;
}

.journal-pagination-wrap .page-numbers.current,
.journal-pagination-wrap .page-numbers:hover {
	background: #1B4332;
	color: #FFFFFF;
	border-color: #1B4332;
}

/* 4. Sección de Newsletter */
.journal-newsletter-section {
	background: #F5EBE1;
	padding: 5rem 1.5rem;
	margin-top: 4rem;
}

.journal-newsletter-box {
	max-width: 680px;
	margin: 0 auto;
}

.journal-newsletter-icon {
	margin-bottom: 1.35rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.journal-newsletter-brand-logo {
	max-height: 54px;
	width: auto;
	object-fit: contain;
	display: block;
}

.journal-newsletter-title {
	font-family: var(--font-heading);
	font-size: 2.45rem;
	line-height: 1.2;
	color: #1B4332;
	margin: 0 0 1rem;
	font-weight: 600;
}

.journal-newsletter-subtitle {
	font-size: 1.025rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0 0 2.25rem;
}

.journal-newsletter-form {
	max-width: 520px;
	margin: 0 auto;
}

.journal-input-group {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: #FFFFFF;
	border: 1.5px solid #D6CEBE;
	border-radius: 50px;
	padding: 0.35rem 0.45rem 0.35rem 1.35rem;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.journal-input-group:focus-within {
	border-color: #1B4332;
	box-shadow: 0 4px 20px rgba(27, 67, 50, 0.1);
}

.journal-email-input {
	border: none !important;
	background: transparent !important;
	outline: none !important;
	box-shadow: none !important;
	flex: 1;
	font-size: 0.925rem;
	color: #1B4332;
	padding: 0.45rem 0;
}

.journal-email-input::placeholder {
	color: #8C9995;
}

.btn-journal-subscribe {
	background: #032B20;
	color: #FFFFFF;
	border: none;
	padding: 0.8rem 1.85rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn-journal-subscribe:hover {
	background: #0F271D;
	color: #FAF7F2;
}

/* ==========================================================================
   RESPONSIVO PARA EL JOURNAL
   ========================================================================== */

@media (max-width: 1024px) {
	.journal-main-title {
		font-size: 3rem;
	}
	.journal-featured-card {
		grid-template-columns: 1fr;
	}
	.journal-featured-media {
		min-height: 380px;
	}
	.journal-featured-body {
		padding: 2.75rem 2.25rem;
	}
	.journal-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem 1.75rem;
	}
}

@media (max-width: 768px) {
	.journal-main-title {
		font-size: 2.45rem;
	}
	.journal-lead-desc {
		font-size: 0.975rem;
	}
	.journal-header-section {
		margin-bottom: 2.5rem;
	}
	.journal-featured-section {
		margin-bottom: 3.5rem;
	}
	.journal-featured-title {
		font-size: 1.85rem;
	}
	.journal-featured-body {
		padding: 2rem 1.5rem;
	}
	.journal-posts-grid {
		grid-template-columns: 1fr;
		gap: 2.25rem;
	}
	.journal-newsletter-section {
		padding: 3.75rem 1.25rem;
		margin-top: 3rem;
	}
	.journal-newsletter-title {
		font-size: 1.95rem;
	}
	.journal-input-group {
		flex-direction: column;
		border-radius: 12px;
		padding: 0.75rem;
		gap: 0.75rem;
	}
	.journal-email-input {
		width: 100%;
		text-align: center;
	}
}

/* ==========================================================================
   THE ANDORA JOURNAL (Single Story Post)
   ========================================================================== */

.journal-single-page {
	padding-top: 165px;
	background: #FFFFFF;
}

.journal-single-layout {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 4.5rem;
	margin-bottom: 4rem;
}

/* 1. Cabecera del Artículo */
.journal-article-header {
	margin-bottom: 2.5rem;
}

.journal-article-meta-top {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 1.15rem;
}

.journal-article-meta-top .meta-category {
	color: #1B4332;
}

.journal-article-title {
	font-family: var(--font-heading);
	font-size: 3.35rem;
	line-height: 1.15;
	color: #1B4332;
	margin: 0 0 1.25rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.journal-article-dek {
	font-size: 1.15rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0 0 2rem;
	font-style: italic;
}

.journal-author-action-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 1.75rem;
	border-bottom: 1px solid #EBE4D8;
	margin-top: 1.5rem;
}

.author-info-left {
	display: flex;
	align-items: center;
	gap: 0.95rem;
}

.author-avatar-wrap {
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	flex-shrink: 0;
}

.author-brand-badge {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #032B20;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid #D6CEBE;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 7px;
	overflow: hidden;
}

.author-brand-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.author-text-meta {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.author-text-meta .author-name {
	font-weight: 700;
	font-size: 0.925rem;
	color: #1B4332;
}

.author-text-meta .post-publish-date {
	font-size: 0.8rem;
	color: #8A7552;
}

.author-actions-right {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.btn-journal-action {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid #D6CEBE;
	background: transparent;
	color: #1B4332;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 1.1rem;
	transition: all 0.25s ease;
}

.btn-journal-action:hover {
	background: #1B4332;
	color: #FFFFFF;
	border-color: #1B4332;
	transform: scale(1.05);
}

/* 2. Imagen Principal (Hero Figure) */
.journal-hero-figure {
	margin: 0 0 3rem;
}

.journal-hero-img-wrap {
	border-radius: 14px;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #E2DCCE;
	box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

.journal-hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.journal-figure-caption {
	font-size: 0.85rem;
	font-style: italic;
	color: #8C9995;
	margin-top: 0.85rem;
	text-align: left;
}

/* 3. Prosa Editorial (Drop Cap & Tipografía) */
.journal-prose-content {
	font-size: 1.075rem;
	line-height: 1.85;
	color: #3A4D48;
}

.journal-prose-content > p:first-of-type::first-letter {
	font-family: var(--font-heading);
	float: left;
	font-size: 4.65rem;
	line-height: 0.8;
	padding-right: 0.85rem;
	padding-top: 0.2rem;
	color: #1B4332;
	font-weight: 700;
}

.journal-prose-content p {
	margin-bottom: 1.75rem;
}

.journal-prose-content blockquote {
	background: transparent;
	border-left: 3px solid #D4AF37;
	padding: 1.25rem 0 1.25rem 2rem;
	margin: 2.75rem 0;
	font-family: var(--font-heading);
	font-size: 1.55rem;
	line-height: 1.45;
	font-style: italic;
	color: #1B4332;
}

.journal-prose-content h2,
.journal-prose-content h3 {
	font-family: var(--font-heading);
	color: #1B4332;
	margin: 2.75rem 0 1.15rem;
	font-weight: 600;
	line-height: 1.25;
}

.journal-prose-content h2 {
	font-size: 2.15rem;
}

.journal-prose-content h3 {
	font-size: 1.65rem;
}

/* 4. Curated Journey Callout Box */
.journal-curated-journey-box {
	background: #F4F9F6;
	border: 1.5px solid #C3DFD3;
	border-radius: 14px;
	padding: 2.25rem 2.5rem;
	margin: 3.5rem 0;
	box-shadow: 0 4px 18px rgba(27, 67, 50, 0.04);
}

.journey-box-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.75rem;
}

.journey-box-badge {
	display: inline-block;
	border: 1px solid #1B4332;
	font-size: 0.725rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #1B4332;
	padding: 0.2rem 0.65rem;
	border-radius: 4px;
	text-transform: uppercase;
}

.journey-box-icon {
	font-size: 1.5rem;
	color: #1B4332;
}

.journey-box-title {
	font-family: var(--font-heading);
	font-size: 1.75rem;
	line-height: 1.25;
	color: #1B4332;
	margin: 0.65rem 0 0.75rem;
	font-weight: 600;
}

.journey-box-desc {
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0 0 1.65rem;
}

.btn-discover-journey {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	background: #032B20;
	color: #FFFFFF;
	padding: 0.75rem 1.65rem;
	border-radius: 50px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-discover-journey:hover {
	background: #0F271D;
	color: #FAF7F2;
	transform: translateX(3px);
}

/* 5. Biografía del Autor */
.journal-author-bio-card {
	display: flex;
	gap: 1.85rem;
	align-items: flex-start;
	padding: 2.5rem 0;
	border-top: 1px solid #EBE4D8;
	border-bottom: 1px solid #EBE4D8;
	margin: 3.5rem 0;
}

.bio-avatar-col {
	flex-shrink: 0;
}

.bio-brand-avatar-circle {
	width: 76px;
	height: 76px;
	min-width: 76px;
	min-height: 76px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: #032B20;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #D6CEBE;
	box-shadow: 0 4px 14px rgba(3, 43, 32, 0.12);
	padding: 12px;
	overflow: hidden;
}

.bio-brand-logo-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.bio-overline {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.35rem;
}

.bio-name {
	font-family: var(--font-heading);
	font-size: 1.45rem;
	color: #1B4332;
	margin: 0 0 0.65rem;
	font-weight: 600;
}

.bio-description {
	font-size: 0.9rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0;
}

/* 6. Navegación entre Artículos */
.journal-story-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.75rem;
	margin-bottom: 2rem;
}

.story-nav-link {
	display: flex;
	flex-direction: column;
	padding: 1.45rem 1.65rem;
	border-radius: 12px;
	border: 1px solid #E2DCCE;
	background: #FAF7F2;
	text-decoration: none;
	transition: all 0.25s ease;
	height: 100%;
}

.story-nav-link:hover {
	border-color: #1B4332;
	background: #FFFFFF;
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.story-next .story-nav-link {
	text-align: right;
	align-items: flex-end;
}

.nav-direction-label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.45rem;
}

.nav-story-title {
	font-family: var(--font-heading);
	font-size: 1.15rem;
	line-height: 1.35;
	color: #1B4332;
	font-weight: 600;
}

/* 7. Barra Lateral (Sidebar) */
.journal-single-sidebar {
	position: sticky;
	top: 140px;
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
}

.journal-sidebar-widget {
	border-radius: 14px;
	overflow: hidden;
}

/* Widget 1: Curated Tours */
.widget-curated-tours {
	background: #FAF7F2;
	border: 1.5px solid #E2DCCE;
	padding: 1.85rem 1.65rem;
}

.widget-curated-overline {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 1.35rem;
}

.sidebar-tours-list {
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
}

.sidebar-tour-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	text-decoration: none;
	padding-bottom: 1.15rem;
	border-bottom: 1px solid #EBE4D8;
	transition: transform 0.2s ease;
}

.sidebar-tour-card:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.sidebar-tour-card:hover {
	transform: translateX(3px);
}

.sidebar-tour-thumb {
	width: 65px;
	height: 65px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
	background: #E2DCCE;
}

.sidebar-tour-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-tour-title {
	font-family: var(--font-heading);
	font-size: 1.05rem;
	line-height: 1.25;
	color: #1B4332;
	margin: 0 0 0.25rem;
	font-weight: 600;
}

.sidebar-tour-meta {
	font-size: 0.775rem;
	color: #8A7552;
	font-weight: 600;
}

/* Widget 2: Newsletter Card */
.widget-newsletter-card {
	background: #032B20;
	padding: 2.35rem 1.85rem;
	color: #FFFFFF;
}

.sidebar-newsletter-icon {
	margin-bottom: 1.25rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sidebar-brand-logo-img {
	max-height: 52px;
	width: auto;
	object-fit: contain;
	display: block;
}

.sidebar-newsletter-title {
	font-family: var(--font-heading);
	font-size: 1.55rem;
	color: #FFFFFF;
	margin: 0 0 0.75rem;
	font-weight: 600;
}

.sidebar-newsletter-desc {
	font-size: 0.85rem;
	line-height: 1.6;
	color: #C3DFD3;
	margin: 0 0 1.65rem;
}

.sidebar-email-input {
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border-radius: 50px !important;
	padding: 0.65rem 1.25rem !important;
	color: #FFFFFF !important;
	font-size: 0.85rem !important;
	outline: none !important;
	box-shadow: none !important;
	margin-bottom: 0.85rem;
	text-align: center;
}

.sidebar-email-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.btn-sidebar-subscribe {
	width: 100%;
	background: #D4AF37;
	color: #032B20;
	border: none;
	border-radius: 50px;
	padding: 0.75rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn-sidebar-subscribe:hover {
	background: #E5C258;
}

/* 8. More from the Journal (Bottom Section) */
.journal-more-stories-section {
	background: #FAF7F2;
	padding: 5rem 0;
	margin-top: 4rem;
	border-top: 1px solid #EBE4D8;
}

.more-stories-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
}

.more-overline {
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.5rem;
}

.more-main-title {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	color: #1B4332;
	margin: 0;
	font-weight: 600;
}

.link-view-all-stories {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1B4332;
	text-decoration: none;
	transition: color 0.25s ease;
}

.link-view-all-stories:hover {
	color: #8A7552;
}

/* Responsivo para Single Story */
@media (max-width: 1024px) {
	.journal-single-layout {
		grid-template-columns: 1fr;
		gap: 3.5rem;
	}
	.journal-single-sidebar {
		position: static;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.journal-single-page {
		padding-top: 100px;
	}
	.journal-article-title {
		font-size: 2.35rem;
	}
	.journal-single-sidebar {
		grid-template-columns: 1fr;
	}
	.journal-story-navigation {
		grid-template-columns: 1fr;
	}
	.story-next .story-nav-link {
		text-align: left;
		align-items: flex-start;
	}
	.more-stories-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}

/* ==========================================================================
   TOURS & PACKAGES ARCHIVE (Catálogo de Lujo)
   ========================================================================== */

.tours-archive-page {
	padding-top: 220px;
	background: #FFFFFF;
}

/* 1. Header Editorial */
.tours-header-section {
	padding-bottom: 2.5rem;
	border-bottom: 1px solid #EBE4D8;
	margin-bottom: 3.5rem;
}

.tours-header-inner {
	max-width: 780px;
	margin: 0 auto 2.5rem;
}

.tours-overline {
	display: inline-block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #8A7552;
	text-transform: uppercase;
	margin-bottom: 0.85rem;
}

.tours-main-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.12;
	color: #1B4332;
	margin: 0 0 1.15rem;
	font-weight: 600;
	letter-spacing: -0.01em;
}

.tours-lead-desc {
	font-size: 1.075rem;
	line-height: 1.65;
	color: #4A5854;
	margin: 0;
}

/* Filtro de Píldoras Horizontal */
.tours-filter-nav {
	display: flex;
	justify-content: center;
}

.tours-filter-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.tours-filter-pill {
	display: inline-block;
	padding: 0.6rem 1.45rem;
	border-radius: 50px;
	border: 1.5px solid #E2DCCE;
	background: #FAF7F2;
	color: #4A5854;
	font-size: 0.825rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.25s ease;
}

.tours-filter-pill:hover {
	border-color: #1B4332;
	color: #1B4332;
	background: #FFFFFF;
	transform: translateY(-1px);
}

.tours-filter-pill.active {
	background: #032B20;
	color: #FAF7F2;
	border-color: #032B20;
	box-shadow: 0 4px 14px rgba(3, 43, 32, 0.25);
}

/* 2. Cuadrícula de Tours de Lujo (3 Columnas) */
.tours-grid-section {
	margin-bottom: 5rem;
}

.tours-catalogue-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.25rem;
}

.tour-card-luxury {
	background: #FFFFFF;
	border: 1.5px solid #EBE4D8;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.tour-card-luxury:hover {
	transform: translateY(-6px);
	border-color: #D4AF37;
	box-shadow: 0 16px 36px rgba(27, 67, 50, 0.1);
}

.tour-card-media-wrap {
	aspect-ratio: 16 / 10;
	position: relative;
	overflow: hidden;
	background: #E2DCCE;
}

.tour-card-media-link {
	display: block;
	width: 100%;
	height: 100%;
}

.tour-card-media-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	display: block;
}

.tour-card-luxury:hover .tour-card-media-wrap img {
	transform: scale(1.06);
}

/* Badges sobre la imagen */
.tour-badge-top-left {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
}

.badge-type-pill {
	display: inline-block;
	padding: 0.35rem 0.85rem;
	border-radius: 50px;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.badge-type-pill.badge-package {
	background: #032B20;
	color: #FAF7F2;
	border: 1px solid rgba(212, 175, 55, 0.4);
}

.badge-type-pill.badge-tour {
	background: #8A7552;
	color: #FAF7F2;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.tour-badge-top-right {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 2;
}

.badge-price-pill {
	display: inline-flex;
	align-items: baseline;
	gap: 0.2rem;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 50px;
	padding: 0.35rem 0.85rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.badge-price-pill .price-from {
	font-size: 0.65rem;
	color: #8A7552;
	text-transform: uppercase;
	font-weight: 600;
}

.badge-price-pill .price-amount {
	font-size: 0.925rem;
	font-weight: 800;
	color: #032B20;
}

.badge-price-pill .price-curr {
	font-size: 0.65rem;
	color: #8A7552;
	font-weight: 600;
}

/* Cuerpo de la Tarjeta */
.tour-card-body {
	padding: 1.65rem 1.65rem 1.45rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tour-card-location {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.775rem;
	color: #8A7552;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.65rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.tour-card-location i {
	color: #D4AF37;
	font-size: 0.9rem;
	flex-shrink: 0;
}

.tour-card-headline {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	line-height: 1.3;
	color: #1B4332;
	margin: 0 0 0.85rem;
	font-weight: 600;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.tour-card-headline a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease;
}

.tour-card-headline a:hover {
	color: #8A7552;
}

/* Ficha de Micro-Especificaciones */
.tour-card-specs-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-bottom: 1rem;
}

.spec-micro-item {
	background: #FAF7F2;
	border: 1px solid #EBE4D8;
	border-radius: 6px;
	padding: 0.25rem 0.6rem;
	font-size: 0.725rem;
	color: #4A5854;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-weight: 500;
}

.spec-micro-item i {
	color: #8A7552;
	font-size: 0.8rem;
}

.tour-card-description {
	font-size: 0.875rem;
	line-height: 1.55;
	color: #4A5854;
	margin: 0 0 1.25rem;
	flex-grow: 1;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Pie de Tarjeta */
.tour-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1rem;
	border-top: 1px solid #EBE4D8;
	margin-top: auto;
}

.tour-card-rating {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

.stars-row {
	color: #D4AF37;
	font-size: 0.85rem;
	display: flex;
	gap: 0.1rem;
}

.rating-label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #1B4332;
}

.btn-tour-explore {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: #032B20;
	color: #FFFFFF;
	padding: 0.55rem 1.15rem;
	border-radius: 50px;
	font-size: 0.725rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-tour-explore:hover {
	background: #0F271D;
	color: #FAF7F2;
	transform: translateX(2px);
}

/* Paginación de Tours */
.tours-pagination-wrap {
	display: flex;
	justify-content: center;
	margin-top: 3.5rem;
}

.tours-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 0.85rem;
	border-radius: 8px;
	border: 1px solid #E2DCCE;
	background: #FAF7F2;
	color: #1B4332;
	font-weight: 600;
	font-size: 0.875rem;
	text-decoration: none;
	margin: 0 0.25rem;
	transition: all 0.25s ease;
}

.tours-pagination-wrap .page-numbers:hover,
.tours-pagination-wrap .page-numbers.current {
	background: #032B20;
	color: #FFFFFF;
	border-color: #032B20;
}

/* 3. Banner CTA de Viajes a Medida */
.tours-bespoke-cta-section {
	padding-bottom: 5rem;
}

.tours-bespoke-box {
	background: #032B20;
	border-radius: 18px;
	padding: 4rem 2rem;
	text-align: center;
	color: #FFFFFF;
	border: 1px solid rgba(212, 175, 55, 0.3);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.bespoke-icon-wrap {
	margin-bottom: 1.35rem;
	display: flex;
	justify-content: center;
}

.bespoke-brand-logo {
	max-height: 56px;
	width: auto;
	object-fit: contain;
	display: block;
}

.bespoke-title {
	font-family: var(--font-heading);
	font-size: 2.65rem;
	color: #FFFFFF;
	margin: 0 0 0.85rem;
	font-weight: 600;
}

.bespoke-subtitle {
	font-size: 1.05rem;
	line-height: 1.65;
	color: #C3DFD3;
	max-width: 680px;
	margin: 0 auto 2.25rem;
}

.btn-bespoke-modal {
	background: #D4AF37;
	color: #032B20;
	border: none;
	padding: 0.95rem 2.5rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	transition: all 0.25s ease;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.btn-bespoke-modal:hover {
	background: #E5C258;
	transform: translateY(-2px);
}

/* Responsivo para Tours Archive */
@media (max-width: 1024px) {
	.tours-catalogue-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.5rem;
	}
	.tours-main-title {
		font-size: 2.85rem;
	}
}

@media (max-width: 768px) {
	.tours-archive-page {
		padding-top: 130px;
	}
	.tours-main-title {
		font-size: 2.25rem;
	}
	.tours-lead-desc {
		font-size: 0.975rem;
	}
	.tours-catalogue-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.tours-bespoke-box {
		padding: 3rem 1.25rem;
	}
	.tours-bespoke-title {
		font-size: 2rem;
	}
}

/* ==========================================================================
   DESTINATION SINGLE LANDING PAGE (SEO & Travel Guide)
   ========================================================================== */

.destination-single-page {
	background: #FFFFFF;
}

/* 1. Hero Panorámico */
.destination-hero-section {
	position: relative;
	min-height: 520px;
	padding: 170px 0 3.5rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	color: #FFFFFF;
	overflow: hidden;
}

.destination-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.destination-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.destination-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(7, 30, 23, 0.72) 0%,
		rgba(7, 30, 23, 0.55) 45%,
		rgba(7, 30, 23, 0.94) 100%
	);
}

.destination-hero-container {
	position: relative;
	z-index: 2;
}

.destination-hero-content {
	max-width: 840px;
	margin: 0 auto 3rem;
}

.destination-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.85rem;
}

.destination-main-heading {
	font-family: var(--font-heading);
	font-size: 4rem;
	line-height: 1.1;
	color: #FFFFFF;
	margin: 0 0 1.25rem;
	font-weight: 600;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.destination-lead-summary {
	font-size: 1.15rem;
	line-height: 1.65;
	color: #EAE6DB;
	margin: 0;
}

/* Ficha Flotante de Datos Clave */
.destination-quick-facts-bar {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	background: rgba(3, 43, 32, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border: 1px solid rgba(237, 232, 208, 0.25);
	border-radius: 14px;
	padding: 1.35rem 2rem;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.fact-item {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.fact-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(212, 175, 55, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	color: #D4AF37;
	flex-shrink: 0;
}

.fact-data {
	display: flex;
	flex-direction: column;
}

.fact-label {
	font-size: 0.725rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #C3DFD3;
}

.fact-value {
	font-family: var(--font-heading);
	font-size: 1.1rem;
	color: #FFFFFF;
	font-weight: 600;
	margin-top: 0.15rem;
	line-height: 1.2;
}

/* 2. Reseña Editorial y Destacados */
.destination-overview-section {
	padding: 4.5rem 0 3.5rem;
}

.destination-overview-grid {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 4.5rem;
	align-items: flex-start;
}

.overview-section-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.65rem;
}

.overview-heading {
	font-family: var(--font-heading);
	font-size: 2.35rem;
	line-height: 1.2;
	color: #1B4332;
	margin: 0 0 1.5rem;
	font-weight: 600;
}

.overview-prose {
	font-size: 1.05rem;
	line-height: 1.85;
	color: #4A5854;
}

.overview-prose p {
	margin-bottom: 1.35rem;
}

.highlights-card {
	background: #FAF7F2;
	border: 1.5px solid #E2DCCE;
	border-radius: 14px;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.highlights-card-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.65rem;
}

.highlights-header-icon {
	font-size: 1.5rem;
	color: #D4AF37;
}

.highlights-card-title {
	font-family: var(--font-heading);
	font-size: 1.45rem;
	color: #1B4332;
	margin: 0;
	font-weight: 600;
}

.highlights-card-subtitle {
	font-size: 0.875rem;
	color: #8A7552;
	margin: 0 0 1.35rem;
	font-weight: 500;
}

.highlights-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-size: 0.925rem;
	line-height: 1.45;
	color: #1B4332;
	font-weight: 500;
}

.highlight-item i {
	color: #106B5A;
	font-size: 1.15rem;
	flex-shrink: 0;
	margin-top: 0.1rem;
}

/* 3. Catálogo de Tours del Destino */
.destination-tours-catalog-section {
	padding: 2rem 0 5rem;
}

.destination-no-tours {
	background: #FAF7F2;
	border: 1.5px dashed #D6CEBE;
	border-radius: 12px;
	padding: 3rem 2rem;
	margin-top: 2rem;
}

.btn-explore-all-tours {
	display: inline-block;
	background: #032B20;
	color: #FFFFFF;
	padding: 0.8rem 1.85rem;
	border-radius: 50px;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
	margin-top: 1rem;
	transition: background 0.25s ease;
}

.btn-explore-all-tours:hover {
	background: #0F271D;
}

/* Responsivo para Single Destination */
@media (max-width: 1024px) {
	.destination-main-heading {
		font-size: 3rem;
	}
	.destination-quick-facts-bar {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
	.destination-overview-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.destination-hero-section {
		padding: 130px 0 2.5rem;
	}
	.destination-main-heading {
		font-size: 2.35rem;
	}
	.destination-quick-facts-bar {
		grid-template-columns: 1fr;
		padding: 1.25rem 1.5rem;
	}
}

/* ==========================================================================
   GENERIC SINGLE PAGE TEMPLATE (page.php)
   ========================================================================== */

.andora-page-single {
	background: #FFFFFF;
	padding-bottom: 6rem;
}

.page-single-hero {
	position: relative;
	padding: 235px 0 4rem;
	color: #FFFFFF;
	text-align: center;
	overflow: hidden;
}

.page-single-hero.hero-solid-luxury {
	background: linear-gradient(180deg, #071E17 0%, #1B4332 100%);
}

.page-single-hero.has-hero-image {
	min-height: 400px;
	display: flex;
	align-items: flex-end;
}

.page-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.page-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(7, 30, 23, 0.8) 0%, rgba(7, 30, 23, 0.95) 100%);
}

.page-hero-container {
	position: relative;
	z-index: 2;
}

.page-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.85rem;
}

.page-main-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0 0 1rem;
	font-weight: 600;
}

.page-lead-subtitle {
	font-size: 1.15rem;
	line-height: 1.65;
	color: #EAE6DB;
	max-width: 720px;
	margin: 0 auto;
}

.page-content-section {
	max-width: 920px;
	margin: 3.5rem auto 0;
}

.page-article-card {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 1rem 0;
}

.andora-prose {
	font-size: 1.0625rem;
	line-height: 1.85;
	color: #3B4B46;
}

.andora-prose p {
	margin-bottom: 1.5rem;
}

.andora-prose h2 {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	color: #1B4332;
	margin: 2.5rem 0 1.25rem;
	font-weight: 600;
}

.andora-prose h3 {
	font-family: var(--font-heading);
	font-size: 1.65rem;
	color: #1B4332;
	margin: 2rem 0 1rem;
	font-weight: 600;
}

.andora-prose ul, .andora-prose ol {
	margin: 0 0 1.5rem 1.5rem;
}

.andora-prose li {
	margin-bottom: 0.5rem;
}

/* ==========================================================================
   CONTACT PAGE (/contactenos/)
   ========================================================================== */

.andora-contact-page {
	background: #FAF7F2;
	padding-bottom: 6rem;
}

.contact-hero-section {
	padding: 235px 0 4rem;
	background: linear-gradient(180deg, #071E17 0%, #1B4332 100%);
	color: #FFFFFF;
	text-align: left;
}

.contact-header-container {
	text-align: left;
}

.contact-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.75rem;
	text-align: left;
}

.contact-main-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0 0 1rem;
	font-weight: 600;
	text-align: left;
}

.contact-lead-subtitle {
	font-size: 1.15rem;
	line-height: 1.65;
	color: #EAE6DB;
	max-width: 720px;
	margin: 0;
	text-align: left;
}

.contact-main-section {
	margin-top: 3.5rem;
}

.contact-layout-grid {
	display: grid;
	grid-template-columns: 420px 1fr;
	gap: 3.5rem;
	align-items: flex-start;
}

/* Tarjeta de Canales de Contacto */
.contact-info-card {
	background: #FFFFFF;
	border: 1px solid #E6E0D3;
	border-radius: 14px;
	padding: 2.25rem 2rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-card-badge-row {
	margin-bottom: 0.75rem;
}

.contact-badge-pill {
	display: inline-block;
	font-size: 0.725rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #106B5A;
	background: #E8F4F0;
	padding: 0.3rem 0.75rem;
	border-radius: 4px;
}

.contact-card-headline {
	font-family: var(--font-heading);
	font-size: 1.85rem;
	color: #1B4332;
	margin: 0 0 0.65rem;
	font-weight: 600;
}

.contact-card-desc {
	font-size: 0.925rem;
	line-height: 1.55;
	color: #6C7A75;
	margin: 0 0 1.75rem;
}

.contact-channels-list {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
}

.channel-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.channel-icon-box {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #FAF7F2;
	border: 1px solid #E2DCCE;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: #106B5A;
	flex-shrink: 0;
}

.channel-details {
	display: flex;
	flex-direction: column;
}

.channel-label {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.15rem;
}

.channel-value {
	font-size: 1.05rem;
	font-weight: 600;
	color: #1B4332;
	line-height: 1.35;
}

.channel-link {
	text-decoration: none;
	transition: color 0.2s ease;
}

.channel-link:hover {
	color: #106B5A;
}

.channel-address {
	font-style: normal;
}

.channel-subtext {
	font-size: 0.775rem;
	color: #8C9994;
	margin-top: 0.2rem;
}

/* WhatsApp Box */
.whatsapp-cta-box {
	background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
	border-radius: 14px;
	padding: 1.75rem;
	color: #FFFFFF;
	margin-top: 1.75rem;
	box-shadow: 0 8px 24px rgba(7, 94, 84, 0.2);
}

.whatsapp-box-title {
	font-family: var(--font-heading);
	font-size: 1.4rem;
	color: #FFFFFF;
	margin: 0 0 0.35rem;
	font-weight: 600;
}

.whatsapp-box-desc {
	font-size: 0.875rem;
	color: #E2F5ED;
	margin: 0 0 1.15rem;
	line-height: 1.45;
}

.btn-whatsapp-direct {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #25D366;
	color: #FFFFFF;
	padding: 0.65rem 1.35rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.btn-whatsapp-direct:hover {
	background: #1EBE5D;
	transform: translateY(-2px);
}

.contact-map-card {
	border-radius: 14px;
	overflow: hidden;
	margin-top: 1.75rem;
	border: 1px solid #E6E0D3;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Tarjeta de Formulario */
.contact-form-card {
	background: #FFFFFF;
	border: 1px solid #E6E0D3;
	border-radius: 14px;
	padding: 2.75rem 2.5rem;
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.04);
}

.form-card-header {
	margin-bottom: 2rem;
}

.form-badge {
	display: inline-block;
	font-size: 0.725rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.5rem;
}

.form-card-title {
	font-family: var(--font-heading);
	font-size: 2.35rem;
	color: #1B4332;
	margin: 0 0 0.65rem;
	font-weight: 600;
}

.form-card-subtitle {
	font-size: 0.95rem;
	color: #6C7A75;
	margin: 0;
	line-height: 1.55;
}

.andora-luxury-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.form-row-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

.form-label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #2F3E39;
}

.form-control, .form-select, .form-textarea {
	width: 100%;
	padding: 0.8rem 1rem;
	border: 1.5px solid #D6CEBE;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: #1B4332;
	background: #FAF7F2;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.form-control:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
	border-color: #106B5A;
	background: #FFFFFF;
}

.btn-submit-contact {
	width: 100%;
	background: #1B4332;
	color: #FFFFFF;
	border: none;
	padding: 1rem 2rem;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(27, 67, 50, 0.25);
	margin-top: 0.5rem;
}

.btn-submit-contact:hover {
	background: #032B20;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(27, 67, 50, 0.35);
}

.form-privacy-note {
	font-size: 0.775rem;
	color: #8C9994;
	text-align: center;
	margin: 0.75rem 0 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
}

/* ==========================================================================
   LIBRO DE RECLAMACIONES (/libro-de-reclamaciones/)
   ========================================================================== */

.andora-claims-page {
	background: #FAF7F2;
	padding-bottom: 6rem;
}

.claims-hero-section {
	padding: 235px 0 4rem;
	background: linear-gradient(180deg, #071E17 0%, #1B4332 100%);
	color: #FFFFFF;
}

.claims-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.75rem;
}

.claims-main-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0 0 1rem;
	font-weight: 600;
}

.claims-lead-subtitle {
	font-size: 1.1rem;
	line-height: 1.65;
	color: #EAE6DB;
	max-width: 720px;
	margin: 0 auto;
}

.claims-content-section {
	max-width: 960px;
	margin-top: 3.5rem;
}

.claims-card {
	background: #FFFFFF;
	border: 1px solid #E6E0D3;
	border-radius: 14px;
	padding: 2.75rem;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.04);
}

.claims-header-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #061F17;
	border-radius: 10px;
	padding: 1.5rem 1.85rem;
	color: #FFFFFF;
	margin-bottom: 2.5rem;
}

.claims-company-info {
	display: flex;
	align-items: center;
	gap: 1.25rem;
}

.claims-brand-logo {
	height: 38px;
	width: auto;
}

.company-text-meta {
	display: flex;
	flex-direction: column;
}

.company-name {
	font-size: 1.05rem;
	color: #FFFFFF;
}

.company-ruc, .company-address {
	font-size: 0.8rem;
	color: #C3DFD3;
}

.claims-number-badge {
	text-align: right;
	display: flex;
	flex-direction: column;
}

.badge-label {
	font-size: 0.725rem;
	letter-spacing: 0.08em;
	color: #D4AF37;
	font-weight: 700;
}

.badge-code {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	color: #FFFFFF;
	letter-spacing: 0.05em;
}

.badge-date {
	font-size: 0.775rem;
	color: #A3C6B9;
}

.claims-fieldset {
	border: 1px solid #E2DCCE;
	border-radius: 10px;
	padding: 1.75rem 1.85rem;
	margin-bottom: 2rem;
	background: #FFFFFF;
}

.claims-legend {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: #1B4332;
	font-weight: 600;
	padding: 0 0.5rem;
}

.legend-num {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #1B4332;
	color: #FFFFFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.8125rem;
	font-family: var(--font-body);
	font-weight: 700;
}

.doc-input-group {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 0.5rem;
}

.form-row-3col {
	display: grid;
	grid-template-columns: 1fr 1fr 1.2fr;
	gap: 1.25rem;
}

.radio-toggle-group {
	display: flex;
	gap: 1.5rem;
	padding: 0.65rem 0;
}

.radio-label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.925rem;
	color: #1B4332;
	cursor: pointer;
}

.claims-type-explanation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
	margin-bottom: 1.5rem;
}

.type-choice-box {
	background: #FAF7F2;
	border: 1.5px solid #E2DCCE;
	border-radius: 8px;
	padding: 1rem 1.25rem;
}

.type-choice-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	color: #1B4332;
	cursor: pointer;
	margin-bottom: 0.35rem;
}

.type-choice-desc {
	font-size: 0.8rem;
	color: #6C7A75;
	margin: 0;
	line-height: 1.4;
}

.claims-legal-notes {
	background: #FAF7F2;
	border-left: 3px solid #D4AF37;
	padding: 1.25rem 1.5rem;
	border-radius: 0 8px 8px 0;
	margin-bottom: 2rem;
}

.claims-legal-notes p {
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #5A6964;
	margin: 0 0 0.5rem;
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
}

.claims-legal-notes p:last-child {
	margin-bottom: 0;
}

.btn-submit-claim {
	width: 100%;
	background: #032B20;
	color: #FFFFFF;
	border: none;
	padding: 1.15rem 2rem;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	transition: all 0.25s ease;
	box-shadow: 0 4px 16px rgba(3, 43, 32, 0.3);
}

.btn-submit-claim:hover {
	background: #1B4332;
	transform: translateY(-2px);
}

.claim-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(3, 43, 32, 0.85);
	backdrop-filter: blur(8px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}

.claim-modal-dialog {
	background: #FFFFFF;
	border-radius: 16px;
	padding: 3rem 2.5rem;
	max-width: 540px;
	width: 100%;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.claim-success-icon {
	font-size: 4rem;
	color: #106B5A;
	margin-bottom: 1rem;
}

.claim-success-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	color: #1B4332;
	margin: 0 0 0.5rem;
	font-weight: 600;
}

.claim-success-code {
	font-size: 1.1rem;
	color: #8A7552;
	margin: 0 0 1.25rem;
}

.claim-success-desc {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #5A6964;
	margin: 0 0 2rem;
}

.btn-claim-modal-close {
	background: #1B4332;
	color: #FFFFFF;
	border: none;
	padding: 0.85rem 2rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
}

.btn-claim-modal-close:hover {
	background: #032B20;
}

/* ==========================================================================
   SOBRE NOSOTROS (/sobre-nosotros/)
   ========================================================================== */

.andora-about-page {
	background: #FFFFFF;
	padding-bottom: 6rem;
}

.about-hero-section {
	position: relative;
	min-height: 480px;
	padding: 235px 0 4.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.about-hero-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(7, 30, 23, 0.75) 0%, rgba(7, 30, 23, 0.92) 100%);
}

.about-hero-container {
	position: relative;
	z-index: 2;
	max-width: 840px;
}

.about-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.85rem;
}

.about-main-title {
	font-family: var(--font-heading);
	font-size: 4rem;
	line-height: 1.1;
	color: #FFFFFF;
	margin: 0 0 1.25rem;
	font-weight: 600;
}

.about-lead-subtitle {
	font-size: 1.15rem;
	line-height: 1.65;
	color: #EAE6DB;
	margin: 0;
}

.about-story-section {
	padding: 5rem 0 4rem;
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 4.5rem;
	align-items: center;
}

.story-image-wrap {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

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

.story-image-badge {
	position: absolute;
	bottom: 1.5rem;
	left: 1.5rem;
	right: 1.5rem;
	background: rgba(3, 43, 32, 0.9);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(237, 232, 208, 0.3);
	border-radius: 10px;
	padding: 1.15rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1.25rem;
	color: #FFFFFF;
}

.badge-years {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	font-weight: 700;
	color: #D4AF37;
	line-height: 1;
}

.badge-text {
	font-size: 0.875rem;
	line-height: 1.35;
	color: #EAE6DB;
}

.story-section-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #8A7552;
	margin-bottom: 0.65rem;
}

.story-headline {
	font-family: var(--font-heading);
	font-size: 2.65rem;
	line-height: 1.18;
	color: #1B4332;
	margin: 0 0 1.5rem;
	font-weight: 600;
}

.story-prose {
	font-size: 1.05rem;
	line-height: 1.85;
	color: #4A5854;
}

.story-prose p {
	margin-bottom: 1.35rem;
}

.about-pullquote {
	border-left: 3px solid #D4AF37;
	padding-left: 1.5rem;
	margin: 2rem 0 0;
	font-style: italic;
}

.about-pullquote p {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	color: #1B4332;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.about-pullquote cite {
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-style: normal;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8A7552;
	font-weight: 600;
}

/* Pilares */
.about-pillars-section {
	background: #FAF7F2;
	padding: 5rem 0;
}

.pillars-grid-4col {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.75rem;
	margin-top: 3rem;
}

.pillar-card {
	background: #FFFFFF;
	border: 1px solid #E2DCCE;
	border-radius: 12px;
	padding: 2.25rem 1.75rem;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pillar-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.pillar-icon-wrap {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #032B20;
	color: #D4AF37;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.35rem;
}

.pillar-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	color: #1B4332;
	margin: 0 0 0.75rem;
	font-weight: 600;
	line-height: 1.3;
}

.pillar-desc {
	font-size: 0.925rem;
	line-height: 1.6;
	color: #5A6964;
	margin: 0;
}

/* Stats Bar */
.about-stats-bar-section {
	background: #071E17;
	padding: 3.5rem 0;
	color: #FFFFFF;
}

.about-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	text-align: center;
}

.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number {
	font-family: var(--font-heading);
	font-size: 3.25rem;
	color: #D4AF37;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 0.875rem;
	color: #C3DFD3;
	letter-spacing: 0.04em;
}

/* Responsivo para Páginas */
@media (max-width: 1024px) {
	.contact-layout-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.pillars-grid-4col {
		grid-template-columns: repeat(2, 1fr);
	}
	.about-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2.5rem;
	}
}

@media (max-width: 768px) {
	.contact-hero-section, .claims-hero-section, .about-hero-section, .page-single-hero, .search-hero-section {
		padding: 140px 0 2.5rem;
	}
	.contact-main-title, .claims-main-title, .about-main-title, .page-main-title, .search-main-title {
		font-size: 2.35rem;
	}
	.form-row-2col, .form-row-3col, .doc-input-group, .claims-type-explanation {
		grid-template-columns: 1fr;
	}
	.claims-header-box {
		flex-direction: column;
		gap: 1.25rem;
		text-align: center;
	}
	.claims-number-badge {
		text-align: center;
	}
	.pillars-grid-4col {
		grid-template-columns: 1fr;
	}
	.about-stats-grid {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   SEARCH RESULTS PAGE (search.php - Tours & Experiences Search)
   ========================================================================== */

.andora-search-results-page {
	background: #FFFFFF;
	padding-bottom: 6rem;
}

.search-hero-section {
	padding: 235px 0 4rem;
	background: linear-gradient(180deg, #071E17 0%, #1B4332 100%);
	color: #FFFFFF;
	text-align: center;
}

.search-overline {
	display: block;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #D4AF37;
	margin-bottom: 0.75rem;
}

.search-main-title {
	font-family: var(--font-heading);
	font-size: 3.5rem;
	line-height: 1.15;
	color: #FFFFFF;
	margin: 0 0 1rem;
	font-weight: 600;
}

.search-lead-subtitle {
	font-size: 1.125rem;
	line-height: 1.65;
	color: #EAE6DB;
	max-width: 680px;
	margin: 0 auto 2.5rem;
}

/* Barra de refinamiento en el hero */
.search-refine-wrapper {
	max-width: 680px;
	margin: 0 auto;
}

.search-refine-form {
	display: flex;
	align-items: center;
	background: rgba(6, 21, 16, 0.75);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1.5px solid rgba(212, 175, 55, 0.45);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-refine-form:focus-within {
	border-color: #D4AF37;
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55), 0 0 20px rgba(212, 175, 55, 0.2);
}

.search-refine-group {
	display: flex;
	align-items: center;
	flex-grow: 1;
	padding: 0 1.25rem;
	gap: 0.75rem;
}

.refine-icon {
	font-size: 1.25rem;
	color: #D4AF37;
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.search-refine-input {
	width: 100%;
	background: transparent;
	border: none;
	padding: 0.9rem 0;
	color: #FFFFFF;
	font-family: var(--font-body);
	font-size: 0.95rem;
	outline: none;
}

.search-refine-input::placeholder {
	color: #A3B8B1;
}

.btn-search-refine-submit {
	background: #D4AF37;
	color: #032B20;
	border: none;
	padding: 0.95rem 1.85rem;
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, color 0.25s ease;
	flex-shrink: 0;
}

.btn-search-refine-submit:hover {
	background: #E5C258;
}

/* Resultados */
.search-results-catalog-section {
	padding: 4.5rem 0 2rem;
}

.search-tours-grid {
	margin-top: 0;
}

.search-pagination-wrap {
	margin-top: 3.5rem;
	text-align: center;
}

/* Estado vacío elegante */
.search-empty-state-box {
	background: #FAF7F2;
	border: 1.5px dashed #D6CEBE;
	border-radius: 14px;
	padding: 4rem 2rem;
	max-width: 780px;
	margin: 1rem auto 3rem;
}

.empty-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #032B20;
	color: #D4AF37;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.empty-title {
	font-family: var(--font-heading);
	font-size: 2.25rem;
	color: #1B4332;
	margin: 0 0 0.75rem;
	font-weight: 600;
}

.empty-desc {
	font-size: 1rem;
	color: #5A6964;
	max-width: 540px;
	margin: 0 auto 2rem;
	line-height: 1.6;
}

.empty-suggestion-pills {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.65rem;
	margin-bottom: 2.5rem;
}

.suggestion-pill {
	display: inline-block;
	background: #FFFFFF;
	border: 1px solid #D6CEBE;
	color: #1B4332;
	padding: 0.45rem 1rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.suggestion-pill:hover {
	background: #032B20;
	color: #FFFFFF;
	border-color: #032B20;
	transform: translateY(-2px);
}

.empty-actions-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.btn-view-all-catalog {
	background: #032B20;
	color: #FFFFFF;
	padding: 0.85rem 1.85rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.25s ease;
}

.btn-view-all-catalog:hover {
	background: #1B4332;
	transform: translateY(-2px);
}

.btn-contact-bespoke {
	background: transparent;
	color: #1B4332;
	border: 1.5px solid #1B4332;
	padding: 0.85rem 1.85rem;
	border-radius: 50px;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-contact-bespoke:hover {
	background: #1B4332;
	color: #FFFFFF;
}

/* ==========================================================================
   PHONE COUNTRY CODE SELECTOR (Desktop & Mobile Unified)
   ========================================================================== */

.phone-country-input-group {
	display: flex;
	align-items: stretch;
	width: 100%;
	border: 1px solid #D6CEBE;
	border-radius: 6px;
	background: #FFFFFF;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
	overflow: hidden;
}

.phone-country-input-group:focus-within {
	border-color: #032B20;
	box-shadow: 0 0 0 3px rgba(3, 43, 32, 0.1);
}

.phone-country-select {
	background: #FAF7F2;
	border: none;
	border-right: 1px solid #D6CEBE;
	padding: 0.75rem 0.65rem;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	color: #032B20;
	cursor: pointer;
	outline: none;
	flex-shrink: 0;
	width: 105px;
	border-radius: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='14' height='14' fill='none' stroke='%23032B20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.5rem center;
	padding-right: 1.5rem;
}

.phone-country-select:focus {
	background-color: #F3EFE6;
}

.phone-country-input-group .phone-number-input {
	border: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	flex-grow: 1;
	width: 100%;
	padding: 0.75rem 0.95rem;
	background: transparent !important;
	outline: none;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: #1B4332;
}

.phone-country-input-group .phone-number-input::placeholder {
	color: #9AA7A2;
}

@media (max-width: 480px) {
	.phone-country-select {
		width: 95px;
		font-size: 0.8125rem;
		padding: 0.7rem 0.5rem;
		padding-right: 1.3rem;
	}
	.phone-country-input-group .phone-number-input {
		padding: 0.7rem 0.75rem;
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   SMART AUTOCOMPLETE DROPDOWN (Country / Nationality)
   ========================================================================== */

.andora-autocomplete-wrapper {
	position: relative !important;
}

.andora-autocomplete-dropdown {
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	z-index: 1050;
	background: #FFFFFF;
	border: 1px solid #D6CEBE;
	border-radius: 6px;
	box-shadow: 0 10px 25px rgba(3, 43, 32, 0.12);
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	max-height: 220px;
	overflow-y: auto;
	font-family: var(--font-body);
}

.andora-autocomplete-dropdown::-webkit-scrollbar {
	width: 6px;
}

.andora-autocomplete-dropdown::-webkit-scrollbar-track {
	background: #FAF7F2;
}

.andora-autocomplete-dropdown::-webkit-scrollbar-thumb {
	background: #C5A880;
	border-radius: 3px;
}

.andora-autocomplete-item {
	padding: 0.65rem 1rem;
	font-size: 0.9375rem;
	color: #032B20;
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
	display: flex;
	align-items: center;
}

.andora-autocomplete-item strong {
	font-weight: 700;
	color: #10584B;
	text-decoration: underline;
	text-decoration-color: #C5A880;
	text-underline-offset: 2px;
}

.andora-autocomplete-item:hover,
.andora-autocomplete-item.is-active {
	background-color: #FAF7F2;
	color: #10584B;
}

/* ==========================================================================
   AIRBNB-STYLE WISHLIST & SHARE (Tour & Blog Actions)
   ========================================================================== */

/* Top bar row in Tour Hero */
.single-tour-hero-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.25rem;
	flex-wrap: wrap;
}

.tour-header-airbnb-actions {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.btn-tour-airbnb-action {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #FFFFFF;
	padding: 0.5rem 1rem;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-tour-airbnb-action i {
	font-size: 1.05rem;
	line-height: 1;
	transition: transform 0.2s ease;
}

.btn-tour-airbnb-action:hover {
	background: rgba(255, 255, 255, 0.28);
	border-color: rgba(255, 255, 255, 0.45);
	color: #FFFFFF;
	transform: translateY(-2px);
}

/* Journal / Blog Actions */
.btn-journal-action {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #D6CEBE;
	background: #FFFFFF;
	color: #032B20;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.15rem;
	cursor: pointer;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-journal-action:hover {
	border-color: #032B20;
	background: #FAF7F2;
	color: #10584B;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(3, 43, 32, 0.08);
}

/* Estado Activo / Guardado */
.btn-airbnb-wishlist.is-saved {
	color: #D97706 !important;
	border-color: #F59E0B !important;
	background-color: #FFFBEB !important;
}

.btn-tour-airbnb-action.btn-airbnb-wishlist.is-saved {
	background: rgba(245, 158, 11, 0.25) !important;
	border-color: #F59E0B !important;
	color: #FDE68A !important;
}

.btn-airbnb-wishlist.is-saved .icon-saved {
	color: #F59E0B;
}

/* Animación de pulso al guardar */
.btn-airbnb-wishlist.is-pulsing {
	animation: airbnbHeartPulse 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes airbnbHeartPulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.28); }
	100% { transform: scale(1); }
}

/* ==========================================================================
   FLOATING TOAST NOTIFICATIONS
   ========================================================================== */

.andora-toast-container {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	pointer-events: none;
}

.andora-toast-item {
	background: #032B20;
	color: #FFFFFF;
	border: 1px solid rgba(197, 168, 128, 0.4);
	padding: 0.85rem 1.6rem;
	border-radius: 50px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	opacity: 0;
	transform: translateY(20px) scale(0.95);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	pointer-events: auto;
}

.andora-toast-item i {
	font-size: 1.15rem;
	color: #D4AF37;
}

.andora-toast-item.is-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* ==========================================================================
   AIRBNB-STYLE SHARE MODAL
   ========================================================================== */

.andora-share-modal-backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(3, 43, 32, 0.65);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	padding: 1.25rem;
}

.andora-share-modal-backdrop.is-open {
	opacity: 1;
	visibility: visible;
}

.andora-share-modal-dialog {
	width: 100%;
	max-width: 480px;
	margin: auto;
	box-sizing: border-box;
	transform: scale(0.94) translateY(12px);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.andora-share-modal-backdrop.is-open .andora-share-modal-dialog {
	transform: scale(1) translateY(0);
}

.share-modal-card {
	background: #FFFFFF;
	border-radius: 20px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	border: 1px solid #EAE5D9;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

/* Cabecera del Modal */
.share-modal-header {
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid #F0ECE1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFFFFF;
}

.share-modal-title {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: #032B20;
	letter-spacing: -0.01em;
}

.btn-close-share-modal {
	background: transparent;
	border: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #5A6A64;
	font-size: 1.35rem;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-close-share-modal:hover {
	background: #FAF7F2;
	color: #032B20;
}

/* Vista previa del Ítem */
.share-modal-preview {
	padding: 1rem 1.5rem;
	background: #FAF7F2;
	border-bottom: 1px solid #F0ECE1;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-sizing: border-box;
}

.share-preview-thumb-wrap {
	width: 58px;
	height: 58px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: #032B20;
}

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

.share-preview-info {
	flex-grow: 1;
	min-width: 0;
	overflow: hidden;
}

.share-preview-tag {
	display: block;
	font-family: var(--font-body);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #C5A880;
	margin-bottom: 0.2rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.share-preview-heading {
	margin: 0;
	font-family: var(--font-heading);
	font-size: 1.05rem;
	font-weight: 700;
	color: #032B20;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* Opciones de Compartir */
.share-modal-body {
	padding: 1.25rem 1.5rem 1.5rem;
	max-height: 380px;
	overflow-y: auto;
	overflow-x: hidden;
	box-sizing: border-box;
}

.share-options-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
	box-sizing: border-box;
}

.share-option-btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0.85rem;
	border: 1px solid #EAE5D9;
	border-radius: 12px;
	background: #FFFFFF;
	text-decoration: none;
	color: #032B20;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: left;
	font-family: var(--font-body);
	box-sizing: border-box;
	min-width: 0;
}

.share-option-btn:hover {
	border-color: #C5A880;
	background: #FAF7F2;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(3, 43, 32, 0.06);
}

.share-option-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #F3EFE6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: #032B20;
	flex-shrink: 0;
	transition: all 0.2s ease;
}

/* Iconos de colores temáticos */
.share-btn-whatsapp .share-option-icon { color: #25D366; background: rgba(37, 211, 102, 0.1); }
.share-btn-facebook .share-option-icon { color: #1877F2; background: rgba(24, 119, 242, 0.1); }
.share-btn-twitter .share-option-icon  { color: #000000; background: rgba(0, 0, 0, 0.06); }
.share-btn-linkedin .share-option-icon { color: #0A66C2; background: rgba(10, 102, 194, 0.1); }
.share-btn-telegram .share-option-icon { color: #229ED9; background: rgba(34, 158, 217, 0.1); }
.share-btn-email .share-option-icon    { color: #EA4335; background: rgba(234, 67, 53, 0.1); }
.share-btn-copy .share-option-icon     { color: #10584B; background: rgba(16, 88, 75, 0.1); }

.share-btn-copy.is-copied {
	border-color: #10584B !important;
	background: #E8F5E9 !important;
}

.share-btn-copy.is-copied .icon-copy-success {
	color: #10584B !important;
}

.share-option-text {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.share-option-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: #032B20;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.share-option-sub {
	font-size: 0.75rem;
	color: #72807B;
	margin-top: 0.15rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 600px) {
	.andora-share-modal-dialog {
		max-width: 100%;
	}
	.share-options-grid {
		grid-template-columns: 1fr;
	}
	.single-tour-hero-top-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
	}
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Lado Derecho)
   ========================================================================== */

.andora-floating-whatsapp {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 9995;
	display: flex;
	align-items: center;
	font-family: var(--font-body);
}

.floating-wa-link {
	display: flex;
	align-items: center;
	text-decoration: none;
	position: relative;
}

/* Globo / Tooltip Flotante a la Izquierda del Botón */
.floating-wa-tooltip {
	position: absolute;
	right: calc(100% + 14px);
	background: #032B20;
	color: #FFFFFF;
	padding: 0.55rem 1rem;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(3, 43, 32, 0.25);
	border: 1px solid rgba(197, 168, 128, 0.4);
	display: flex;
	align-items: center;
	gap: 0.65rem;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(10px) scale(0.96);
	pointer-events: none;
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-wa-tooltip::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	width: 10px;
	height: 10px;
	background: #032B20;
	border-top: 1px solid rgba(197, 168, 128, 0.4);
	border-right: 1px solid rgba(197, 168, 128, 0.4);
}

.floating-wa-link:hover .floating-wa-tooltip {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.wa-tooltip-pulse {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #25D366;
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	animation: waTooltipDotPulse 1.8s infinite;
	flex-shrink: 0;
}

@keyframes waTooltipDotPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.wa-tooltip-text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.wa-tooltip-sub {
	font-size: 0.6875rem;
	color: #C5A880;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 700;
}

.wa-tooltip-main {
	font-size: 0.8125rem;
	color: #FFFFFF;
	font-weight: 600;
}

/* Botón Circular */
.floating-wa-circle {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 3px 8px rgba(0, 0, 0, 0.15);
	transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
	cursor: pointer;
}

.floating-wa-circle:hover {
	transform: scale(1.1) rotate(6deg);
	box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-wa-svg-icon {
	width: 34px;
	height: 34px;
	color: #FFFFFF;
	transition: transform 0.25s ease;
}

/* Efecto de Onda Expansiva (Ripple) */
.wa-ripple-ring {
	position: absolute;
	top: -4px;
	left: -4px;
	right: -4px;
	bottom: -4px;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.65);
	animation: waRippleEffect 2.4s cubic-bezier(0.1, 0.7, 0.1, 1) infinite;
	pointer-events: none;
}

.wa-ripple-delay {
	animation-delay: 1.2s;
}

@keyframes waRippleEffect {
	0% {
		transform: scale(0.95);
		opacity: 0.9;
	}
	60% {
		transform: scale(1.35);
		opacity: 0;
	}
	100% {
		transform: scale(1.45);
		opacity: 0;
	}
}

/* Responsivo para móviles */
@media (max-width: 768px) {
	.andora-floating-whatsapp {
		right: 18px;
		bottom: 18px;
	}
	.floating-wa-circle {
		width: 52px;
		height: 52px;
	}
	.floating-wa-svg-icon {
		width: 28px;
		height: 28px;
	}
	.floating-wa-tooltip {
		display: none;
	}
	
	/* Elevar botón en tours individuales para no tapar la barra inferior de reserva */
	body.single-tours .andora-floating-whatsapp {
		bottom: 82px;
	}
}








