/* =========================================================
   Motel La Cúpula — Rediseño
   CSS puro basado en la plantilla "The Cappa" (DuruThemes)
   Sistema de diseño ORIGINAL de la plantilla:
     · Fondo:      #222 / #1b1b1b (bg-darkblack)
     · Acento:     #aa8453 (bronce) · secundario #ab8a62
     · Títulos:    Gilda Display (serif), 46px, #fff
     · Subtítulos: Argesta Display Condensed, uppercase, letter-spacing 6px, bronce
     · Cuerpo:     Argesta Display, 15px, rgba(255,255,255,0.5)
     · Botones:    cuadrados, borde fino, relleno deslizante en hover
   ========================================================= */

:root {
    --bronze: #aa8453;
    --bronze-2: #ab8a62;
    --bronze-soft: #b19777;
    --bg: #222222;
    --bg-dark: #1b1b1b;
    --bg-card: #1f1f1f;
    --white: #ffffff;
    --text: rgba(255, 255, 255, 0.5);
    --line: rgba(255, 255, 255, 0.2);
    --line-strong: rgba(255, 255, 255, 0.5);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Argesta Display', sans-serif;
    font-size: 15px;
    line-height: 1.75em;
    font-weight: 400;
    background-color: var(--bg);
    color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Argesta Display', serif;
    font-weight: 400;
    color: var(--white);
    line-height: 1.25em;
}

::selection { background: var(--bronze); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--bronze); }

/* ---------- Header ---------- */
#site-header { background: transparent; }
#site-header.scrolled {
    background: #1b1b1b;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-link {
    position: relative;
    color: #fff;
    font-family: 'Argesta Display Condensed', sans-serif;
    letter-spacing: 2px;
    transition: color .3s ease;
}
.nav-link:hover { color: var(--bronze); }

/* ---------- Menú móvil: drawer lateral derecho ---------- */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    z-index: 80;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-dark);
    border-left: 1px solid rgba(170, 132, 83, .2);
    box-shadow: -20px 0 60px rgba(0, 0, 0, .5);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.65, .05, .36, 1);
    overflow-y: auto;
}
.mobile-drawer.open { transform: translateX(0); }

.menu-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze);
    font-size: 22px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}
.menu-close:hover { background: var(--bronze); color: #fff; border-color: var(--bronze); }

.mobile-drawer__logo {
    height: 58px;
    width: auto;
    max-width: 70%;
    object-fit: contain;
    object-position: left center;
    margin: 44px 0 28px;   /* baja para librar el botón de cierre */
    align-self: flex-start;
}

.mobile-link {
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    color: #fff;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 15px;
    transition: color .25s ease, padding-left .25s ease;
}
.mobile-link:hover { color: var(--bronze); padding-left: 8px; }

.mobile-drawer__social {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding-top: 28px;
}
.mobile-drawer__social a {
    width: 40px; height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    transition: all .3s ease;
}
.mobile-drawer__social a:hover { background: var(--bronze); border-color: var(--bronze); }

/* ==========================================================
   SLIDER / HERO  (réplica en CSS puro del slider de la plantilla)
   ========================================================== */
.header-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--bg-dark);
}

/* Slides en fade */
.slides { position: absolute; inset: 0; }
.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.08);
    transition: opacity 1.2s ease, transform 6s ease, visibility 1.2s ease;
}
.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);   /* zoom lento Ken Burns mientras está activo */
}

/* Overlay oscuro (mismo mecanismo data-overlay-dark de la plantilla) */
[data-overlay-dark]::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 1;
}
[data-overlay-dark="2"]::before { opacity: .2; }
[data-overlay-dark="3"]::before { opacity: .3; }
[data-overlay-dark="4"]::before { opacity: .45; }
[data-overlay-dark="5"]::before { opacity: .55; }
[data-overlay-dark="6"]::before { opacity: .65; }

/* Centrado vertical */
.v-middle {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}
.caption { text-align: center; }

