/*
Theme Name: Machupicchu Lodges Theme
Theme URI: https://machupicchulodges.com/
Author: Antigravity AI
Description: Premium boutique hotel and tour operator theme for Machupicchu Lodges.
Version: 1.0
Text Domain: machupicchu-lodges
*/

/* ============================================
   Rock River Hotel - Estilos principales
   Contenido: margin lateral 6%
   ============================================ */

:root {
    --margen-lateral: 6%;
    --color-primario: #e8327c;
    --color-primario-oscuro: #b2225e;
    --color-primario-muy-oscuro: #7d1842;
    --color-acento: #e8327c;
    --color-acento-hover: #b2225e;
    --color-cta: #e8327c;
    --color-cta-hover: #b2225e;
    --color-texto: #2d2d2d;
    --color-texto-claro: #5a5a5a;
    --color-fondo: #f8f6f1;
    --color-blanco: #ffffff;
    --sombra: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transicion: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-texto);
    background-color: var(--color-fondo);
}

.contenedor {
    margin-left: var(--margen-lateral);
    margin-right: var(--margen-lateral);
}

/* ----- Botones ----- */
.btn {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color var(--transicion), color var(--transicion), transform 0.2s;
    border: none;
    cursor: pointer;
}

.btn--primario {
    background-color: var(--color-cta);
    color: var(--color-blanco);
}

.btn--primario:hover {
    background-color: var(--color-cta-hover);
    color: var(--color-blanco);
}

.btn--hero {
    background-color: var(--color-acento);
    color: var(--color-primario-oscuro);
    padding: 0.85rem 1.6rem;
    font-size: 1rem;
}

.btn--hero:hover {
    background-color: var(--color-acento-hover);
    color: var(--color-primario-oscuro);
}

.btn--grande {
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
}

/* ============================================
   HEADER: logo, nav y CTA
   ============================================ */
.header {
    background-color: #2c3842;
    box-shadow: none;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.home .header,
.front-page .header {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    position: absolute;
    top: 0;
}

.header--scrolled {
    background-color: var(--color-primario) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.header__contenido {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 80px;
    transition: min-height 0.4s ease;
}

.header--scrolled .header__contenido {
    min-height: 65px;
}

.header__logo {
    flex: 0 0 20%;
    text-decoration: none;
    display: block;
    line-height: 0;
    padding: 10px 0;
}

.header__logo-img {
    display: block;
    height: 70px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.header--scrolled .header__logo-img {
    height: 50px;
    max-width: 270px;
}

.header__nav {
    flex: 0 0 60%;
    display: flex;
    justify-content: flex-end;
}


/* Main Navigation (WordPress Widget area) */
.header__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.25rem;
    justify-content: flex-end;
}

.header__nav li {
    position: relative;
}

.header__nav a,
.header__nav ul a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: block;
    padding: 1rem;
    transition: color var(--transicion);
}

.header__nav a:hover,
.header__nav ul a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.header__nav a::after,
.header__nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-acento);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transicion);
    z-index: 1;
}

.header__nav a:hover::after,
.header__nav ul a:hover::after {
    transform: scaleX(1);
}

/* Submenu Styles */
.header__nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-primario);
    min-width: 200px;
    box-shadow: var(--sombra);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    flex-direction: column !important;
    /* Stack vertically */
    display: flex !important;
}

.header__nav li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header__nav .sub-menu a {
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem;
    white-space: nowrap;
}

.header__nav .sub-menu a::after {
    display: none;
    /* No underline in submenus */
}

.header__nav .sub-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Indicator for parent items */
.menu-item-has-children>a {
    padding-right: 2rem !important;
}

.menu-item-has-children>a:before {
    content: '▾';
    position: absolute;
    right: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    opacity: 0.7;
}


@media (max-width: 768px) {
    .header__nav .sub-menu {
        position: static;
        display: none !important;
        /* Managed by JS in mobile usually, or just simple stack */
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.1);
    }

    .header__nav li:hover>.sub-menu {
        display: flex !important;
    }
}

/* CTA Icon */
.header__cta .btn {
    padding: 0.55rem 1.25rem 0.55rem 2.8rem !important;
    background-image: url('images/icon-nav-booking.webp') !important;
    background-repeat: no-repeat !important;
    background-position: 0.75rem center !important;
    background-size: 1.3rem !important;
}

.header__nav ul .current-menu-item a,
.header__nav ul .current_page_item a,
.header__nav ul a:hover {
    color: rgba(255, 255, 255, 0.85);
}

.header__nav ul .current-menu-item a::after,
.header__nav ul .current_page_item a::after {
    transform: scaleX(1);
}




/* Ajuste específico para el botón de reserva en móvil */
@media (max-width: 768px) {
    .header__cta .btn {
        padding: 0.45rem 0.9rem 0.45rem 2.2rem !important;
        background-position: 0.5rem center !important;
        background-size: 1.1rem !important;
        font-size: 0.85rem;
    }
}


.header__cta {
    flex: 0 0 10%;
    display: flex;
    justify-content: flex-end;
}

.header__cta .btn {
    white-space: nowrap;
}

/* Estilo del botÃƒÂ³n de reserva cuando el header estÃƒÂ¡ fijo al hacer scroll */
.header--scrolled .header__cta .btn {
    background-color: var(--color-acento);
    color: var(--color-primario-oscuro);
}

.header--scrolled .header__cta .btn:hover {
    background-color: var(--color-acento-hover);
    color: var(--color-primario-oscuro);
}

@media (max-width: 768px) {
    :root {
        --margen-lateral: 4%;
    }

    .contenedor {
        padding: 0 0.75rem;
    }

    .header__contenido {
        flex-wrap: nowrap;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .header__nav {
        display: none;
    }

    .header__logo {
        flex: 0 0 auto;
    }

    .header__logo-img {
        max-width: 30vw;
        height: auto;
        transition: none;
    }

    .header--scrolled .header__logo-img {
        max-width: 30vw;
        height: auto;
    }

    .header__cta {
        flex: 0 0 30%;
        display: flex;
        justify-content: flex-end;
    }
}

/* ============================================
   HERO: 6 imÃƒÂ¡genes con tÃƒÂ­tulo, descripciÃƒÂ³n y CTA
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #000;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primario-oscuro);
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.hero__slide--activo {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0000003b;
    z-index: 0;
}

.hero__texto {
    position: relative;
    z-index: 2;
    color: var(--color-blanco);
    max-width: 35rem;
    margin: 0;
    margin-left: calc(var(--margen-lateral) + 1.5rem);
    text-align: left;
    padding: 0 1.5rem 3rem 0;
}

/* Reset estado inicial para animaciÃƒÂ³n al cambiar de slide */
.hero__slide:not(.hero__slide--activo) .hero__titulo,
.hero__slide:not(.hero__slide--activo) .hero__descripcion,
.hero__slide:not(.hero__slide--activo) .hero__texto .btn {
    opacity: 0;
    transform: translateX(-40px);
    animation: none;
}

.hero__titulo {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: hero-entrada 0.6s ease 0.15s both;
}

.hero__descripcion {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.45);
    opacity: 0.95;
    animation: hero-entrada 0.6s ease 0.4s both;
}

