/* ==========================================================================
   HERO DEL TOUR - Estilo cinematográfico
   ========================================================================== */
.vxm-tour-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: visible;
}

@media (max-width: 768px) {
    .vxm-tour-hero {
        height: 400px;
    }
}

.vxm-tour-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay oscuro por defecto (sutil) */
.vxm-tour-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
}

/* Filtro cinematográfico activado */
.vxm-tour-hero--cinematic .vxm-tour-hero__img {
    filter: saturate(1.15) contrast(1.08);
}

.vxm-tour-hero--cinematic .vxm-tour-hero__overlay {
    background: linear-gradient(to bottom,
            rgba(27, 61, 90, 0.2) 0%,
            rgba(0, 0, 0, 0.25) 40%,
            rgba(27, 61, 90, 0.6) 100%);
}

/* Contenido sobre la imagen */
.vxm-tour-hero__content {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    z-index: 2;
}

@media (max-width: 768px) {
    .vxm-tour-hero__content {
        bottom: 70px;
    }
}

.vxm-tour-hero__title {
    font-family: var(--vxm-font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--vxm-white);
    margin-bottom: 8px;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 700px;
}

.vxm-tour-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

/* ==========================================================================
   BARRA DE INFO (sobre el borde inferior del hero)
   ========================================================================== */
.vxm-tour-hero__infobar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    transform: translateY(50%);
}

.vxm-infobar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--vxm-white);
    border-radius: 0px;
    padding: 20px 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    gap: 24px;
}

@media (max-width: 768px) {
    .vxm-infobar {
        flex-wrap: wrap;
        gap: 16px;
        padding: 14px 20px;
    }
}

.vxm-infobar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vxm-infobar__item svg {
    color: var(--vxm-secondary);
    flex-shrink: 0;
}

.vxm-infobar__value {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vxm-gray-800);
    line-height: 1.2;
}

.vxm-infobar__label {
    display: block;
    font-size: 0.75rem;
    color: var(--vxm-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ==========================================================================
   BREADCRUMBS (debajo del hero)
   ========================================================================== */
.vxm-breadcrumbs {
    padding: var(--vxm-space-md) 0;
    font-size: 0.85rem;
    color: var(--vxm-gray-400);
}

.vxm-breadcrumbs a {
    color: var(--vxm-gray-600);
    transition: color var(--vxm-transition);
}

.vxm-breadcrumbs a:hover {
    color: var(--vxm-secondary);
}

.vxm-breadcrumbs__sep {
    margin: 0 0.4rem;
    color: var(--vxm-gray-300);
}

.vxm-breadcrumbs__current {
    color: var(--vxm-primary);
    font-weight: 600;
}

/* ==========================================================================
   LAYOUT DOS COLUMNAS
   ========================================================================== */
.vxm-tour-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    padding: var(--vxm-space-md) 0 var(--vxm-space-2xl);
    align-items: start;
    background: none;
    border: none;
}

.vxm-tour-content {
    padding: var(--vxm-space-lg) var(--vxm-space-xl);
}

@media (max-width: 960px) {
    .vxm-tour-layout {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   TABS CON ÍCONOS
   ========================================================================== */
.vxm-tour-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: var(--vxm-space-xl);
    padding-bottom: var(--vxm-space-md);
    border-bottom: 2px solid var(--vxm-gray-200);
}

.vxm-tour-tabs__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    background: var(--vxm-white);
    border: 2px solid var(--vxm-gray-200);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--vxm-transition);
    font-family: var(--vxm-font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--vxm-gray-600);
    min-width: 90px;
    text-align: center;
}

.vxm-tour-tabs__btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--vxm-gray-400);
    transition: stroke var(--vxm-transition);
}

.vxm-tour-tabs__btn:hover {
    border-color: var(--vxm-secondary);
    color: var(--vxm-primary);
    transform: translateY(-2px);
    box-shadow: var(--vxm-shadow-sm);
}

.vxm-tour-tabs__btn:hover svg {
    stroke: var(--vxm-secondary);
}

.vxm-tour-tabs__btn.is-active {
    border-color: var(--vxm-primary);
    color: var(--vxm-primary);
    background: var(--vxm-gray-100);
    box-shadow: var(--vxm-shadow-sm);
}

.vxm-tour-tabs__btn.is-active svg {
    stroke: var(--vxm-primary);
}

/* ==========================================================================
   TAB CONTENT
   ========================================================================== */