/* Estrellas (réplica exacta .star-rating) */
.stars { display: inline-block; margin-bottom: 10px; }
.star-rating {
    position: relative;
    display: inline-block;
    width: 0; height: 0;
    margin-left: .9em;
    margin-right: .9em;
    margin-bottom: 2em;
    border-right: .3em solid transparent;
    border-bottom: .7em solid #e4a853;
    border-left: .3em solid transparent;
    font-size: 8px;
}
.star-rating::before,
.star-rating::after {
    content: "";
    display: block;
    width: 0; height: 0;
    position: absolute;
    top: .6em;
    left: -1em;
    border-right: 1em solid transparent;
    border-bottom: .7em solid #e4a853;
    border-left: 1em solid transparent;
    transform: rotate(-35deg);
}
.star-rating::after { transform: rotate(35deg); }

/* Tipografía del caption (igual que .header .caption) */
.caption h4 {
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: #fff;
    margin: 20px 0;
}
.caption h1 {
    font-family: 'Gilda Display', serif;
    font-size: 55px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 12px;
    line-height: 1.35em;
    color: #fff;
    margin-bottom: 28px;
}
.caption .butn-light { margin-top: 10px; }

/* Animación de entrada del texto al activarse el slide */
.slide .caption .stars,
.slide .caption h4,
.slide .caption h1,
.slide .caption .butn-light {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s ease;
}
.slide.active .caption .stars { transition-delay: .3s; opacity: 1; transform: translateY(0); }
.slide.active .caption h4     { transition-delay: .5s; opacity: 1; transform: translateY(0); }
.slide.active .caption h1     { transition-delay: .7s; opacity: 1; transform: translateY(0); }
.slide.active .caption .butn-light { transition-delay: .9s; opacity: 1; transform: translateY(0); }

/* Flechas — circulares, juntas, abajo a la derecha (como la plantilla) */
.slider-arrow {
    position: absolute;
    bottom: 40px;
    z-index: 5;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .4);
    cursor: pointer;
    transition: all .3s ease;
}
.slider-arrow:hover { background: var(--bronze); border-color: var(--bronze); }
.slider-prev { right: 112px; }
.slider-next { right: 50px; }

/* Indicador numérico (1 2 3) vertical al lado derecho */
.slider-dots {
    position: absolute;
    right: 45px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.slider-dots button {
    width: auto; height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .45);
    font-family: 'Gilda Display', serif;
    font-size: 17px;
    line-height: 1;
    cursor: pointer;
    transition: color .3s ease;
}
.slider-dots button:hover { color: #fff; }
.slider-dots button.active { color: var(--bronze); }
/* línea vertical decorativa entre los números */
.slider-dots::before {
    content: "";
    position: absolute;
    top: -22px;
    left: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, .35);
}

/* Widget de reservación vertical (igual que .header div.reservation) */
.reservation {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    position: absolute;
    top: 0;
    left: 40px;
    height: 60%;
    z-index: 9;
    display: flex;
    align-items: flex-end;
}
.reservation a { display: flex; align-items: center; }
.reservation .call {
    color: #fff;
    text-transform: uppercase;
    font-family: 'Argesta Display Condensed', sans-serif;
    letter-spacing: 5px;
    font-size: 12px;
    line-height: 1.75em;
    margin-top: 15px;
}
.reservation .call span {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
    color: var(--bronze);
    letter-spacing: 1px;
}
.reservation .icon {
    position: absolute;
    left: -1px; top: -50px;
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 100%;
    animation: pulse 2s infinite;
}
.reservation .icon i { color: #fff; font-size: 20px; transform: rotate(90deg); }
.reservation a:hover .icon { border-color: var(--bronze); }
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(170, 132, 83, .5); }
    70%  { box-shadow: 0 0 0 14px rgba(170, 132, 83, 0); }
    100% { box-shadow: 0 0 0 0 rgba(170, 132, 83, 0); }
}

/* Responsive slider */
@media (max-width: 992px) {
    .reservation { display: none; }
    .slider-arrow { width: 44px; height: 44px; font-size: 18px; bottom: 24px; }
    .slider-prev { right: 86px; }
    .slider-next { right: 28px; }
    .slider-dots { right: 20px; }
}
@media (max-width: 640px) {
    .caption h1 { font-size: 32px; letter-spacing: 6px; }
    .caption h4 { font-size: 13px; letter-spacing: 4px; }
}