.hero__slide--activo .hero__texto .btn {
    animation: hero-entrada 0.6s ease 0.65s both;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero__controles {
    position: absolute;
    bottom: 6rem;
    right: var(--margen-lateral);
    z-index: 10;
}

.hero__thumbnails {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
}

.hero__thumb {
    width: 90px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: border-color var(--transicion), transform 0.2s, opacity 0.2s;
    opacity: 0.7;
}

.hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__thumb:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.hero__thumb--activo {
    border-color: var(--color-acento);
    opacity: 1;
}

@keyframes hero-entrada {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {

    .hero,
    .hero__slider,
    .hero__slide {
        min-height: 70vh;
    }

    .hero__slide {
        justify-content: center;
    }

    .hero__texto {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 0 1.5rem;
    }

    .hero__controles {
        display: none;
    }

    .hero__descripcion {
        display: none;
    }

    .habitacion-hero__thumbnails {
        display: none;
    }
}

/* ============================================
   SECCIONES DE CONTENIDO
   ============================================ */


.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.intro__col--texto {
    padding: 4rem 4rem 4rem 10rem;
}

.intro__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.85rem;
    color: var(--color-cta);
}

.intro__lead {
    margin: 0 0 1.5rem;
    font-size: 1.15rem;
    color: var(--color-texto-claro);
    font-weight: 500;
}

.intro__texto {
    max-width: 720px;
}

.intro__texto p {
    margin: 0 0 1rem;
    color: var(--color-texto);
}

.intro__texto p:last-child {
    margin-bottom: 0;
}

.intro__col--parallax {
    position: relative;
}

.intro__parallax {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-image: url('images/parallax-home1.webp');
    background-size: 80%;
    background-position: right;
    background-attachment: fixed;
    box-shadow: var(--sombra);
}

@media (max-width: 900px) {
    .intro__grid {
        grid-template-columns: 1fr;
    }

    .intro__col--parallax {
        order: -1;
    }

    .intro__parallax {
        min-height: 260px;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {

    .intro__col--parallax,
    .intro__parallax {
        display: none;
    }

    .intro__col--texto {
        padding: 1rem;
    }

    .intro__texto {
        max-width: 100%;
    }

    .intro__lead {
        margin-bottom: 1rem;
    }
}

.habitaciones {
    padding: 1rem 0;
}

/* Fondo parallax solo en home */
.habitaciones--home {
    position: relative;
    padding: 5rem 0 6rem;
    background-image: url('images/parallax-home2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.habitaciones--home::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.habitaciones--home .contenedor {
    position: relative;
    z-index: 1;
}

.habitaciones--home .habitaciones__titulo,
.habitaciones--home .habitaciones__subtitulo {
    color: #fff;
}

@media (max-width: 900px) {
    .habitaciones--home {
        background-attachment: scroll;
    }
}

.habitaciones__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--color-cta);
}

.habitaciones__subtitulo {
    margin: 0 0 1rem;
    color: var(--color-texto-claro);
    font-size: 1.05rem;
}

.habitaciones__grid {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    width: 100%;
}

.habitaciones__carousel-container {
    position: relative;
    padding: 0 3rem;
    overflow: hidden;
}

.habitaciones__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-blanco);
    border: none;
    border-radius: 50%;
    box-shadow: var(--sombra);
    color: var(--color-cta);
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transicion), color var(--transicion);
}

.habitaciones__nav:hover {
    background: var(--color-cta);
    color: var(--color-blanco);
}

.habitaciones__nav--prev {
    left: 0;
}

.habitaciones__nav--next {
    right: 0;
}

@media (max-width: 1024px) {
    .habitaciones__carousel-container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .habitaciones__carousel-container {
        padding: 0;
        overflow-x: auto;
        scrollbar-width: none;
        /* Firefox */
    }

    .habitaciones__carousel-container::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari, Opera */
    }

    .habitaciones__nav {
        display: none;
    }

    .habitaciones__grid {
        gap: 1rem;
    }
}

.habitaciones__card {
    background: var(--color-blanco);
    border-radius: 20px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    flex: 0 0 calc(33.333% - 1rem);
    /* 3 items per view minus gap */
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.habitaciones__card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px -15px rgba(232, 50, 124, 0.15);
    /* Tinted shadow */
    border-color: rgba(232, 50, 124, 0.1);
}

@media (max-width: 1024px) {
    .habitaciones__card {
        flex: 0 0 calc(50% - 0.75rem);
        /* 2 items on tablets */
    }
}

@media (max-width: 768px) {
    .habitaciones__card {
        flex: 0 0 85%;
        /* 1.15 items on mobile for peek effect */
    }
}

.habitaciones__imagen-link {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    z-index: 1;
}

.habitaciones__imagen-link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.habitaciones__card:hover .habitaciones__imagen-link::after {
    opacity: 1;
}

.habitaciones__imagen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-fondo);
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.habitaciones__card:hover .habitaciones__imagen {
    transform: scale(1.08);
}

.habitaciones__card-contenido {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: var(--color-blanco);
}

.habitaciones__card-titulo {
    margin: 0 0 0.75rem 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.habitaciones__card-titulo a {
    color: var(--color-primario-oscuro);
    text-decoration: none;
    transition: color 0.3s ease;
}

.habitaciones__card-titulo a:hover {
    color: var(--color-acento);
}

.habitaciones__camas {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-texto-claro);
}

.habitaciones__descripcion {
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
    flex: 1;
}

.habitaciones__link {
    background: linear-gradient(135deg, var(--color-cta) 0%, #8c9414 100%);
    color: var(--color-blanco) !important;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 15px rgba(169, 179, 25, 0.3);
    border: none;
}

.habitaciones__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(169, 179, 25, 0.4);
    background: linear-gradient(135deg, #b8c41f 0%, var(--color-cta) 100%);
}

.habitaciones__iconos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.icono-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--color-texto-claro);
}

.icono-item svg {
    color: var(--color-acento);
}

.habitaciones__precio {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.habitaciones__precio-monto {
    font-weight: 800;
    color: var(--color-primario);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.habitaciones__precio-periodo {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-texto-claro);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}





@media (max-width: 768px) {
    .habitaciones__card {
        flex-direction: column;
    }

    .habitaciones__imagen-link {
        flex: none;
        width: 100%;
    }
}

/* ----- SecciÃƒÂ³n Desayuno ----- */
.desayuno {
    padding: 5rem 0;
    background-color: var(--color-fondo);
}

.desayuno__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-left: var(--margen-lateral);
    margin-right: var(--margen-lateral);
}

.desayuno__info {
    grid-column: 1 / -1;
    grid-row: span 1;
    padding: 3rem;
    background-color: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 4px solid var(--color-acento);
}