.vxm-tour-tab-content {
    display: none;
}

.vxm-tour-tab-content.is-active {
    display: block;
    animation: vxmFadeIn 0.3s ease;
}

@keyframes vxmFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   DESCRIPCIÓN
   ========================================================================== */
.vxm-tour-description {
    font-size: 1.05rem;
    line-height: 1.85;
    letter-spacing: 0;
    color: var(--vxm-gray-600);
}

.vxm-tour-description h2,
.vxm-tour-description h3 {
    margin-top: var(--vxm-space-xl);
}

.vxm-tour-description p {
    margin-bottom: var(--vxm-space-md);
}

.vxm-tour-description ul,
.vxm-tour-description ol {
    margin-bottom: var(--vxm-space-md);
    padding-left: var(--vxm-space-lg);
}

.vxm-tour-description ul {
    list-style: disc;
}

.vxm-tour-description ol {
    list-style: decimal;
}

.vxm-tour-description li {
    margin-bottom: var(--vxm-space-xs);
}

/* ==========================================================================
   VIDEO
   ========================================================================== */
.vxm-tour-video {
    margin-top: var(--vxm-space-xl);
}

.vxm-tour-video h2 {
    margin-bottom: var(--vxm-space-md);
}

.vxm-tour-video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--vxm-border-radius);
    box-shadow: var(--vxm-shadow-md);
}

.vxm-tour-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================================================
   GALERÍA
   ========================================================================== */
.vxm-tour-gallery {
    margin-top: var(--vxm-space-xl);
}

.vxm-tour-gallery h2 {
    margin-bottom: var(--vxm-space-md);
}

.vxm-tour-gallery__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--vxm-space-md);
}

.vxm-tour-gallery__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--vxm-border-radius);
    transition: transform var(--vxm-transition), box-shadow var(--vxm-transition);
    cursor: pointer;
}

.vxm-tour-gallery__img:hover {
    transform: scale(1.03);
    box-shadow: var(--vxm-shadow-lg);
}

/* ==========================================================================
   ITINERARIO (Acordeón)
   ========================================================================== */
.vxm-itinerary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vxm-itinerary__day {
    border: 1px solid var(--vxm-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--vxm-white);
}

.vxm-itinerary__toggle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--vxm-font-body);
    font-size: 1rem;
    text-align: left;
    transition: background var(--vxm-transition);
}

.vxm-itinerary__toggle:hover {
    background: var(--vxm-gray-100);
}

.vxm-itinerary__day-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    padding: 4px 12px;
    background: var(--vxm-primary);
    color: var(--vxm-white);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.vxm-itinerary__day-title {
    flex: 1;
    font-weight: 600;
    color: var(--vxm-gray-800);
}

.vxm-itinerary__arrow {
    flex-shrink: 0;
    transition: transform var(--vxm-transition);
    color: var(--vxm-gray-400);
}

.vxm-itinerary__toggle[aria-expanded="true"] .vxm-itinerary__arrow {
    transform: rotate(180deg);
}

.vxm-itinerary__body {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid var(--vxm-gray-200);
}

.vxm-itinerary__description {
    padding-top: var(--vxm-space-md);
    line-height: 1.8;
    color: var(--vxm-gray-800);
}

.vxm-itinerary__description a {
    color: var(--vxm-secondary);
    text-decoration: underline;
}

.vxm-itinerary__description a:hover {
    color: var(--vxm-primary);
}

.vxm-itinerary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: var(--vxm-space-md);
    padding-top: var(--vxm-space-md);
    border-top: 1px dashed var(--vxm-gray-200);
    font-size: 0.9rem;
    color: var(--vxm-gray-600);
}

.vxm-itinerary__meta strong {
    color: var(--vxm-primary);
}

/* ==========================================================================
   INCLUYE / NO INCLUYE
   ========================================================================== */
.vxm-includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vxm-space-xl);
}

@media (max-width: 600px) {
    .vxm-includes-grid {
        grid-template-columns: 1fr;
    }
}

.vxm-includes-col h3 {
    font-size: 1.2rem;
    margin-bottom: var(--vxm-space-md);
    padding-bottom: var(--vxm-space-sm);
}

.vxm-includes-col--yes h3 {
    color: var(--vxm-success);
    border-bottom: 2px solid var(--vxm-success);
}

.vxm-includes-col--no h3 {
    color: var(--vxm-error);
    border-bottom: 2px solid var(--vxm-error);
}