/* ---------- Botón estilo plantilla (.butn-light, relleno deslizante) ---------- */
.butn-light { position: relative; display: inline-block; line-height: 1.2em; }
.butn-light a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    background: transparent;
    color: #fff;
    padding: 14px 30px;
    font-size: 15px;
    letter-spacing: 3px;
    border: 1px solid rgba(255, 255, 255, .5);
}
.butn-light a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 100%;
    width: 0; height: 100%;
    z-index: 1;
    background: #fff;
    transition: all .3s ease;
}
.butn-light a span { position: relative; z-index: 2; transition: color .3s ease; }
.butn-light a:hover::after { width: 100%; left: 0; }
.butn-light a:hover span { color: #222; }

/* ---------- Botones (firma de la plantilla) ----------
   Cuadrados, borde fino, relleno que se desliza en hover.
   Implementado con background-position para no requerir <span>. */
.btn-gold,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 13px 28px;
    border: 1px solid var(--line-strong);
    border-radius: 0;            /* CUADRADO, como la plantilla */
    cursor: pointer;
    transition: color .3s ease, border-color .3s ease, background-position .35s ease;
    background-size: 200% 100%;
    background-position: right center;
}
/* Botón "claro": relleno blanco entrando desde la derecha */
.btn-outline {
    color: #fff;
    background-image: linear-gradient(to left, transparent 50%, #fff 50%);
}
.btn-outline:hover { color: #222; background-position: left center; border-color: #fff; }

/* Botón "bronce": fondo bronce de base, se oscurece en hover */
.btn-gold {
    color: #fff;
    border-color: var(--bronze-2);
    background-color: var(--bronze-2);
    background-image: linear-gradient(to left, transparent 50%, #1b1b1b 50%);
}
.btn-gold:hover { color: #fff; background-position: left center; border-color: #1b1b1b; }

/* ---------- Secciones ---------- */
.section-pad { padding: 90px 0; }
@media (min-width: 768px) { .section-pad { padding: 120px 0; } }

.subtitle {
    display: inline-block;
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 15px;
    color: var(--bronze);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 8px;
}
.title {
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    font-size: 46px;
    line-height: 1.25em;
    color: #fff;
}
@media (max-width: 640px) { .title { font-size: 34px; } }

/* ---------- Hero ---------- */
.hero-badge {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 1.1rem;
    border: 1px solid var(--line);
    background: rgba(27, 27, 27, .4);
    font-family: 'Argesta Display Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: .82rem;
    line-height: 1.15;
    color: #fff;
}
.hero-badge i { color: var(--bronze); font-size: 1.4rem; }

/* ==========================================================
   NOSOTROS / ABOUT  (réplica premium del bloque .about)
   ========================================================== */
.about-content .about-stars { display: inline-block; margin-bottom: 14px; }
.about-content .subtitle { display: block; }
.about-content p { color: var(--text); }

/* Widget de reservación (igual que .reservations de la plantilla) */
.reservations { display: flex; align-items: center; }
.reservations .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px; height: 54px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    flex-shrink: 0;
}
.reservations .icon i { font-size: 22px; color: var(--bronze); }
.reservations .text { margin-left: 16px; }
.reservations .text p {
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin: 0;
    color: var(--text);
}
.reservations .text a {
    font-family: 'Gilda Display', serif;
    font-size: 26px;
    color: var(--bronze);
    letter-spacing: 0;
    transition: color .3s ease;
}
.reservations .text a:hover { color: var(--bronze-soft); }

/* Botón + reservación en una fila */
.about-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
}

/* ---------- Imágenes escalonadas con detalles premium ---------- */
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
    padding: 22px 22px 0 0;   /* deja aire para el marco decorativo */
}

/* Marco decorativo bronce desfasado detrás de las imágenes */
.about-frame {
    position: absolute;
    top: 0; right: 0;
    width: 62%;
    height: 86%;
    border: 1px solid rgba(170, 132, 83, .55);
    z-index: 0;
    pointer-events: none;
}

.about-img {
    position: relative;
    z-index: 1;
    height: 440px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
}
.about-img::after {              /* velo oscuro inferior para dar profundidad */
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent 55%);
    opacity: .9;
    transition: opacity .5s ease;
}
.about-img:hover { transform: translateY(-8px); }
.about-img:hover::after { opacity: .4; }
.about-img--low  { margin-top: 90px; }   /* desfase escalonado */
.about-img--high { margin-top: 0; }