.desayuno__subtitle {
    color: var(--color-acento);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.desayuno__title {
    color: var(--color-cta);
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.desayuno__text {
    color: var(--color-texto-claro);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    max-width: 800px;
}

.desayuno__foto {
    grid-column: span 1;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: var(--sombra);
    transition: transform var(--transicion);
}

.desayuno__foto--grande,
.desayuno__foto--pequena {
    grid-column: span 1;
    grid-row: span 1;
}

.desayuno__foto:hover {
    transform: translateY(-5px);
}

/* Responsividad para la secciÃƒÂ³n desayuno */
@media (max-width: 1200px) {
    .desayuno__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto auto;
    }

    .desayuno__info {
        grid-column: span 2;
        grid-row: 1;
    }

    .desayuno__foto {
        grid-column: span 1;
        grid-row: auto;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .desayuno__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        margin-left: 1.25rem;
        margin-right: 1.25rem;
    }

    .desayuno__info {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 1.5rem;
    }

    .desayuno__foto {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 250px;
    }
}

/* ----- Por quÃƒÂ© elegirnos ----- */
.elegirnos {
    padding: 0;
}

.elegirnos__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.elegirnos__col--texto {
    padding: 4rem 10rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.elegirnos__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.85rem;
    color: var(--color-cta);
}

.elegirnos__intro {
    margin: 0 0 2rem;
    font-size: 1.15rem;
    color: var(--color-texto-claro);
    font-weight: 500;
    max-width: 720px;
}

.elegirnos__items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.elegirnos__item {
    border-left: 4px solid var(--color-acento);
    padding-left: 1.25rem;
}

.elegirnos__item-titulo {
    margin: 0 0 0.25rem;
    font-size: 1.15rem;
    color: var(--color-cta);
}

.elegirnos__item-texto {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
}

.elegirnos__col--parallax {
    position: relative;
    min-height: 500px;
}

.elegirnos__parallax {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: 51%;
    background-position: left;
    background-attachment: fixed;
}

@media (max-width: 1024px) {
    .elegirnos__col--texto {
        padding: 3rem 4rem;
    }
}

@media (max-width: 900px) {
    .elegirnos__grid {
        grid-template-columns: 1fr;
    }

    .elegirnos__col--parallax {
        height: 300px;
        min-height: 250px;
    }

    .elegirnos__parallax {
        background-attachment: scroll;
    }

    .elegirnos__col--texto {
        padding: 3rem 1.25rem;
    }
}

/* ----- CTA final ----- */
.cta-final {
    padding: 4rem 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primario) 0%, var(--color-primario-oscuro) 100%);
    color: var(--color-blanco);
    margin-left: var(--margen-lateral);
    margin-right: var(--margen-lateral);
}

.cta-final .contenedor {
    padding: 0 1.25rem;
}

.cta-final__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.6rem;
}

.cta-final__texto {
    margin: 0 0 1.5rem;
    opacity: 0.95;
    font-size: 1.05rem;
}

.cta-final .btn--primario {
    background-color: var(--color-acento);
    color: var(--color-primario-oscuro);
}

.cta-final .btn--primario:hover {
    background-color: var(--color-acento-hover);
    color: var(--color-primario-oscuro);
}

/* ----- Tours en el home (4 columnas) ----- */
.tours-home {
    padding: 3rem 0 4rem;
}

.tours-home__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--color-cta);
    text-align: center;
}

.tours-home__subtitulo {
    margin: 0 0 2rem;
    text-align: center;
    color: var(--color-texto-claro);
    font-size: 1.05rem;
}

.tours-home__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.tours-home__card {
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--color-acento);
}

.tours-home__card-imagen-link {
    display: block;
    text-decoration: none;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.tours-home__card-imagen {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primario-oscuro);
}

.tours-home__card-contenido {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.tours-home__card-titulo {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-cta);
}

.tours-home__card-titulo a {
    color: inherit;
    text-decoration: none;
}

.tours-home__card-titulo a:hover {
    color: var(--color-acento);
}

.tours-home__card-desc {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-texto-claro);
    line-height: 1.45;
    flex: 1;
}

.tours-home__card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primario);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(26, 77, 46, 0.3);
    transition: color var(--transicion), border-color var(--transicion);
    align-self: flex-start;
}

.tours-home__card-link:hover {
    color: var(--color-acento);
    border-color: var(--color-acento);
}

.tours-home__cta {
    text-align: center;
    margin: 0;
}

@media (max-width: 900px) {
    .tours-home__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .tours-home__grid {
        grid-template-columns: 1fr;
    }
}