.vxm-includes-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vxm-includes-col li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--vxm-gray-800);
    line-height: 1.5;
}

.vxm-includes-col li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

/* ==========================================================================
   RECOMENDACIONES
   ========================================================================== */
.vxm-tour-recommendations {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF3CC 100%);
    border-left: 4px solid var(--vxm-warning);
    border-radius: 0 var(--vxm-border-radius) var(--vxm-border-radius) 0;
    padding: var(--vxm-space-lg);
    line-height: 1.8;
    color: var(--vxm-gray-800);
}

.vxm-tour-recommendations ul,
.vxm-tour-recommendations ol {
    padding-left: var(--vxm-space-lg);
    margin-bottom: var(--vxm-space-md);
}

.vxm-tour-recommendations ul {
    list-style: disc;
}

.vxm-tour-recommendations li {
    margin-bottom: var(--vxm-space-xs);
}

.vxm-tour-recommendations a {
    color: var(--vxm-primary);
    text-decoration: underline;
}

/* ==========================================================================
   FAQ (Acordeón)
   ========================================================================== */
.vxm-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vxm-faq__item {
    border: 1px solid var(--vxm-gray-200);
    border-radius: 10px;
    overflow: hidden;
    background: var(--vxm-white);
}

.vxm-faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--vxm-font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--vxm-gray-800);
    text-align: left;
    gap: 12px;
    transition: background var(--vxm-transition);
}

.vxm-faq__question:hover {
    background: var(--vxm-gray-100);
}

.vxm-faq__question svg {
    flex-shrink: 0;
    transition: transform var(--vxm-transition);
    color: var(--vxm-gray-400);
}

.vxm-faq__question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.vxm-faq__answer {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid var(--vxm-gray-200);
    color: var(--vxm-gray-600);
    line-height: 1.7;
}

.vxm-faq__answer p {
    padding-top: var(--vxm-space-md);
}

/* ==========================================================================
   SIDEBAR
   ========================================================================== */
.vxm-tour-sidebar {
    position: relative;
}

.vxm-tour-sidebar__inner {
    position: sticky;
    top: 80px;
    background: var(--vxm-white);
    border: 1px solid var(--vxm-gray-200);
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Precio */
.vxm-tour-sidebar__price {
    text-align: center;
    padding: 24px 20px;
    background: var(--vxm-primary);
    color: var(--vxm-white);
}

.vxm-tour-sidebar__price-label {
    display: inline;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 4px;
}

.vxm-tour-sidebar__price-old {
    display: inline;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-right: 6px;
}

.vxm-tour-sidebar__price-current {
    display: inline;
    font-family: var(--vxm-font-heading);
    font-size: 2.2rem;
    color: var(--vxm-white);
    font-weight: 700;
    line-height: 1.1;
}

.vxm-tour-sidebar__price-per {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

/* Info rápida */
.vxm-tour-sidebar__middle {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--vxm-gray-200);
}

.vxm-tour-sidebar__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    border: none;
}

.vxm-tour-sidebar__info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--vxm-gray-100);
}

.vxm-tour-sidebar__info-row:last-child {
    border-bottom: none;
    padding-bottom: 12px;
}

.vxm-tour-sidebar__info-label {
    font-size: 0.7rem;
    color: var(--vxm-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.vxm-tour-sidebar__info-value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--vxm-primary);
    line-height: 1.3;
}

.vxm-tour-sidebar__info-item {
    display: flex;
    flex-direction: column;
    padding-left: 12px;
    border-left: 3px solid var(--vxm-secondary);
}

.vxm-tour-sidebar__badge {
    flex-shrink: 0;
    width: 110px;
}

.vxm-tour-sidebar__badge img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

/* CTAs en fila */
.vxm-tour-sidebar__ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
}

.vxm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border-radius: 0;
    font-family: var(--vxm-font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--vxm-transition);
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vxm-btn--primary {
    background: var(--vxm-primary);
    color: var(--vxm-white);
}

.vxm-btn--primary:hover {
    background: var(--vxm-primary-dark);
    color: var(--vxm-white);
}

.vxm-btn--outline {
    background: var(--vxm-white);
    color: var(--vxm-primary);
    border: 2px solid var(--vxm-primary);
}

.vxm-btn--outline:hover {
    background: var(--vxm-primary);
    color: var(--vxm-white);
}