/* Tarjeta flotante de experiencia (overlapping) */
.about-badge {
    position: absolute;
    left: -10px; bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-dark);
    border: 1px solid rgba(170, 132, 83, .35);
    padding: 18px 22px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .5);
}
.about-badge__icon {
    width: 50px; height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bronze);
    color: #fff;
    font-size: 20px;
}
.about-badge__text strong {
    display: block;
    font-family: 'Gilda Display', serif;
    font-size: 26px;
    color: #fff;
    line-height: 1;
}
.about-badge__text span {
    display: block;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    color: var(--text);
    max-width: 150px;
    margin-top: 4px;
}

/* Sello de calidad (esquina superior derecha) */
.about-seal {
    position: absolute;
    top: -6px; right: -6px;
    z-index: 3;
    width: 96px; height: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    background: var(--bronze);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(170, 132, 83, .45);
}
.about-seal i { font-size: 22px; }
.about-seal span {
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 11px;
    line-height: 1.15;
}

@media (max-width: 640px) {
    .about-images { gap: 14px; padding: 16px 16px 0 0; }
    .about-img { height: 240px; }
    .about-img--low { margin-top: 50px; }
    .about-badge { left: 0; bottom: 8px; padding: 12px 16px; gap: 10px; }
    .about-badge__icon { width: 42px; height: 42px; font-size: 16px; }
    .about-badge__text strong { font-size: 20px; }
    .about-seal { width: 74px; height: 74px; }
    .about-seal i { font-size: 16px; }
}

/* ==========================================================
   HABITACIONES — carrusel estilo .rooms2 de la plantilla
   ========================================================== */
.rooms2-carousel { position: relative; overflow: hidden; }
.rooms2-track {
    display: flex;
    transition: transform .7s cubic-bezier(.65, .05, .36, 1);
    will-change: transform;
}
.rooms2-slide { min-width: 100%; }

/* Bloque habitación: imagen + caption superpuesto */
.rooms2 { position: relative; }
.rooms2 figure {
    margin: 0;
    position: relative;
    width: 66.666%;
    margin-left: auto;
    overflow: hidden;
}
.rooms2.left figure { margin-left: 0; margin-right: auto; }
.rooms2 figure img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.rooms2 figure:hover img { transform: scale(1.04); }

.rooms2 .caption {
    background: var(--bg);
    position: absolute;
    left: 0;
    top: 50%;
    width: 50%;
    padding: 44px 44px 44px 0;
    transform: translateY(-50%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
}
.rooms2.left .caption { left: auto; right: 0; padding: 44px 0 44px 44px; }
.rooms2 .caption.padding-left { padding-left: 44px; }
.rooms2.left .caption.padding-left { padding-right: 44px; }

.rooms2 .caption h3 {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    color: var(--bronze);
    margin-bottom: 2px;
}
.rooms2 .caption h3 span {
    font-size: 15px;
    color: var(--text);
    font-family: 'Argesta Display', sans-serif;
}
.rooms2 .caption h4,
.rooms2 .caption h4 a {
    font-family: 'Gilda Display', serif;
    font-size: 34px;
    color: #fff;
    margin-bottom: 12px;
    transition: color .3s ease;
}
.rooms2 .caption h4 a:hover { color: var(--bronze); }
.rooms2 .caption > p { color: var(--text); margin-bottom: 22px; }

/* Facilidades en 3 columnas */
.room-facilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 16px;
}
.room-facilities ul { margin: 0; padding: 0; list-style: none; }
.room-facilities ul li {
    color: var(--text);
    font-size: 14px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
}
.room-facilities ul li i { margin-right: 10px; color: var(--bronze); font-size: 17px; width: 20px; text-align: center; }