/* ----- Footer (4 columnas) ----- */
.footer {
    background-image: url('images/bg-footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--color-blanco);
    padding: 0;
    font-size: 0.95rem;
    position: relative;
}



.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2.5rem;
    padding-top: 13rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer__col--logo .footer__logo-img {
    max-width: 160px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

.footer__empresa {
    margin: 0 0 0.75rem;
    font-weight: 600;
    color: var(--color-blanco);
    font-size: 1rem;
}

.footer__datos {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.footer__datos a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
}

.footer__datos a:hover {
    color: var(--color-acento);
    text-decoration: underline;
}

.footer__titulo {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blanco);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__lista li {
    margin-bottom: 0.5rem;
}

.footer__lista a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer__lista a:hover {
    color: var(--color-acento);
}

/* WordPress Widget Navigation Menu in Footer */
.footer__col .widget_nav_menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer__col .widget_nav_menu li {
    margin-bottom: 0.6rem;
}

.footer__col .widget_nav_menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer__col .widget_nav_menu a:hover {
    color: var(--color-acento);
    padding-left: 5px;
}

/* Submenu styles in Footer */
.footer__col .widget_nav_menu .sub-menu {
    margin-top: 0.5rem;
    margin-left: 0.8rem;
    padding-left: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.footer__col .widget_nav_menu .sub-menu li {
    margin-bottom: 0.4rem;
}

.footer__col .widget_nav_menu .sub-menu a {
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer__redes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer__red-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    font-size: 0.9rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer__red-link:hover {
    color: var(--color-acento);
    border-color: var(--color-acento);
    background: rgba(255, 255, 255, 0.05);
}

.footer__copy-wrap {
    padding: 1.25rem 1.25rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer__copy {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 900px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 500px) {
    .footer__grid {
        gap: 2rem;
        text-align: center;
    }

    .footer__col--logo .footer__logo-img {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ============================================
   PÃƒÂGINAS INTERNAS (sin hero)
   ============================================ */
.pagina-interna .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-primario);
}

.main-interno {
    padding: 2rem 0 4rem;
}

.pagina-interna .main-interno {
    padding-top: 6.5rem;
}

/* ----- Breadcrumb ----- */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.9rem;
    color: var(--color-texto-claro);
}

.breadcrumb a {
    color: var(--color-primario);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb__sep {
    color: var(--color-texto-claro);
    opacity: 0.7;
}

.breadcrumb__actual {
    color: var(--color-texto);
    font-weight: 500;
}

/* ----- Layout 2 columnas (habitaciÃƒÂ³n + formulario) ----- */
.habitacion__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.habitacion__col-contenido {
    min-width: 0;
}

.habitacion__col-formulario {
    position: sticky;
    top: 6.5rem;
}

@media (max-width: 960px) {
    .habitacion__layout {
        grid-template-columns: 1fr;
    }

    .habitacion__col-formulario {
        position: static;
    }
}

/* ----- Ficha habitaciÃƒÂ³n ----- */
.habitacion__header {
    margin: 0 0 1.5rem;
}

.habitacion__titulo {
    margin: 0 0 0.25rem;
    font-size: 1.85rem;
    color: var(--color-cta);
}

.habitacion__subtitulo {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-texto-claro);
    font-weight: 500;
}

/* ----- Hero galerÃƒÂ­a habitaciÃƒÂ³n (navegable con thumbnails) ----- */
/* ProporciÃƒÂ³n 820Ãƒâ€”540 (anchoÃƒâ€”alto) */
.habitacion-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 820 / 540;
    margin: 0 0 2rem;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 12px;
}

.habitacion-hero__slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.habitacion-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primario-oscuro);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.habitacion-hero__slide--activo {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.habitacion-hero__controles {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 10;
}

.habitacion-hero__thumbnails {
    display: flex;
    gap: 0.4rem;
}

.habitacion-hero__thumb {
    width: 56px;
    height: 40px;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: border-color 0.25s, opacity 0.25s;
    opacity: 0.8;
}

.habitacion-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.habitacion-hero__thumb:hover {
    opacity: 1;
}

.habitacion-hero__thumb--activo {
    border-color: var(--color-acento);
    opacity: 1;
}

/* ----- Layout 2 columnas para pÃƒÂ¡ginas de formularios (contacto / reserva) ----- */
.form-page {
    display: grid;
    grid-template-columns: 35% 1fr;
    gap: 2.5rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.form-page__col-texto {
    min-width: 0;
}

.form-page__col-form {
    min-width: 0;
}

@media (max-width: 900px) {
    .form-page {
        grid-template-columns: 1fr;
    }
}

/* ----- Formulario de reserva (columna derecha) ----- */
.reserva-form__wrapper {
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    padding: 1.1rem 1.25rem;
    border-top: 4px solid var(--color-acento);
}

.reserva-form__titulo {
    margin: 0 0 0.9rem;
    font-size: 1.25rem;
    color: var(--color-cta);
}

.reserva-form__fila {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 0.75rem;
    margin: 0 0 0.6rem;
}

.reserva-form__fila--3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.reserva-form__fila--label-input {
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 0 0.75rem;
}

.reserva-form__label-inline {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-texto);
    white-space: nowrap;
}

.reserva-form__fila .reserva-form__campo {
    margin: 0;
}

.reserva-form__campo {
    margin: 0 0 0.6rem;
}

.reserva-form__campo--inline-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.reserva-form__campo input,
.reserva-form__campo select,
.reserva-form__campo textarea {
    width: 100%;
    padding: 0.5rem 0.7rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: var(--color-blanco);
    color: var(--color-texto);
    box-sizing: border-box;
}

.reserva-form__campo input:focus,
.reserva-form__campo select:focus,
.reserva-form__campo textarea:focus {
    outline: none;
    border-color: var(--color-primario);
    box-shadow: 0 0 0 2px rgba(26, 77, 46, 0.15);
}

.reserva-form__campo select {
    cursor: pointer;
    appearance: auto;
}

.reserva-form__campo textarea {
    resize: vertical;
    min-height: 64px;
}

.reserva-form__submit {
    margin: 0.75rem 0 0;
}

.reserva-form__submit .btn {
    width: 100%;
    justify-content: center;
}

.habitacion__intro {
    margin: 0 0 2.5rem;
}

.habitacion__intro p {
    margin: 0 0 1rem;
    color: var(--color-texto);
    line-height: 1.65;
}

.habitacion__intro p:last-child {
    margin-bottom: 0;
}

.habitacion__seccion-titulo {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    color: var(--color-cta);
}

.habitacion__detalles {
    margin: 0 0 2.5rem;
}

.habitacion__detalles-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.habitacion__detalle-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem;
    background: var(--color-fondo);
    border-radius: 8px;
    border-left: 4px solid var(--color-acento);
}

.habitacion__detalle-label {
    font-size: 0.85rem;
    color: var(--color-texto-claro);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.habitacion__detalle-valor {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-texto);
}

.habitacion__servicios {
    margin: 0 0 2.5rem;
}

.habitacion__servicios-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.habitacion__servicios-lista li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-texto);
}

.habitacion__servicios-lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-acento);
}

.habitacion__cta {
    margin: 0;
}

/* --- Room Page Enhancements --- */
.room-hero-gallery {
    margin-bottom: 2.5rem;
}

.room-hero__main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--sombra);
    background: #000;
    margin-bottom: 1rem;
}

.room-hero__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.room-hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--transicion);
    z-index: 10;
    opacity: 0;
}

.room-hero__main:hover .room-hero__nav {
    opacity: 1;
}

.room-hero__nav:hover {
    background: var(--color-acento);
    color: white;
    border-color: var(--color-acento);
}

.room-hero__nav--prev {
    left: 1rem;
}

.room-hero__nav--next {
    right: 1rem;
}

.room-hero__nav svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
}

.room-hero__thumbs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--color-acento) transparent;
}

.room-hero__thumbs::-webkit-scrollbar {
    height: 6px;
}

.room-hero__thumbs::-webkit-scrollbar-track {
    background: transparent;
}

.room-hero__thumbs::-webkit-scrollbar-thumb {
    background-color: var(--color-acento);
    border-radius: 10px;
}

.room-hero__thumb {
    flex: 0 0 calc(25% - 0.6rem);
    min-width: 100px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transicion);
    padding: 0;
    background: none;
}

.room-hero__thumb:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .room-hero__main {
        aspect-ratio: 4 / 3;
    }

    .room-hero__thumb {
        flex: 0 0 calc(33.333% - 0.5rem);
        min-width: 80px;
    }
}

.room-hero__thumb.active {
    border-color: var(--color-acento);
}

.room-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Header in Sidebar */
.room-sidebar__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-fondo);
}

.room-sidebar__title {
    margin: 0 0 0.5rem !important;
    font-size: 1.85rem !important;
    color: var(--color-cta) !important;
    line-height: 1.2;
}

.room-sidebar__subtitle {
    margin: 0;
    color: var(--color-texto-claro);
    font-size: 1.15rem;
    font-weight: 500;
}

/* Distribution */
.room-layout {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.room-sidebar {
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .room-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .room-sidebar {
        position: static;
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .room-layout {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --margen-lateral: 2.5%;
    }

    .contenedor {
        padding: 0 0.5rem;
    }

    .room-layout {
        gap: 1.5rem;
    }
}

/* Table Details */
.room-details-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 2rem;
    background: var(--color-blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.room-details-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f2f2f2;
}

.room-details-table tr:last-child td {
    border-bottom: none;
}

.room-details-table td:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--color-cta);
    width: auto;
    font-size: 0.95rem;
}

.room-details-table svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-acento);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.room-details-table td:last-child {
    color: var(--color-texto);
    font-weight: 500;
    text-align: right;
    font-size: 0.95rem;
}

/* Amenities single column */
.room-amenities-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.room-amenities-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--color-texto);
    font-size: 1rem;
}

.room-amenities-list li svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-acento);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

/* Price Card */
.price-card {
    background: var(--color-primario-oscuro);
    color: white;
    padding: 2.25rem 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.price-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--color-acento);
    opacity: 0.15;
    border-radius: 50%;
}

.price-card__label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
    opacity: 0.9;
    font-weight: 600;
}

.price-card__amount {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--color-blanco);
    line-height: 1;
}

.price-card__amount small {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.8;
}