/* WhatsApp */
.vxm-tour-sidebar__whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #25D366;
    color: var(--vxm-white);
    border-radius: 0;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all var(--vxm-transition);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.vxm-tour-sidebar__whatsapp:hover {
    background: #1DA851;
    color: var(--vxm-white);
}

.vxm-tour-sidebar__whatsapp svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Políticas */
.vxm-tour-sidebar__policies {
    padding-top: 14px;
    border-top: 1px solid var(--vxm-gray-200);
    font-size: 0.75rem;
    color: var(--vxm-gray-400);
    line-height: 1.5;
}

.vxm-tour-sidebar__policies {
    padding: 16px 20px;
    border-top: 1px solid var(--vxm-gray-200);
    font-size: 0.75rem;
    color: var(--vxm-gray-400);
    line-height: 1.5;
}

.vxm-tour-sidebar__policies p {
    margin-bottom: 6px;
}

.vxm-tour-sidebar__policies p:last-child {
    margin-bottom: 0;
}

.vxm-tour-sidebar__policies a {
    color: var(--vxm-primary);
    text-decoration: underline;
}

.vxm-tour-sidebar__policies strong {
    color: var(--vxm-gray-600);
    font-size: 0.78rem;
}

.vxm-tour-sidebar__badge-text {
    display: block;
    text-align: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--vxm-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    line-height: 1.3;
}


/* ==========================================================================
   TOURS RELACIONADOS
   ========================================================================== */
.vxm-related-tours {
    padding: var(--vxm-space-2xl) 0;
    background: var(--vxm-gray-100);
    margin-top: var(--vxm-space-2xl);
}

.vxm-related-tours h2 {
    text-align: center;
    margin-bottom: var(--vxm-space-xl);
}

.vxm-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vxm-space-lg);
}

@media (max-width: 960px) {
    .vxm-tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vxm-tour-grid {
        grid-template-columns: 1fr;
    }
}

.vxm-tour-card {
    background: var(--vxm-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--vxm-shadow-sm);
    transition: all var(--vxm-transition);
    text-decoration: none;
    display: block;
}

.vxm-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vxm-shadow-lg);
}

.vxm-tour-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.vxm-tour-card__body {
    padding: var(--vxm-space-md) var(--vxm-space-lg);
}

.vxm-tour-card__title {
    font-size: 1.1rem;
    color: var(--vxm-primary);
    margin-bottom: var(--vxm-space-sm);
    font-family: var(--vxm-font-heading);
}

.vxm-tour-card__duration {
    display: block;
    font-size: 0.85rem;
    color: var(--vxm-gray-400);
    margin-bottom: var(--vxm-space-xs);
}

.vxm-tour-card__price {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--vxm-secondary-dark);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.vxm-header {
    background: var(--vxm-white);
    box-shadow: var(--vxm-shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--vxm-transition);
}

.vxm-header.is-scrolled {
    box-shadow: var(--vxm-shadow-md);
}

.vxm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--vxm-space-md) 0;
    gap: var(--vxm-space-lg);
}

.vxm-header__logo a {
    font-family: var(--vxm-font-heading);
    font-size: 1.5rem;
    color: var(--vxm-primary);
    text-decoration: none;
}

.vxm-header__logo img {
    max-height: 50px;
    width: auto;
}

.vxm-nav__list {
    display: flex;
    align-items: center;
    gap: var(--vxm-space-lg);
    list-style: none;
}

.vxm-nav__list li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vxm-gray-800);
    padding: 8px 0;
    position: relative;
    transition: color var(--vxm-transition);
}

.vxm-nav__list li a:hover,
.vxm-nav__list li.current-menu-item a {
    color: var(--vxm-secondary);
}

.vxm-nav__list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vxm-secondary);
    transition: width var(--vxm-transition);
}

.vxm-nav__list li a:hover::after {
    width: 100%;
}

.vxm-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.vxm-menu-toggle__bar {
    width: 24px;
    height: 2px;
    background: var(--vxm-primary);
    transition: all var(--vxm-transition);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .vxm-menu-toggle {
        display: flex;
    }

    .vxm-nav-primary {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vxm-white);
        box-shadow: var(--vxm-shadow-lg);
        padding: var(--vxm-space-lg);
        z-index: 999;
    }

    .vxm-nav-primary.is-open {
        display: block;
    }

    .vxm-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--vxm-space-md);
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.vxm-footer {
    background: var(--vxm-primary);
    color: var(--vxm-white);
    padding: var(--vxm-space-2xl) 0 var(--vxm-space-lg);
}