hr.border-2 { border: 0; border-top: 1px solid var(--line); margin: 8px 0 20px; }

.info-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.link-btn {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 3px;
    color: #fff;
    transition: color .3s ease;
}
.link-btn i { margin-left: 6px; font-size: 13px; color: var(--bronze); transition: transform .3s ease; }
.link-btn:hover { color: var(--bronze); }
.link-btn:hover i { transform: translateX(4px); }

/* Botón sólido bronce con relleno (réplica .butn-dark) */
.butn-dark { position: relative; display: inline-block; line-height: 1.2em; }
.butn-dark a {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    background: var(--bronze);
    color: #fff;
    padding: 13px 26px;
    font-size: 15px;
    letter-spacing: 3px;
}
.butn-dark a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 100%;
    width: 0; height: 100%;
    z-index: 1;
    background: #3b3b3b;
    transition: all .3s ease;
}
.butn-dark a span { position: relative; z-index: 2; }
.butn-dark a:hover::after { width: 100%; left: 0; }

/* Flechas */
.rooms2-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(27, 27, 27, .6);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}
.rooms2-arrow:hover { background: var(--bronze); border-color: var(--bronze); }
.rooms2-prev { left: 18px; }
.rooms2-next { right: 18px; }

/* Puntos / numeración */
.rooms2-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}
.rooms2-dots button {
    width: 34px; height: 3px;
    border: 0;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}
.rooms2-dots button.active { background: var(--bronze); }

@media (max-width: 991.98px) {
    .rooms2 figure { width: auto; margin: 0; }
    .rooms2 figure img { height: 360px; }
    .rooms2 .caption,
    .rooms2.left .caption {
        position: relative;
        left: 0; right: 0; top: 0;
        width: auto;
        transform: none;
        padding: 30px 22px;
    }
    .rooms2-arrow { top: 36%; }
}
@media (max-width: 575.98px) {
    .room-facilities { grid-template-columns: 1fr 1fr; }
    .rooms2 .caption h4 { font-size: 28px; }
}

/* ---------- Lista con checks ---------- */
.check-item {
    position: relative;
    padding-left: 2rem;
    color: rgba(255, 255, 255, .7);
}
.check-item::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0; top: 3px;
    color: var(--bronze);
    font-size: .8rem;
}

/* ---------- Paneles / tarjetas con borde fino ---------- */
.panel {
    background: var(--bg-dark);
    border: 1px solid var(--line);
    padding: 40px;
}

/* ---------- Experiencias / Servicios (single-facility) ---------- */
.exp-card,
.service-card {
    background: var(--bg-dark);
    border: 1px solid var(--line);
    padding: 34px 26px;
    transition: border-color .35s ease, background .35s ease;
}
.exp-card:hover,
.service-card:hover { border-color: var(--bronze); }
.exp-card i,
.service-card i {
    color: var(--bronze);
    font-size: 2.1rem;
    margin-bottom: 1rem;
    display: block;
}
.service-card { text-align: center; }
.service-card i { margin-left: auto; margin-right: auto; }
.exp-card h3,
.service-card h3 {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: .4rem;
}
.exp-card p,
.service-card p { color: var(--text); font-size: 14px; }

/* ==========================================================
   GALERÍA DE SERVICIOS (hover revela el servicio)
   ========================================================== */
.services-gallery {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;                 /* línea fina como la referencia */
}
@media (min-width: 1024px) { .services-gallery { grid-template-columns: repeat(3, 1fr); } }

.service-tile {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
}
@media (max-width: 1023.98px) { .service-tile { height: 340px; } }
@media (max-width: 639.98px)  { .service-tile { height: 280px; } }

.service-tile__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .7s ease;
}
.service-tile:hover .service-tile__img { transform: scale(1.08); }

.service-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .35) 100%);
    transition: background .45s ease;
    z-index: 1;
}
.service-tile:hover::after {
    background: linear-gradient(to top, rgba(27, 12, 8, .92) 0%, rgba(0, 0, 0, .6) 100%);
}