.price-card__old {
    display: block;
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

.price-card__badge {
    display: inline-block;
    background: var(--color-acento);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(238, 108, 44, 0.3);
}

.price-card__promo {
    margin-top: 1.75rem;
    font-size: 0.95rem;
    color: #ffd6b3;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* --- End Room Page Enhancements --- */

/* ----- PÃƒÂ¡gina Servicios (raÃƒÂ­z) ----- */
.servicios-pagina__intro {
    margin: 0 0 2rem;
    max-width: 720px;
    color: var(--color-texto);
    line-height: 1.65;
}

.servicios-pagina__lista {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

.servicios-pagina__item {
    padding: 1.5rem;
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    border-left: 4px solid var(--color-acento);
}

.servicios-pagina__item-titulo {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    color: var(--color-cta);
}

.servicios-pagina__item-desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
}

.servicios-pagina__cierre {
    margin: 0 0 2rem;
    max-width: 720px;
    color: var(--color-texto);
    line-height: 1.65;
}

/* ----- PÃƒÂ¡gina Nosotros (raÃƒÂ­z) ----- */
.nosotros__intro {
    margin: 0 0 2.5rem;
    max-width: 720px;
    color: var(--color-texto);
    line-height: 1.65;
}

.nosotros__seccion-titulo {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    color: var(--color-cta);
}

.nosotros__valores {
    margin: 0 0 2.5rem;
}

.nosotros__valores-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.nosotros__valores-lista li {
    padding: 0.6rem 1.2rem;
    background: var(--color-fondo);
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-cta);
    border-left: 4px solid var(--color-acento);
}

.nosotros__mision,
.nosotros__vision {
    margin: 0 0 2.5rem;
}

.nosotros__texto {
    margin: 0;
    max-width: 720px;
    color: var(--color-texto);
    line-height: 1.65;
}

.nosotros__elegirnos {
    margin: 0 0 2.5rem;
}

.nosotros__elegirnos-texto {
    max-width: 720px;
}

.nosotros__elegirnos-texto p {
    margin: 0 0 1rem;
    color: var(--color-texto);
    line-height: 1.65;
}

.nosotros__elegirnos-texto p:last-child {
    margin-bottom: 0;
}

/* ----- PÃƒÂ¡ginas Tour (tours/) ----- */
.tour__seccion-titulo {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    color: var(--color-cta);
}

.tour__detalles,
.tour__lugares,
.tour__itinerario,
.tour__incluye,
.tour__no-incluye,
.tour__recomendaciones {
    margin: 0 0 2.5rem;
}

.tour__texto p {
    margin: 0 0 1rem;
    color: var(--color-texto);
    line-height: 1.65;
}

.tour__texto p:last-child {
    margin-bottom: 0;
}

.tour__lista-simple {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour__lista-simple li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-texto);
}

.tour__lista-simple li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-acento);
}

.tour__itinerario-intro {
    margin: 0 0 1rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
    font-size: 0.95rem;
}

.tour__itinerario-lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tour__itinerario-item {
    margin: 0 0 1.5rem;
    padding: 1.25rem;
    background: var(--color-fondo);
    border-radius: 10px;
    border-left: 4px solid var(--color-primario);
}

.tour__itinerario-item:last-child {
    margin-bottom: 0;
}

.tour__itinerario-hora {
    display: block;
    font-weight: 700;
    color: var(--color-cta);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.tour__itinerario-item p {
    margin: 0;
    color: var(--color-texto);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ----- Cluster de Tours (tours.php en raÃƒÂ­z) ----- */
.tours-cluster {
    padding: 0 0 2rem;
}

.tours-cluster__titulo {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--color-cta);
}

.tours-cluster__subtitulo {
    margin: 0 0 2rem;
    color: var(--color-texto-claro);
    font-size: 1.05rem;
    max-width: 680px;
}

.tours-cluster__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

/* Tours en una sola columna cuando el cluster estÃƒÂ¡ en layout de 2 columnas (lista + formulario) */
.tours-cluster--col .tours-cluster__grid {
    grid-template-columns: 1fr;
}

.tours-cluster__card {
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border-top: 4px solid var(--color-acento);
}

.tours-cluster__card-imagen-link {
    flex-shrink: 0;
    width: 300px;
    display: block;
    text-decoration: none;
    align-self: stretch;
}

.tours-cluster__card-imagen {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primario-oscuro);
}

.tours-cluster__card-contenido {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-width: 0;
    flex: 1;
}

.tours-cluster__card-titulo {
    margin: 0;
    font-size: 1.15rem;
    color: var(--color-cta);
}

.tours-cluster__card-titulo a {
    color: inherit;
    text-decoration: none;
}

.tours-cluster__card-titulo a:hover {
    color: var(--color-acento);
}

.tours-cluster__card-desc {
    margin: 0.25rem 0 0;
    font-size: 0.95rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
    flex: 1;
}

.tours-cluster__link {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primario);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(26, 77, 46, 0.3);
    transition: color var(--transicion), border-color var(--transicion), transform 0.15s;
}

.tours-cluster__link::after {
    content: 'Ã¢â‚¬Âº';
    font-size: 1rem;
}

.tours-cluster__link:hover {
    color: var(--color-primario-oscuro);
    border-color: var(--color-primario-oscuro);
    transform: translateY(-1px);
}

/* ----- BotÃƒÂ³n flotante WhatsApp ----- */
.floating-actions {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    z-index: 250;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1rem;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.whatsapp-float__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float__icon-svg {
    width: 20px;
    height: 20px;
    fill: #25D366;
}

.whatsapp-float__text {
    letter-spacing: 0.06em;
}

.whatsapp-float:hover {
    background: #1ebe5c;
    color: #ffffff;
}

@media (max-width: 600px) {
    .floating-actions {
        right: 0.75rem;
        bottom: 0.75rem;
        gap: 0.5rem;
        flex-wrap: nowrap;
        flex-direction: row-reverse;
    }

    .whatsapp-float {
        padding: 0.5rem;
        border-radius: 50%;
        width: 44px;
        height: 44px;
        justify-content: center;
    }

    .footer-menu-toggle {
        height: 44px;
        padding: 0.5rem 0.75rem;
        border-radius: 999px;
        justify-content: center;
    }

    .whatsapp-float__text {
        display: none;
    }
}

/* Ajustes extra solo para mÃƒÂ³vil (habitaciones/tours) */
@media (max-width: 768px) {

    .habitacion-hero__thumbnails,
    .habitacion-hero__thumb {
        display: none !important;
    }
}

/* ----- MenÃƒÂº mÃƒÂ³vil desde el footer ----- */
.footer-menu-toggle {
    display: none;
    padding: 0.6rem 0.9rem;
    border-radius: 999px;
    border: none;
    background: var(--color-primario);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    align-items: center;
    gap: 0.4rem;
}

.footer-menu-toggle__icon {
    font-size: 1.1rem;
}

.mobile-footer-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 300;
    transition: opacity var(--transicion), visibility var(--transicion);
}

.mobile-footer-menu--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-footer-menu__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background: var(--color-primario-oscuro);
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.5);
    padding: 1.5rem 1.25rem;
    transform: translateX(100%);
    transition: transform var(--transicion);
}

.mobile-footer-menu--open .mobile-footer-menu__panel {
    transform: translateX(0);
}