.vxm-footer a {
    color: var(--vxm-secondary-light);
    transition: color var(--vxm-transition);
}

.vxm-footer a:hover {
    color: var(--vxm-white);
}

.vxm-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vxm-space-xl);
    margin-bottom: var(--vxm-space-xl);
}

@media (max-width: 768px) {
    .vxm-footer__grid {
        grid-template-columns: 1fr;
    }
}

.vxm-footer__title {
    font-size: 1.1rem;
    color: var(--vxm-white);
    margin-bottom: var(--vxm-space-md);
    font-family: var(--vxm-font-heading);
}

.vxm-footer__text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.vxm-footer__menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vxm-footer__menu li a {
    font-size: 0.9rem;
}

.vxm-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--vxm-space-lg);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.vxm-tour-tabs-section {
    margin-top: var(--vxm-space-2xl);
    padding-top: var(--vxm-space-xl);
    border-top: 2px solid var(--vxm-gray-200);
}

/* ==========================================================================
   BLOGS RELACIONADOS
   ========================================================================== */
.vxm-related-blogs {
    padding: var(--vxm-space-2xl) 0;
}

.vxm-related-blogs__title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--vxm-primary);
    margin-bottom: var(--vxm-space-xl);
    position: relative;
    padding-bottom: var(--vxm-space-md);
}

.vxm-related-blogs__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--vxm-secondary);
}

.vxm-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vxm-space-lg);
}

.vxm-blog-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    height: 350px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.vxm-blog-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
    filter: saturate(1.1) contrast(1.05) brightness(0.9);
}

.vxm-blog-card:hover .vxm-blog-card__img {
    transform: scale(1.08);
    filter: saturate(1.2) contrast(1.1) brightness(0.8);
}

.vxm-blog-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top,
            rgba(27, 61, 90, 0.9) 0%,
            rgba(27, 61, 90, 0.6) 50%,
            transparent 100%);
    transition: all 0.4s ease;
}

.vxm-blog-card__date {
    font-size: 0.75rem;
    color: var(--vxm-secondary-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.vxm-blog-card__title {
    font-size: 1.1rem;
    color: var(--vxm-white);
    margin: 6px 0 0;
    line-height: 1.3;
}

.vxm-blog-card__excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 8px 0 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.vxm-blog-card:hover .vxm-blog-card__excerpt {
    max-height: 80px;
    opacity: 1;
}

.vxm-blog-card__readmore {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vxm-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.vxm-blog-card:hover .vxm-blog-card__readmore {
    max-height: 30px;
    opacity: 1;
}

/* ==========================================================================
   PÁGINAS DESTACADAS
   ========================================================================== */
.vxm-featured-pages {
    padding: var(--vxm-space-xl) 0;
}

.vxm-featured-pages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vxm-space-lg);
}

@media (max-width: 768px) {
    .vxm-featured-pages__grid {
        grid-template-columns: 1fr;
    }
}

.vxm-featured-page-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--vxm-space-xl) var(--vxm-space-lg);
    background: var(--vxm-white);
    border: 1px solid var(--vxm-gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all var(--vxm-transition);
}

.vxm-featured-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--vxm-shadow-lg);
    border-color: var(--vxm-secondary);
}

.vxm-featured-page-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vxm-gray-100);
    border-radius: 50%;
    margin-bottom: var(--vxm-space-md);
    color: var(--vxm-secondary);
    transition: all var(--vxm-transition);
}

.vxm-featured-page-card:hover .vxm-featured-page-card__icon {
    background: var(--vxm-primary);
    color: var(--vxm-white);
}

.vxm-featured-page-card__title {
    font-size: 1.05rem;
    color: var(--vxm-primary);
    margin-bottom: var(--vxm-space-sm);
}

.vxm-featured-page-card__excerpt {
    font-size: 0.85rem;
    color: var(--vxm-gray-400);
    line-height: 1.5;
    margin-bottom: var(--vxm-space-md);
}

.vxm-featured-page-card__link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--vxm-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.vxm-featured-pages__title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--vxm-primary);
    margin-bottom: var(--vxm-space-xl);
    position: relative;
    padding-bottom: var(--vxm-space-md);
}

.vxm-featured-pages__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--vxm-secondary);
}