.service-tile__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 26px 18px;
}
.service-tile__icon {
    color: var(--bronze);
    font-size: 24px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease;
}
.service-tile h3 {
    font-family: 'Gilda Display', serif;
    font-size: 21px;
    color: #fff;
    line-height: 1.25;
    transition: transform .4s ease;
}
.service-tile p {
    color: rgba(255, 255, 255, .82);
    font-size: 13.5px;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .4s ease, margin .4s ease;
}
.service-tile__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    margin-top: 14px;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--bronze);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s ease, transform .4s ease, color .3s ease;
}
.service-tile__btn i { transition: transform .3s ease; }
.service-tile:hover .service-tile__icon { opacity: 1; transform: none; }
.service-tile:hover p { max-height: 120px; opacity: 1; margin-top: 10px; }
.service-tile:hover .service-tile__btn { opacity: 1; transform: none; }
.service-tile:hover .service-tile__btn i { transform: translateX(4px); }
/* línea bronce que aparece bajo el título en hover */
.service-tile h3::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: var(--bronze);
    margin: 10px auto 0;
    transition: width .45s ease;
}
.service-tile:hover h3::after { width: 40px; }

/* ---------- Comparador ---------- */
.compare-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.compare-row span {
    color: rgba(255, 255, 255, .8);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: 'Argesta Display Condensed', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}
.compare-row b {
    color: var(--bronze);
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    font-size: 18px;
    text-align: right;
}

/* ---------- Galería ---------- */
.gallery-item {
    display: block;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.gallery-item::after {
    content: "\f00e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bronze);
    font-size: 1.6rem;
    background: rgba(0, 0, 0, .55);
    opacity: 0;
    transition: opacity .35s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item { cursor: pointer; }

/* ==========================================================
   LIGHTBOX (propio, sin librerías)
   ========================================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 8, .96);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__stage {
    position: relative;
    max-width: 90vw;
    max-height: 84vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox__img {
    max-width: 90vw;
    max-height: 84vh;
    object-fit: contain;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
    transform: scale(.95);
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}
.lightbox.open .lightbox__img { transform: scale(1); opacity: 1; }

/* Botones (cerrar / navegar) */
.lightbox__btn {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s ease;
}
.lightbox__btn:hover { background: var(--bronze); border-color: var(--bronze); }
.lightbox__close { top: 26px; right: 28px; }
.lightbox__prev  { left: 24px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 24px; top: 50%; transform: translateY(-50%); }

.lightbox__counter {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Argesta Display Condensed', sans-serif;
    letter-spacing: 4px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7);
}
.lightbox__caption {
    position: absolute;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 80vw;
    text-align: center;
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    color: #fff;
}

@media (max-width: 640px) {
    .lightbox__btn { width: 42px; height: 42px; font-size: 16px; }
    .lightbox__close { top: 16px; right: 16px; }
    .lightbox__prev { left: 10px; }
    .lightbox__next { right: 10px; }
}

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); background: var(--bg-dark); }
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    padding: 18px 22px;
    color: #fff;
    font-family: 'Gilda Display', serif;
    font-size: 18px;
    cursor: pointer;
}
.faq-q i { color: var(--bronze); transition: transform .3s ease; flex-shrink: 0; font-size: .9rem; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 22px 18px; color: var(--text); font-size: 14px; }

/* ==========================================================
   BLOG — carrusel estilo .news de la plantilla
   ========================================================== */
.news-carousel { position: relative; overflow: hidden; }
.news-track {
    display: flex;
    transition: transform .7s cubic-bezier(.65, .05, .36, 1);
    will-change: transform;
}
.news-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 12px;
    box-sizing: border-box;
}
@media (max-width: 991.98px) { .news-item { flex-basis: 50%; max-width: 50%; } }
@media (max-width: 639.98px) { .news-item { flex-basis: 100%; max-width: 100%; } }

/* Imagen + fecha */
.news-media {
    position: relative;
    overflow: hidden;
}
.news-media img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.news-item:hover .news-media img { transform: scale(1.05); }
.news-media .date {
    position: absolute;
    top: 20px; left: 20px;
    z-index: 2;
    background: rgba(27, 27, 27, .5);
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
    padding: 7px 12px;
    text-align: center;
    backdrop-filter: blur(2px);
}
.news-media .date span {
    display: block;
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
}
.news-media .date i {
    display: block;
    font-family: 'Argesta Display Condensed', sans-serif;
    font-size: 24px;
    font-style: normal;
    color: #fff;
}