.mobile-footer-menu__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.mobile-footer-menu__close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: scale(1.05);
}

.mobile-footer-menu__logo {
    display: block;
    margin-bottom: 1.5rem;
}

.mobile-footer-menu__logo-img {
    max-width: 160px;
    height: auto;
}

.mobile-footer-menu__lista {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-footer-menu__item {
    margin: 0.3rem 0;
}

.mobile-footer-menu__item a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem;
}

.mobile-footer-menu__item a:hover {
    color: var(--color-acento);
}

.mobile-footer-menu__item--grupo {
    margin-top: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .footer-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 600px) {
    .tours-cluster__card {
        flex-direction: column;
    }

    .tours-cluster__card-imagen-link {
        width: 100%;
        height: 225px;
    }

    .tours-cluster__card-imagen {
        min-height: 225px;
        height: 225px;
    }
}

/* ----- Modal lightbox confirmaciÃƒÂ³n envÃƒÂ­o formulario ----- */
.form-feedback-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-feedback-modal--open {
    opacity: 1;
    visibility: visible;
}

.form-feedback-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.form-feedback-modal__box {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem;
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

/* ----- Utilities ----- */
.mt-2 {
    margin-top: 2rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.text-left {
    text-align: left;
}

/* ----- Services Page ----- */
.services-header {
    margin-bottom: 2rem;
}

.services-header__title {
    text-align: left;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.services-header__desc {
    font-size: 1rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
}

.services-group {
    margin-bottom: 2.5rem;
}

.services-group__title {
    color: var(--color-cta);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-group__title .line {
    width: 30px;
    height: 2px;
    background: var(--color-acento);
}

.services-list {
    display: grid;
    gap: 1.25rem;
}

.service-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid;
}

.service-item--large-gap {
    gap: 1.5rem;
}

.service-item__icon {
    color: var(--color-acento);
    flex-shrink: 0;
    padding-top: 3px;
}

.service-item__icon svg {
    width: 22px;
    height: 22px;
}

.service-item--large-gap .service-item__icon svg {
    width: 28px;
    height: 28px;
}

.service-item__title {
    font-size: 1.1rem;
    color: var(--color-cta);
    margin: 0;
}

.service-item--large-gap .service-item__title {
    font-size: 1.2rem;
    margin: 0;
}

.service-item__text {
    color: var(--color-texto-claro);
    line-height: 1.4;
    font-size: 0.95rem;
    margin: 0;
}

.service-item--large-gap .service-item__text {
    line-height: 1.6;
}

/* ----- Sidebar Gallery & Cards ----- */
.sidebar-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-gallery__img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--sombra);
    transition: transform 0.3s ease;
    display: block;
}

.sidebar-gallery__img:hover {
    transform: scale(1.02);
}

.price-card--info {
    margin-top: 2rem;
}

/* ----- placeholders ----- */
.placeholder-gallery {
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border: 2px dashed #ddd;
    text-align: center;
}

.placeholder-gallery__content {
    color: #999;
}

.placeholder-gallery__icon {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-gallery__text {
    font-size: 1.1rem;
}


.form-feedback-modal--open .form-feedback-modal__box {
    transform: scale(1);
}

.form-feedback-modal__close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-texto-claro);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.form-feedback-modal__close:hover {
    color: var(--color-texto);
    background: rgba(0, 0, 0, 0.06);
}

.form-feedback-modal__content {
    margin-bottom: 1.5rem;
}

.form-feedback-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: bold;
    border-radius: 50%;
}

.form-feedback-modal__content--success .form-feedback-modal__icon {
    background: rgba(26, 77, 46, 0.15);
    color: var(--color-primario);
}

.form-feedback-modal__content--error .form-feedback-modal__icon {
    background: rgba(180, 50, 50, 0.15);
    color: #b43232;
}

.form-feedback-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
    color: var(--color-texto);
}

.form-feedback-modal__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-texto-claro);
    line-height: 1.5;
}

.form-feedback-modal__btn {
    min-width: 120px;
}

/* ----- Reviews Carousel ----- */
.reviews-section {
    padding: 5rem 0;
    background-color: var(--color-fondo);
    overflow: hidden;
}

.reviews-section--tripadvisor {
    background-color: var(--color-primario-oscuro);
}

.reviews-section--tripadvisor .elegirnos__titulo {
    color: var(--color-blanco);
}

.reviews-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 1rem 0;
}

.reviews-carousel-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    padding: 1rem var(--margen-lateral);
    animation: scroll-reviews 20s ease-in-out infinite alternate;
}

.review-card {
    width: calc(33.333vw - 2rem);
    min-width: 320px;
    max-width: 450px;
    background: var(--color-blanco);
    border-radius: 12px;
    box-shadow: var(--sombra);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #00aa6c;
    /* TripAdvisor green */
    transition: transform 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.review-name {
    font-weight: 700;
    color: var(--color-cta);
    font-size: 1.05rem;
}

.review-date {
    font-size: 0.85rem;
    color: var(--color-texto-claro);
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.review-title {
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--color-cta);
}

.review-text {
    font-size: 0.95rem;
    color: var(--color-texto-claro);
    line-height: 1.6;
    margin: 0 0 1.5rem;
    flex: 1;
}

.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.tripadvisor-logo {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.review-card--booking {
    border-top: 4px solid #003580;
    /* Booking.com blue */
}

.reviews-carousel-track--booking {
    animation-delay: -10s;
    animation-direction: alternate-reverse;
}

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

@media (max-width: 768px) {
    .review-card {
        width: 85vw;
        min-width: 280px;
    }
}

/* ----- TÃƒÂ©rminos y Condiciones ----- */
.terminos {
    color: var(--color-texto);
    line-height: 1.6;
    margin-bottom: 3rem;
}

.terminos__intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-cta);
}

.terminos__seccion {
    margin-bottom: 2.5rem;
}

.terminos__subtitulo {
    font-size: 1.5rem;
    color: var(--color-cta);
    border-bottom: 2px solid var(--color-acento);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.terminos__seccion h3 {
    font-size: 1.25rem;
    color: var(--color-cta);
    margin-bottom: 1rem;
}

.terminos__lista {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terminos__lista li {
    margin-bottom: 0.5rem;
}

.terminos__tabla-scroll {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.terminos__tabla {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.terminos__tabla th,
.terminos__tabla td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.terminos__tabla th {
    background-color: var(--color-cta);
    color: var(--color-blanco);
}

.terminos__tabla tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ----- Map Section ----- */
.location-map {
    margin: 4rem 0;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--sombra);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ----- Tours & Treks Styles ----- */
.tour-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tour-header__title {
    font-size: 2.5rem;
    color: var(--color-cta);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tour-header__subtitle {
    font-size: 1.1rem;
    color: var(--color-texto-claro);
    line-height: 1.6;
}

.tour-tabs {
    background: var(--color-blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.tour-tabs__nav {
    display: flex;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none;
}

.tour-tabs__nav::-webkit-scrollbar {
    display: none;
}

.tour-tabs__btn {
    padding: 1.25rem 2rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-texto-claro);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tour-tabs__btn:hover {
    color: var(--color-cta);
}

.tour-tabs__btn.active {
    color: var(--color-cta);
    border-bottom-color: var(--color-cta);
    background: var(--color-blanco);
}

.tour-tabs__content {
    padding: 2.5rem;
}

.tour-tabs__panel {
    display: none;
}

.tour-tabs__panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Itinerary Styles */
.itinerary-day-brief {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #eee;
}

.itinerary-day-brief:last-child {
    border-bottom: none;
}

.itinerary-day-brief h3 {
    color: var(--color-cta);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.itinerary-day-brief p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.itinerary-dist {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primario);
    text-transform: uppercase;
}

.itinerary-day {
    margin-bottom: 3rem;
    padding-left: 2.5rem;
    position: relative;
}

.itinerary-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: -3rem;
    width: 2px;
    background: #eee;
}

.itinerary-day:last-child::before {
    display: none;
}

.itinerary-day::after {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--color-cta);
    border: 3px solid var(--color-blanco);
    box-shadow: 0 0 0 2px var(--color-cta);
    z-index: 1;
}

.itinerary-day__title {
    font-size: 1.25rem;
    color: var(--color-cta);
    margin-bottom: 1rem;
    font-weight: 800;
}

.itinerary-day__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    background: #fdfdfd;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    margin-top: 1.5rem;
    list-style: none !important;
}

.itinerary-day__stats li {
    font-size: 0.9rem;
    margin: 0 !important;
}

/* Inclusions Grid */
.inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.inclusion-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-cta);
}

.inclusion-box.exclusion h3 {
    color: #c0392b;
}

.inclusion-box ul {
    list-style: none !important;
    padding: 0 !important;
}

.inclusion-box li {
    margin-bottom: 0.85rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.inclusion-box li::before {
    content: 'Ã¢Å“â€œ';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.inclusion-box.exclusion li::before {
    content: 'Ãƒâ€”';
    color: #c0392b;
    font-size: 1.2rem;
    top: -2px;
}

/* FAQ List */
.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    font-size: 1.15rem;
    color: var(--color-cta);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-item__answer {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Sidebar Tour Info */
.tour-info-card {
    background: var(--color-blanco);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border-top: 5px solid var(--color-cta);
}

.tour-info-card__title {
    font-size: 1.25rem;
    color: var(--color-cta);
    margin-bottom: 1.25rem;
    text-align: center;
}

.tour-info-card__list {
    list-style: none !important;
    padding: 0 !important;
    margin-bottom: 1.5rem !important;
}

.tour-info-card__list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.tour-info-card__list li:last-child {
    border-bottom: none;
}

.tour-info-card__list strong {
    color: var(--color-texto-claro);
}

@media (max-width: 768px) {
    .tour-header__title {
        font-size: 1.8rem;
    }

    .tour-tabs__content {
        padding: 1.5rem;
    }

    .tour-tabs__btn {
        padding: 1rem 1.25rem;
        font-size: 0.85rem;
    }

    .inclusions-grid {
        grid-template-columns: 1fr;
    }

    .itinerary-day__stats {
        grid-template-columns: 1fr;
    }

    .itinerary-day {
        padding-left: 1.5rem;
    }
}

/* ==========================================================================
   TOUR TEMPLATE STYLES
   ========================================================================== */
.tour-template-wrapper {
    width: 100% !important;
    background: #fff;
}

.contenedor-tours-full {
    margin: 0 !important;
    width: 100% !important;
}

.tour-page-header {
    background: #f9fdf9;
    /* Very light color */
    padding: 5rem 0 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
}

.tour-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #e8327c;
    /* Theme accent */
    border-radius: 4px;
}

.tour-page-header__titulo {
    font-size: 2.2rem;
    color: #2c3842;
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.tour-page-header__texto {
    flex: 1;
    text-align: left;
}

.service-badge {
    background: #e8327c;
    color: #fff;
    padding: 0.4rem 1.4rem;
    font-size: 0.9rem;
    border-radius: 50px;
    letter-spacing: 0.1em;
    font-weight: 800;
    animation: serviceBadgeColors 3s infinite;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes serviceBadgeColors {

    0%,
    100% {
        background-color: #e8327c;
    }

    /* Primary */
    33% {
        background-color: #2c3842;
    }

    /* Dark Blue */
    66% {
        background-color: #a9b319;
    }

    /* Accent */
}

.tour-carousel-wrapper {
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    padding: 0 7%;
}

.tour-carousel-inner {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.tour-carousel-item {
    flex: 0 0 calc(25% - 15px);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.tour-carousel-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.tour-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-carousel-item img:hover {
    transform: scale(1.1);
}

#tour-prev,
#tour-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    font-weight: bold;
    color: #2c3842;
}

#tour-prev {
    left: 2%;
}

#tour-next {
    right: 2%;
}

.tour-template-wrapper .entry-content {
    background: #fff;
}

.tour-template-wrapper {
    border: 1px solid #f1f1f1;
}

@media (max-width: 1024px) {
    .tour-carousel-item {
        flex: 0 0 calc(50% - 15px) !important;
    }
}

@media (max-width: 600px) {
    .tour-carousel-item {
        flex: 0 0 calc(100% - 15px) !important;
    }
}

/* ==========================================================================
   TABS SHORTCODE STYLES
   ========================================================================== */
.tabs-container {
    margin: 3rem 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.tabs-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fdfdfd;
    border-bottom: 2px solid #f1f1f1;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 1.5rem 2.5rem;
    cursor: pointer;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #777;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border-right: 1px solid #f1f1f1;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.tab-btn:hover {
    color: #2c3842;
    background: #f9f9f9;
}

.tab-btn.active {
    color: #fff;
    background: #e8327c;
    border-right-color: rgba(0, 0, 0, 0.05);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.tabs-content {
    padding: 2rem 3rem;
    min-height: 200px;
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    background: #fff;
    position: relative;
}

.custom-tab-section {
    display: none;
    width: 100%;
}

.custom-tab-section.active {
    display: block;
    animation: tabFadeIn 0.4s ease forwards;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .tab-btn {
        padding: 1.2rem 1.5rem;
        min-width: auto;
        font-size: 0.75rem;
    }

    .tabs-content {
        padding: 2rem;
    }
}

/* ==========================================================================
   HEADER OVERRIDES FOR TOUR TEMPLATE
   ========================================================================== */
.page-template-tour-template-php .header,
.page-template-templates-tour-template-php .header,
.page-template-tour-template .header,
.page-template-templates-tour-template .header,
.header.header--dark {
    background: #2c3842 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-template-tour-template-php .header .header__nav .menu>li>a,
.page-template-templates-tour-template-php .header .header__nav .menu>li>a,
.page-template-tour-template .header .header__nav .menu>li>a,
.page-template-templates-tour-template .header .header__nav .menu>li>a,
.header.header--dark .header__nav .menu>li>a {
    color: #ffffff !important;
}

/* Sub-menu styling for dark header */
.page-template-tour-template-php .sub-menu,
.page-template-templates-tour-template-php .sub-menu,
.page-template-tour-template .sub-menu,
.page-template-templates-tour-template .sub-menu,
.header.header--dark .sub-menu {
    background: #1e272f !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.page-template-tour-template-php .sub-menu a,
.page-template-templates-tour-template-php .sub-menu a,
.page-template-tour-template .sub-menu a,
.page-template-templates-tour-template .sub-menu a,
.header.header--dark .sub-menu a {
    color: #ffffff !important;
}

/* ==========================================================================
   TOUR DETAILS GRID STYLES
   ========================================================================== */
.tour-details-grid-wrapper {
    background: #fdfdfd;
    padding: 0;
}

.tour-details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    border: solid 1px #c8c8c8;
    padding: 0 1rem;
    border-radius: 1rem;
}

.tour-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    flex: 0 1 auto;
}

.tour-detail-item .dashicons {
    color: #e8327c;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.tour-detail-text {
    display: flex;
    flex-direction: column;
}

.tour-detail-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.tour-detail-value {
    font-size: 1rem;
    color: #2c3842;
    font-weight: 600;
}

.tour-detail-item--cta {
    margin-left: auto;
    padding: 0;
}

@media (max-width: 1024px) {
    .tour-details-grid {
        gap: 2rem;
    }

    .tour-detail-item--cta {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 600px) {
    .tour-details-grid {
        gap: 1.5rem;
    }
}

/* ==========================================================================
   TOUR LIGHTBOX MODAL STYLES
   ========================================================================== */
.tour-lightbox {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tour-lightbox.active {
    display: flex;
}

.tour-lightbox__content {
    max-width: 90%;
    max-height: 85vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    animation: zoomIn 0.3s ease;
    cursor: default;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tour-lightbox__close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: #fff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
}

.tour-lightbox__close:hover {
    transform: rotate(90deg);
    color: #e8327c;
}

@media (max-width: 768px) {
    .tour-lightbox {
        padding: 20px;
    }

    .tour-lightbox__content {
        max-width: 100%;
    }

    .tour-lightbox__close {
        right: 20px;
        top: 15px;
        font-size: 40px;
    }
}

/* ==========================================================================
   ROOM TEMPLATE STYLES (7x2 Grid & Booking)
   ========================================================================== */
.room-template-wrapper {
    background: #fff;
}

.room-grid-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(2, 230px);
    gap: 10px;
    padding: 10px 0;
}

.room-grid-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: filter 0.3s ease;
}

.room-grid-item:hover {
    filter: brightness(1.1);
}

.room-grid-item--main {
    grid-column: span 3;
    grid-row: span 2;
}

.room-grid-item--sub {
    grid-column: span 2;
    grid-row: span 1;
}

.room-grid-item--empty {
    background-color: #f1f1f1;
}

.room-content-layout {
    display: flex;
    gap: 5rem;
    padding: 4rem 0 7rem;
}

.room-content-main {
    flex: 0 0 65%;
}

.room-header-title {
    margin-bottom: 3rem;
}

.room-title {
    font-size: 3rem;
    color: #2c3842;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.room-meta-top {
    display: flex;
    gap: 30px;
    color: #888;
    font-weight: 600;
    font-size: 1rem;
}

.room-meta-top i {
    color: var(--color-primario);
    vertical-align: middle;
    margin-right: 5px;
}

.room-content-sidebar {
    flex: 1;
}

.booking-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 3rem;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.booking-card__title {
    font-size: 1.5rem;
    color: #2c3842;
    margin-bottom: 2rem;
    font-weight: 800;
    text-align: center;
}

.booking-form-vertical .booking-form-group {
    margin-bottom: 15px;
}

.booking-form-vertical input,
.booking-form-vertical textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.3s;
}

.booking-form-vertical input:focus,
.booking-form-vertical textarea:focus {
    border-color: var(--color-primario);
    outline: none;
}

.booking-form-row {
    display: flex;
    gap: 15px;
}

.btn--full {
    width: 100%;
    margin-top: 10px;
    padding: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .room-grid-container {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto;
    }

    .room-grid-item--main {
        grid-column: span 4;
        height: 400px;
    }

    .room-grid-item--sub {
        grid-column: span 2;
        height: 200px;
    }

    .room-content-layout {
        flex-direction: column;
        gap: 4rem;
    }

    .room-content-main {
        order: 2;
    }

    .room-content-sidebar {
        order: 1;
    }
}


/* ==========================================================================
   CATEGORY & ARCHIVE STYLES
   ========================================================================== */
.category-template-wrapper {
    padding: 2rem 0 6rem;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

.post-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.post-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.post-card__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.post-card__duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2c3842;
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 5px;
    z-index: 10;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    pointer-events: none;
}

.post-card:hover .post-card__duration {
    background: #e8327c;
    transform: scale(1.05);
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card:hover .post-card__image img {
    transform: scale(1.1);
}

.post-card__content {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-card__title {
    font-size: 1.6rem;
    color: #2c3842;
    margin: 0 0 1.2rem;
    font-weight: 900;
    line-height: 1.3;
}

.post-card__title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.post-card__title a:hover {
    color: var(--color-primario);
}

.post-card__excerpt {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
    flex: 1;
}

.post-card__link {
    align-self: flex-start;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
}

.pagination-wrap {
    margin-top: 5rem;
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    text-decoration: none;
    color: #2c3842;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover {
    background: var(--color-primario);
    color: #fff;
}

@media (max-width: 1200px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-card__content {
        padding: 2rem;
    }
}

/* ============================================
   ROOM TOP HEADER
   ============================================ */
.room-top-header {
    padding: 3.5rem 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.room-top-header__meta {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.room-top-meta-item {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.room-top-meta-label {
    font-size: 0.8rem;
    color: #a0a0a0;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.room-top-meta-value {
    font-size: 1.4rem;
    color: #2c3842;
    font-weight: 900;
    line-height: 1;
}

.room-top-meta-item--price .room-top-meta-value {
    color: var(--color-primario);
    font-size: 2.2rem;
}

@media (max-width: 1024px) {
    .room-top-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .room-top-header__meta {
        justify-content: flex-start;
        width: 100%;
        gap: 2.5rem;
    }

    .room-top-meta-item {
        text-align: left;
    }
}

/* Coming Soon Template
-------------------------------------------------------------- */
.coming-soon-wrapper {
    background-color: #2c3842;
    color: #fff;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0;
}

.coming-soon-content {
    max-width: 900px;
}

.coming-soon-title {
    font-size: 5rem;
    font-weight: 900;
    color: #e8327c;
    margin-bottom: 40px;
    letter-spacing: -2px;
    line-height: 0.9;
}

.coming-soon-body {
    font-size: 1.8rem;
    line-height: 1.5;
    color: #fef2db;
    max-width: 700px;
    margin: 0 auto;
}

.coming-soon-body p {
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .coming-soon-wrapper {
        min-height: 50vh;
        padding: 80px 20px;
    }

    .coming-soon-title {
        font-size: 3rem;
        margin-bottom: 20px;
    }

/* Prefooter Logos */
.prefooter-logos {
    background-color: var(--color-blanco);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.prefooter-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.prefooter-logos img {
    max-height: 45px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.prefooter-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .prefooter-logos {
        padding: 2rem 0;
    }

    .prefooter-logos-wrapper {
        gap: 2rem;
    }

    .prefooter-logos img {
        max-height: 35px;
    }
}

    .coming-soon-body {
        font-size: 1.3rem;
    }
}