/* Caja de contenido superpuesta */
.news-item .con {
    position: relative;
    margin: -70px 18px 0;
    padding: 24px;
    background: #2b2b2b;
    z-index: 3;
}
.news-item .con .category {
    display: block;
    font-family: 'Argesta Display Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 8px;
}
.news-item .con .category a { color: var(--bronze); }
.news-item .con h5 { margin: 0; }
.news-item .con h5 a {
    color: #fff;
    font-size: 22px;
    font-family: 'Gilda Display', serif;
    font-weight: 400;
    line-height: 1.3;
    transition: color .3s ease;
}
.news-item .con h5 a:hover { color: var(--bronze); }

/* Flechas */
.news-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px; height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    background: rgba(27, 27, 27, .6);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    cursor: pointer;
    transition: all .3s ease;
}
.news-arrow:hover { background: var(--bronze); border-color: var(--bronze); }
.news-prev { left: 6px; }
.news-next { right: 6px; }

/* Puntos */
.news-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.news-dots button {
    width: 34px; height: 3px;
    border: 0;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    padding: 0;
    transition: background .3s ease;
}
.news-dots button.active { background: var(--bronze); }

/* ---------- Contacto ---------- */
.contact-box {
    display: flex;
    gap: 1.1rem;
    background: var(--bg-dark);
    border: 1px solid var(--line);
    padding: 26px 28px;
}
.contact-box > i { color: var(--bronze); font-size: 1.4rem; margin-top: .2rem; }
.contact-box h3 {
    font-family: 'Gilda Display', serif;
    font-size: 20px;
    color: #fff;
    margin-bottom: .2rem;
}
.contact-box p { color: var(--text); font-size: 14px; }

/* ---------- Franja de garantías ---------- */
.trust-strip {
    background: var(--bg-dark);
    border-top: 1px solid rgba(170, 132, 83, .18);
    border-bottom: 1px solid rgba(170, 132, 83, .18);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 26px;
    position: relative;
}
/* divisores verticales finos entre columnas */
.trust-item + .trust-item::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: rgba(255, 255, 255, .1);
}
.trust-item__icon {
    flex-shrink: 0;
    width: 58px; height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(170, 132, 83, .45);
    border-radius: 50%;
    color: var(--bronze);
    font-size: 22px;
    transition: background .35s ease, color .35s ease, transform .35s ease;
}
.trust-item:hover .trust-item__icon {
    background: var(--bronze);
    color: #fff;
    transform: translateY(-3px);
}
.trust-item__text h4 {
    font-family: 'Gilda Display', serif;
    font-size: 19px;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}
.trust-item__text p {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--text);
    margin: 0;
}

@media (max-width: 991.98px) {
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    /* quitar divisor al inicio de cada fila */
    .trust-item:nth-child(2n+1)::before { display: none; }
    /* divisor horizontal en la fila inferior */
    .trust-item:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .08); }
}
@media (max-width: 479.98px) {
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { justify-content: flex-start; padding: 26px; }
    .trust-item::before { display: none !important; }
    .trust-item + .trust-item { border-top: 1px solid rgba(255, 255, 255, .08); }
}

/* ---------- Footer ---------- */
.footer-title {
    font-family: 'Gilda Display', serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 1.2rem;
}
.footer-list { display: flex; flex-direction: column; gap: .65rem; }
.footer-list a {
    color: var(--text);
    font-size: 14px;
    transition: color .25s ease, padding-left .25s ease;
}
.footer-list a:hover { color: var(--bronze); padding-left: .3rem; }

.social-ico {
    width: 42px; height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    color: #fff;
    transition: all .3s ease;
}
.social-ico:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; }

/* ---------- WhatsApp flotante ---------- */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 60;
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 8px 22px rgba(37, 211, 102, .4);
    transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Animación de aparición ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
