/* =====================================================================
   SL GALERIA - Tema PREMIUM (preview de nuevo diseno)
   Estetica oscura de lujo con acentos dorados. Prefijo .pro-
   Solo afecta a las paginas de preview (clases con prefijo pro-).
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --pro-bg:        #0c0c11;
    --pro-bg-2:      #11111a;
    --pro-surface:   #17171f;
    --pro-surface-2: #1e1e29;
    --pro-border:    #2b2b38;
    --pro-gold:      #d8b56b;
    --pro-gold-2:    #c79f4f;
    --pro-rose:      #e0697a;
    --pro-text:      #ece9e3;
    --pro-muted:     #9b958c;
    --pro-green:     #25d366;
}

/* ---------- Shell / layout premium ---------- */
.pro-shell {
    background: linear-gradient(180deg, var(--pro-bg), var(--pro-bg-2));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;      /* evita el scroll horizontal en móvil */
}

.pro-nav {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(12,12,17,.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pro-border);
}

.pro-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.pro-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pro-brand i { color: var(--pro-gold); }
/* Última palabra de la marca (ej. "VIP") destacada en dorado. */
.pro-brand-ac { color: var(--pro-gold); }

.pro-nav-links { display: flex; gap: 1.5rem; }

.pro-nav-links a {
    color: var(--pro-muted);
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: color .15s ease;
}

.pro-nav-links a:hover { color: var(--pro-gold); }

.pro-footer {
    margin-top: auto;
    border-top: 1px solid var(--pro-border);
    color: #6f6a62;
    text-align: center;
    padding: 1.6rem 1rem;
    font-size: .82rem;
    font-weight: 300;
}

/* ---------- Contenedor general de la pagina premium ---------- */
.pro-page {
    background:
        radial-gradient(1200px 600px at 50% -200px, rgba(216,181,107,.10), transparent 60%),
        linear-gradient(180deg, var(--pro-bg), var(--pro-bg-2));
    color: var(--pro-text);
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    padding-bottom: 4rem;
}

.pro-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- Hero ---------- */
.pro-hero {
    text-align: center;
    padding: 4rem 1rem 2.5rem;
    position: relative;
}

.pro-hero-eyebrow {
    display: inline-block;
    letter-spacing: .35em;
    text-transform: uppercase;
    font-size: .72rem;
    color: var(--pro-gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.pro-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0;
    line-height: 1.05;
    background: linear-gradient(180deg, #fff 30%, var(--pro-gold) 140%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pro-hero p {
    color: var(--pro-muted);
    max-width: 560px;
    margin: 1rem auto 0;
    font-weight: 300;
    font-size: 1.02rem;
}

.pro-hero-divider {
    width: 70px;
    height: 2px;
    margin: 1.6rem auto 0;
    background: linear-gradient(90deg, transparent, var(--pro-gold), transparent);
}

/* ---------- Barra de busqueda ---------- */
.pro-searchbar {
    display: flex;
    gap: .6rem;
    max-width: 640px;
    margin: 2rem auto 0;
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 999px;
    padding: .4rem .4rem .4rem 1.25rem;
    align-items: center;
}

.pro-searchbar i { color: var(--pro-gold); }

.pro-searchbar input {
    flex: 1;
    min-width: 0;            /* permite encoger dentro del flex (evita desborde en móvil) */
    background: transparent;
    border: none;
    outline: none;
    color: var(--pro-text);
    font-size: .98rem;
}

.pro-searchbar input::placeholder { color: #6f6a62; }

.pro-search-btn {
    border: none;
    border-radius: 999px;
    padding: .6rem 1.5rem;
    font-weight: 600;
    color: #1a1407;
    background: linear-gradient(180deg, var(--pro-gold), var(--pro-gold-2));
    cursor: pointer;
    transition: filter .15s ease, transform .1s ease;
}

.pro-search-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ---------- Ajustes móviles (nav + búsqueda) ---------- */
@media (max-width: 640px) {
    .pro-nav-inner { flex-wrap: wrap; height: auto; gap: .35rem 1rem; padding: .55rem 0; }
    .pro-nav-links { flex-wrap: wrap; gap: .5rem 1rem; row-gap: .35rem; font-size: .85rem; }
    .pro-brand { font-size: 1.15rem; }
    .pro-hero { padding: 2.4rem .5rem 1.4rem; }
    .pro-container { padding: 0 .9rem; }
    .pro-searchbar { flex-wrap: wrap; border-radius: 1.1rem; padding: .55rem .7rem; }
    .pro-searchbar input { flex: 1 1 auto; padding: .35rem .25rem; }
    .pro-search-btn { flex: 1 0 100%; margin-top: .2rem; }
}

/* ---------- Filtros (chips de categoria) ---------- */
.pro-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    justify-content: center;
    margin: 2rem 0 2.5rem;
}

.pro-chip {
    border: 1px solid var(--pro-border);
    background: var(--pro-surface);
    color: var(--pro-muted);
    border-radius: 999px;
    padding: .42rem 1.05rem;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s ease;
    letter-spacing: .02em;
}

.pro-chip:hover { color: var(--pro-text); border-color: var(--pro-gold); }

.pro-chip.active {
    background: linear-gradient(180deg, var(--pro-gold), var(--pro-gold-2));
    color: #1a1407;
    border-color: transparent;
    font-weight: 600;
}

/* ---------- Grilla de tarjetas ---------- */
.pro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
    gap: 1.4rem;
}

/* Título por categoría: cada categoría se muestra en su propia fila. */
.pro-catrow {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .02em;
    text-transform: capitalize;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}
.pro-catrow span { white-space: nowrap; }
.pro-catrow::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--pro-border), transparent);
}
.pro-catrow-mini { font-size: 1.05rem; color: var(--pro-gold); }

/* ===================================================================
   Historias (stories): tira de círculos + visor modal tipo TikTok
   =================================================================== */
.pro-historias {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: .4rem .2rem 1.1rem;
    scrollbar-width: thin;
}
.pro-historia {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    width: 78px;
    flex: 0 0 auto;
    padding: 0;
}
.pro-historia-ring {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, var(--pro-gold), var(--pro-rose));
    display: inline-flex;
    transition: transform .15s ease;
}
.pro-historia:hover .pro-historia-ring { transform: scale(1.06); }
.pro-historia-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pro-bg);
}
.pro-historia-nombre {
    font-size: .72rem;
    color: var(--pro-muted);
    max-width: 78px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pro-story-backdrop { position: fixed; inset: 0; z-index: 1070; background: rgba(0,0,0,.85); }
.pro-story-wrap { position: fixed; inset: 0; z-index: 1071; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.pro-story {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: min(88vh, 760px);
    background: #000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.6);
}
.pro-story-bars { position: absolute; top: .5rem; left: .6rem; right: .6rem; z-index: 4; display: flex; gap: 4px; }
.pro-story-bar { flex: 1; height: 3px; border-radius: 3px; background: rgba(255,255,255,.3); overflow: hidden; }
.pro-story-bar span { display: block; height: 100%; background: #fff; }
.pro-story-head { position: absolute; top: 1.1rem; left: .6rem; right: .6rem; z-index: 4; display: flex; align-items: center; gap: .5rem; }
.pro-story-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,.6); }
.pro-story-nombre { color: #fff; font-weight: 600; font-size: .9rem; text-shadow: 0 1px 3px rgba(0,0,0,.6); flex: 1; }
.pro-story-x { background: rgba(0,0,0,.4); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; }
.pro-story-media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: #000; }
.pro-story-media img, .pro-story-media video { width: 100%; height: 100%; object-fit: contain; }
.pro-story-zone { position: absolute; top: 0; bottom: 0; z-index: 2; cursor: pointer; }
.pro-story-prev { left: 0; width: 40%; }
.pro-story-next { right: 0; width: 60%; }
.pro-story-ver {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 4;
    background: rgba(255,255,255,.92); color: #111; text-decoration: none;
    font-weight: 600; font-size: .85rem; padding: .5rem 1.1rem; border-radius: 999px;
    display: inline-flex; gap: .4rem; align-items: center;
}
@media (max-width: 640px) {
    .pro-story-wrap { padding: 0; }
    .pro-story { max-width: none; width: 100%; height: 100%; border-radius: 0; }
}

/* Botón "historia" activo en la galería del panel */
.pro-galeria-acciones .hist-on {
    background: linear-gradient(45deg, var(--pro-gold), var(--pro-rose)) !important;
    color: #fff !important;
}

/* Grilla reducida (Masajistas/Gigolos/Trans): tarjetas ~mitad de tamaño */
.pro-grid-mini {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .9rem;
}
.pro-grid-mini .pro-name { font-size: 1rem; }
.pro-grid-mini .pro-meta { font-size: .78rem; }
.pro-grid-mini .pro-price { font-size: .85rem; }
.pro-grid-mini .pro-card-bottom { padding: .65rem .7rem .75rem; }
.pro-grid-mini .pro-cat { font-size: .58rem; top: .5rem; left: .5rem; padding: .18rem .5rem; }
/* En tarjetas reducidas, el icono de video va DEBAJO del corazón (columna).
   column-reverse deja el favorito arriba (va segundo en el markup) y el
   badge de video abajo (va primero en el markup). */
.pro-grid-mini .pro-card-actions {
    top: .45rem;
    right: .45rem;
    gap: .3rem;
    flex-direction: column-reverse;
    align-items: flex-end;
}
.pro-grid-mini .pro-fav { height: 28px; padding: 0 .5rem; font-size: .8rem; }
.pro-grid-mini .pro-video-badge { width: 28px; height: 28px; }
.pro-grid-mini .pro-card-cta { font-size: .68rem; padding: .35rem .8rem; }

/* En móvil: 2 tarjetas por fila en TODAS las categorías (normal y reducida) */
@media (max-width: 640px) {
    .pro-grid,
    .pro-grid-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: .7rem;
    }
    .pro-grid .pro-name { font-size: 1.05rem; }
    .pro-grid .pro-price { font-size: .9rem; }
    .pro-grid .pro-card-bottom { padding: .7rem .75rem .8rem; }
}

.pro-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    aspect-ratio: 3 / 4;
    box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.35);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216,181,107,.55);
    box-shadow: 0 1.2rem 2.4rem rgba(0,0,0,.55);
}

.pro-card-img { position: absolute; inset: 0; }

.pro-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

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

.pro-card-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,14,0) 40%, rgba(10,10,14,.55) 70%, rgba(8,8,11,.95) 100%);
}

.pro-cat {
    position: absolute;
    top: .8rem;
    left: .8rem;
    background: rgba(12,12,17,.7);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(216,181,107,.5);
    color: var(--pro-gold);
    font-size: .66rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .28rem .6rem;
    border-radius: 999px;
}

.pro-card-actions {
    position: absolute;
    top: .65rem;
    right: .65rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.pro-fav {
    height: 34px;
    padding: 0 .65rem;
    border-radius: 999px;
    border: none;
    background: rgba(12,12,17,.6);
    color: #fff;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .15s ease, background .15s ease;
}

.pro-fav:hover { color: var(--pro-rose); background: rgba(12,12,17,.85); }
.pro-fav-count { line-height: 1; }
.pro-fav.fav-on { background: var(--pro-rose); color: #fff; }
.pro-fav.fav-on:hover { background: var(--pro-rose); color: #fff; filter: brightness(1.1); }

.pro-video-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(216,181,107,.92);
    color: #1a1407;
    backdrop-filter: blur(4px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.35);
}

.pro-card-bottom {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1rem 1rem 1.1rem;
}

.pro-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.32rem;
    font-weight: 600;
    margin: 0;
    color: #fff;
    line-height: 1.1;
}

.pro-meta {
    display: flex;
    align-items: center;
    gap: .35rem;
    color: #cfcabf;
    font-size: .82rem;
    margin-top: .25rem;
    font-weight: 300;
}

.pro-meta i { color: var(--pro-gold); font-size: .8rem; }

.pro-price {
    display: inline-block;
    margin-top: .6rem;
    color: var(--pro-gold);
    font-weight: 600;
    font-size: .92rem;
    border-top: 1px solid rgba(216,181,107,.25);
    padding-top: .55rem;
}

.pro-card-cta {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0;
    background: linear-gradient(180deg, var(--pro-gold), var(--pro-gold-2));
    color: #1a1407;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    white-space: nowrap;
}

.pro-card:hover .pro-card-cta { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Zona clicable de la tarjeta. Escritorio: overlay que abre el modal.
   Móvil (<=768px): enlace que abre la ficha en pestaña nueva.
   Ambos van bajo .pro-card-actions (z-index:2) para no tapar el corazón. */
.pro-card-modal {
    position: absolute;
    inset: 0;
    z-index: 1;
    cursor: pointer;
}
.pro-card-open { display: none; }

@media (max-width: 768px) {
    .pro-card-modal { display: none; }
    .pro-card-open {
        display: block;
        position: absolute;
        inset: 0;
        z-index: 1;
    }
}

.pro-empty {
    text-align: center;
    color: var(--pro-muted);
    padding: 4rem 1rem;
    grid-column: 1 / -1;
}

/* =====================================================================
   MODAL premium
   ===================================================================== */
.pro-modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(6,6,9,.78);
    backdrop-filter: blur(5px);
    z-index: 1060;
    animation: proFade .2s ease;
}

.pro-modal-wrap {
    position: fixed; inset: 0;
    z-index: 1065;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 2.5rem 1rem;
    overflow-y: auto;
}

.pro-modal {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(180deg, var(--pro-surface), var(--pro-bg-2));
    border: 1px solid var(--pro-border);
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 2rem 5rem rgba(0,0,0,.65);
    animation: proPop .22s cubic-bezier(.2,.8,.3,1);
}

.pro-modal-x {
    position: absolute;
    top: 1rem; right: 1rem;
    z-index: 3;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pro-border);
    background: rgba(12,12,17,.6);
    color: var(--pro-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease;
}

.pro-modal-x:hover { color: var(--pro-gold); border-color: var(--pro-gold); }

.pro-modal-loading { padding: 4rem; text-align: center; color: var(--pro-muted); }

.pro-modal-body { padding: 1.6rem; }

.pro-modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.8rem;
}

@media (max-width: 760px) {
    .pro-modal-grid { grid-template-columns: 1fr; }
}

/* ===== Ficha (contenido reutilizable modal / página) ===== */
.pro-ficha-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.8rem;
}

/* En el modal, deja espacio para el botón cerrar (X). */
.pro-modal .pro-ficha-name-row { padding-right: 3.25rem; }

@media (max-width: 860px) {
    .pro-ficha-grid { grid-template-columns: 1fr; }
}

/* ===== Página de ficha (móvil / pestaña nueva) ===== */
.pro-ficha-page { padding-top: 1.2rem; padding-bottom: 3rem; }
.pro-ficha-topbar { margin-bottom: 1rem; }
.pro-ficha-volver {
    color: var(--pro-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.pro-ficha-volver:hover { color: var(--pro-gold-2); }
.pro-ficha-card {
    background: linear-gradient(180deg, var(--pro-surface), var(--pro-bg-2));
    border: 1px solid var(--pro-border);
    border-radius: 1rem;
    padding: 1.6rem;
}
@media (max-width: 860px) {
    .pro-ficha-card { padding: 1rem; }
}

/* Imagen principal: ocupa el 100% del ancho y se muestra completa
   (alto automático según su proporción, sin recortes ni barras). */
.pro-gallery-main {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: .8rem;
    border: 1px solid var(--pro-border);
}

/* Contenedor de la imagen/video con flechas de navegación */
.pro-gallery-wrap { position: relative; }
.pro-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(12,12,17,.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 1.2rem;
    backdrop-filter: blur(4px);
    transition: background .15s ease, color .15s ease;
}
.pro-gallery-nav:hover { background: rgba(12,12,17,.85); color: var(--pro-gold); }
.pro-gallery-nav.prev { left: .5rem; }
.pro-gallery-nav.next { right: .5rem; }
@media (max-width: 640px) {
    .pro-gallery-nav { width: 38px; height: 38px; font-size: 1.05rem; }
}

/* El video sí conserva un recuadro fijo para no colapsar. */
video.pro-gallery-main {
    aspect-ratio: 3 / 4;
    height: auto;
    background: #000;
    object-fit: contain;
}

.pro-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
    margin-top: .7rem;
}

.pro-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: .6rem;
    border: 1px solid var(--pro-border);
    cursor: pointer;
    opacity: .65;
    transition: opacity .12s ease, border-color .12s ease;
}

.pro-thumb:hover { opacity: 1; }
.pro-thumb.active { opacity: 1; border-color: var(--pro-gold); }

.pro-gallery-video { background: #000; }

/* Miniatura de video con overlay de play */
.pro-thumb-video {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: .6rem;
    border: 1px solid var(--pro-border);
    overflow: hidden;
    cursor: pointer;
    opacity: .8;
    transition: opacity .12s ease, border-color .12s ease;
}

.pro-thumb-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.pro-thumb-video:hover { opacity: 1; }
.pro-thumb-video.active { opacity: 1; border-color: var(--pro-gold); }

.pro-thumb-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    color: #fff;
    font-size: 1.4rem;
    text-shadow: 0 1px 3px rgba(0,0,0,.6);
}

.pro-modal-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.pro-modal-cat {
    display: inline-block;
    margin-top: .4rem;
    color: var(--pro-gold);
    border: 1px solid rgba(216,181,107,.5);
    border-radius: 999px;
    font-size: .68rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem .7rem;
    font-weight: 600;
}

.pro-modal-desc {
    color: var(--pro-muted);
    font-weight: 300;
    line-height: 1.55;
    margin: 1rem 0 1.2rem;
}

.pro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: 1.3rem;
}

@media (max-width: 560px) {
    .pro-stats { grid-template-columns: repeat(2, 1fr); }
}

.pro-stat {
    background: var(--pro-surface-2);
    border: 1px solid var(--pro-border);
    border-radius: .6rem;
    padding: .5rem .65rem;
}

.pro-stat-label {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .64rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--pro-muted);
}

.pro-stat-label i { color: var(--pro-gold); }

.pro-stat-value { font-weight: 600; color: var(--pro-text); font-size: .98rem; margin-top: .1rem; }

/* Tarifas */
.pro-tarifas {
    border: 1px solid var(--pro-border);
    border-radius: .8rem;
    overflow: hidden;
    margin-bottom: 1.3rem;
}

.pro-tarifas-head {
    background: linear-gradient(90deg, rgba(216,181,107,.16), rgba(216,181,107,.04));
    border-bottom: 1px solid var(--pro-border);
    color: var(--pro-gold);
    font-size: .76rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: .6rem .9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pro-tarifa {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .65rem .9rem;
    border-bottom: 1px solid rgba(43,43,56,.6);
}

.pro-tarifa:last-child { border-bottom: none; }

.pro-tarifa-dur { display: flex; align-items: center; gap: .4rem; color: var(--pro-text); font-weight: 300; flex: 1; }
.pro-tarifa-dur i { color: var(--pro-gold); }
.pro-tarifa-precio { font-weight: 700; color: var(--pro-gold); margin-left: auto; font-size: 1.05rem; }

/* Precio en promocion: original tachado + valor promo */
.pro-precio-old {
    color: var(--pro-muted);
    text-decoration: line-through;
    font-weight: 500;
    font-size: .9rem;
    margin-right: .5rem;
}

.pro-precio-promo {
    color: #ff6a3d;
    font-weight: 800;
}

.pro-precio-promo .bi-fire { color: #ff6a3d; }

/* Fuego en la tarjeta del catalogo */
.pro-price.promo { color: #ff7a4d; }
.pro-price .bi-fire { color: #ff6a3d; margin-left: .3rem; }

.pro-wa-mini {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--pro-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .1s ease, box-shadow .12s ease;
}

.pro-wa-mini:hover { color: #fff; transform: scale(1.1); box-shadow: 0 .3rem .7rem rgba(37,211,102,.45); }

.pro-wa-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    margin: .9rem;
    margin-top: 0;
    padding: .7rem;
    background: var(--pro-green);
    color: #fff;
    font-weight: 600;
    border-radius: .6rem;
    text-decoration: none;
    transition: filter .12s ease, box-shadow .12s ease;
}

.pro-wa-full:hover { color: #fff; filter: brightness(1.05); box-shadow: 0 .4rem 1rem rgba(37,211,102,.4); }

/* Secciones tag */
.pro-section-title {
    display: flex;
    align-items: center;
    gap: .45rem;
    color: var(--pro-gold);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin: 1.2rem 0 .65rem;
    padding-bottom: .35rem;
    border-bottom: 1px solid var(--pro-border);
}

.pro-tags { display: flex; flex-wrap: wrap; gap: .45rem; }

.pro-tag {
    background: var(--pro-surface-2);
    border: 1px solid var(--pro-border);
    color: #d8d3ca;
    border-radius: 999px;
    padding: .35rem .8rem;
    font-size: .8rem;
    font-weight: 300;
}

.pro-tag.serv { border-color: rgba(216,181,107,.35); color: var(--pro-gold); }

/* ===== Like (corazon con contador) ===== */
.pro-like {
    flex-shrink: 0;
    border: 1px solid var(--pro-border);
    background: var(--pro-surface-2);
    color: var(--pro-muted);
    border-radius: 999px;
    padding: .35rem .8rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.pro-like:hover { color: var(--pro-rose); border-color: var(--pro-rose); }
.pro-like.liked { color: #fff; background: var(--pro-rose); border-color: var(--pro-rose); }

/* ===== Disponibilidad ===== */
.pro-dispo {
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin-bottom: 1.3rem;
}

.pro-dispo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: var(--pro-surface-2);
    border: 1px solid var(--pro-border);
    border-radius: .5rem;
    padding: .45rem .8rem;
}

.pro-dispo-dia {
    font-weight: 600;
    color: var(--pro-text);
    min-width: 90px;
}

.pro-dispo-horas {
    color: var(--pro-gold);
    font-size: .9rem;
    text-align: right;
}

/* ===== Nav: usuario / logout ===== */
.pro-nav-user { color: var(--pro-gold); font-size: .9rem; }
.pro-nav-logout {
    background: none; border: 1px solid var(--pro-border); color: var(--pro-muted);
    border-radius: 999px; padding: .25rem .8rem; font-size: .85rem; cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
}
.pro-nav-logout:hover { color: var(--pro-rose); border-color: var(--pro-rose); }

/* ===== Auth (login / registro) ===== */
.pro-auth { display: flex; justify-content: center; padding: 3rem 1rem; }
.pro-auth-card {
    width: 100%; max-width: 420px;
    background: var(--pro-surface); border: 1px solid var(--pro-border);
    border-radius: 1rem; padding: 2rem;
    box-shadow: 0 1rem 3rem rgba(0,0,0,.4);
}
.pro-auth-title { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.8rem; margin: 0; }
.pro-auth-sub { color: var(--pro-muted); font-size: .9rem; margin: .25rem 0 1.25rem; }
.pro-auth-label { display: block; color: var(--pro-muted); font-size: .8rem; margin: .8rem 0 .3rem; }
.pro-auth-input {
    width: 100%; background: var(--pro-surface-2); border: 1px solid var(--pro-border);
    border-radius: .55rem; color: var(--pro-text); padding: .6rem .8rem; outline: none;
}
.pro-auth-input:focus { border-color: var(--pro-gold); }
.pro-auth-btn {
    width: 100%; margin-top: 1.2rem; border: none; cursor: pointer;
    background: linear-gradient(180deg, var(--pro-gold), var(--pro-gold-2));
    color: #1a1407; font-weight: 600; border-radius: .6rem; padding: .7rem;
}
.pro-auth-btn:hover { filter: brightness(1.06); }
.pro-auth-error {
    background: rgba(224,105,122,.12); border: 1px solid rgba(224,105,122,.4);
    color: #ffb3bd; border-radius: .55rem; padding: .6rem .8rem; margin-bottom: 1rem; font-size: .9rem;
}
.pro-auth-foot { text-align: center; color: var(--pro-muted); font-size: .85rem; margin: 1rem 0 0; }
.pro-auth-foot a { color: var(--pro-gold); text-decoration: none; }

/* ===== Pestañas del panel ===== */
.pro-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    border-bottom: 1px solid var(--pro-border);
    margin: 1.5rem 0 1.25rem;
}
.pro-tab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--pro-muted);
    font-weight: 600;
    font-size: .95rem;
    padding: .6rem .9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: color .15s ease, border-color .15s ease;
}
.pro-tab:hover { color: var(--pro-text); }
.pro-tab.active { color: var(--pro-gold); border-bottom-color: var(--pro-gold); }
.pro-tab-badge {
    background: var(--pro-gold);
    color: #1a1407;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    padding: .05rem .5rem;
}

/* ===== Panel: cajas de edicion ===== */
.pro-edit-box {
    background: var(--pro-surface-2);
    border: 1px solid var(--pro-border);
    border-radius: .8rem;
    padding: 1rem;
    margin-bottom: 1.3rem;
}

.pro-tarifa-edit {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1.4fr 1fr auto;
    gap: .5rem;
    align-items: center;
    margin-bottom: .5rem;
}
.pro-tarifa-edit-head {
    color: var(--pro-muted);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .2rem;
}
.pro-tarifa-edit .pro-auth-input { padding: .45rem .6rem; }

@media (max-width: 575px) {
    /* Fila 1: Horas | En promo · Fila 2: Precio | Precio promo · Fila 3: Eliminar (ancho completo) */
    .pro-tarifa-edit { grid-template-columns: 1fr 1fr; row-gap: .45rem; align-items: end; }
    .pro-tarifa-edit > :nth-child(1) { order: 1; }                     /* Horas */
    .pro-tarifa-edit > :nth-child(4) { order: 2; justify-self: start; align-self: center; }  /* En promo */
    .pro-tarifa-edit > :nth-child(2) { order: 3; }                     /* Precio */
    .pro-tarifa-edit > :nth-child(3) { order: 4; }                     /* Precio promo */
    .pro-tarifa-edit > :nth-child(5) { order: 5; grid-column: 1 / -1; } /* Eliminar */
}

.pro-dispo-edit {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
    gap: .5rem;
    align-items: center;
    margin-bottom: .5rem;
}
.pro-dispo-edit-head {
    color: var(--pro-muted);
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: .2rem;
}
.pro-dispo-edit .pro-auth-input { padding: .45rem .6rem; }

@media (max-width: 575px) {
    /* Fila 1: Día | Habilitado · Fila 2: Desde | Hasta · Fila 3: Eliminar (ancho completo) */
    .pro-dispo-edit { grid-template-columns: 1fr 1fr; row-gap: .45rem; align-items: center; }
    .pro-dispo-edit > :nth-child(1) { order: 1; }                     /* Día */
    .pro-dispo-edit > :nth-child(4) { order: 2; justify-self: start; }  /* Habilitado (Full) */
    .pro-dispo-edit > :nth-child(2) { order: 3; }                     /* Desde */
    .pro-dispo-edit > :nth-child(3) { order: 4; }                     /* Hasta */
    .pro-dispo-edit > :nth-child(5) { order: 5; grid-column: 1 / -1; } /* Eliminar */
}

/* Etiqueta del toggle (Full / En promo): visible junto al check en escritorio y móvil */
.pro-toggle-cell { white-space: nowrap; }
.pro-toggle-txt { color: var(--pro-muted); font-size: .85rem; margin-left: .4rem; vertical-align: middle; }
@media (max-width: 575px) {
    .pro-toggle-cell { text-align: left !important; }
}

/* Tarjeta de dato que ocupa todo el ancho (p. ej. correo) — SOLO en móvil.
   En escritorio se comporta como una tarjeta normal (sin cambios). */
@media (max-width: 640px) {
    .pro-stat-full { grid-column: 1 / -1; }
    .pro-stat-hide-mobile { display: none; }
}

/* ===== Panel: galeria de fotos / videos ===== */
.pro-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .8rem;
}
.pro-galeria-item {
    position: relative;
    border-radius: .7rem;
    overflow: hidden;
    border: 1px solid var(--pro-border);
    background: #000;
    aspect-ratio: 3 / 4;
}
.pro-galeria-item img,
.pro-galeria-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pro-galeria-badge {
    position: absolute;
    top: .4rem;
    left: .4rem;
    background: var(--pro-gold);
    color: #1a1407;
    font-size: .68rem;
    font-weight: 700;
    padding: .1rem .5rem;
    border-radius: 999px;
}
.pro-galeria-estado {
    position: absolute;
    bottom: .4rem;
    left: .4rem;
    font-size: .66rem;
    font-weight: 700;
    padding: .1rem .5rem;
    border-radius: 999px;
}
.pro-galeria-estado.ok { background: rgba(37,211,102,.85); color: #fff; }
.pro-galeria-estado.pend { background: rgba(216,181,107,.9); color: #1a1407; }
.pro-galeria-acciones {
    position: absolute;
    top: .4rem;
    right: .4rem;
    display: flex;
    gap: .3rem;
}
.pro-galeria-acciones button {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: none;
    background: rgba(12,12,17,.7);
    color: #fff;
    cursor: pointer;
}
.pro-galeria-acciones button:hover { background: var(--pro-rose); }

/* Grid de checkboxes (atributos/servicios) */
.pro-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: .4rem .8rem;
    margin-bottom: .8rem;
}
.pro-check {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--pro-text);
    font-size: .9rem;
    cursor: pointer;
}

/* ===== Panel: tabla simple (historial de plan) ===== */
.pro-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--pro-text);
    font-size: .88rem;
}
.pro-table th {
    text-align: left;
    color: var(--pro-muted);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: .45rem .6rem;
    border-bottom: 1px solid var(--pro-border);
    white-space: nowrap;
}
.pro-table td {
    padding: .5rem .6rem;
    border-bottom: 1px solid rgba(43,43,56,.6);
    white-space: nowrap;
}

/* ===== Panel: planes disponibles ===== */
.pro-planes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: .8rem;
    margin-bottom: 1.3rem;
}
.pro-plan-card {
    background: var(--pro-surface-2);
    border: 1px solid var(--pro-border);
    border-radius: .8rem;
    padding: 1rem;
}
.pro-plan-nombre {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--pro-gold);
    font-weight: 600;
}
.pro-plan-precio { font-size: 1.3rem; font-weight: 700; color: var(--pro-text); margin: .2rem 0; }
.pro-plan-precio span { font-size: .8rem; color: var(--pro-muted); font-weight: 400; }
.pro-plan-desc { color: var(--pro-muted); font-size: .82rem; }
.pro-plan-ciclos { color: var(--pro-gold); font-size: .78rem; margin-top: .5rem; }

/* ===== Comentarios en el modal ===== */
.pro-comentario {
    background: var(--pro-surface-2); border: 1px solid var(--pro-border);
    border-radius: .6rem; padding: .6rem .8rem; margin-bottom: .5rem;
    color: var(--pro-text);
}
.pro-comentario-texto { color: var(--pro-text); }
.pro-comentario-head { color: var(--pro-gold); font-weight: 600; font-size: .85rem; margin-bottom: .2rem; }
.pro-comentario-head span { color: var(--pro-muted); font-weight: 400; }
.pro-comentario-form { margin-top: .6rem; }

@keyframes proFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes proPop { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }

/* =====================================================================
   Ficha a PANTALLA COMPLETA (catálogos 2 y 3). Clases nuevas, no afectan
   el modal ni la ficha actuales.
   ===================================================================== */
.pro-full-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: linear-gradient(180deg, var(--pro-bg), var(--pro-bg-2));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.pro-full-topbar {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .9rem 1.5rem;
    background: rgba(12,12,17,.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--pro-border);
}
.pro-full-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--pro-text);
}
.pro-full-title i { color: var(--pro-gold); }
.pro-full-close {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pro-border);
    background: transparent;
    color: var(--pro-text);
    cursor: pointer;
    flex: 0 0 auto;
    transition: color .15s ease, border-color .15s ease;
}
.pro-full-close:hover { color: var(--pro-gold); border-color: var(--pro-gold); }
.pro-full-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

/* ---- Template 2: mosaico arriba + tarjeta fija a la derecha ---- */
.pro-full2-mosaic { margin-bottom: 1.5rem; }
.pro-full2-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 1.75rem;
    align-items: start;
}
.pro-full2-aside {
    position: sticky;
    top: 5.5rem;
}
@media (max-width: 900px) {
    .pro-full2-grid { grid-template-columns: 1fr; }
    .pro-full2-aside { position: static; }
}

/* ---- Template 3: tres columnas ---- */
.pro-full3-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr) minmax(0, .95fr);
    gap: 1.75rem;
    align-items: start;
}
@media (max-width: 1000px) {
    .pro-full3-grid { grid-template-columns: 1fr; }
}

/* =====================================================================
   Catálogo 2 (premium2) — layout de detalle reestructurado
   ===================================================================== */
.pro-full2-top {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
    margin-bottom: 1.5rem;
}
.pro-full2-mainimg {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--pro-border);
    cursor: pointer;
}
.pro-full2-mainimg img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.pro-full2-zoom {
    position: absolute;
    right: .6rem; bottom: .6rem;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(12,12,17,.7);
    color: var(--pro-gold);
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
}
.pro-full2-2col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 1.25rem;
}
.pro-full2-cmt { margin-top: 1.5rem; }
.pro-cmt-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    color: var(--pro-text);
    border-radius: 999px;
    padding: .6rem 1.3rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease;
}
.pro-cmt-btn:hover { border-color: var(--pro-gold); color: var(--pro-gold); }

/* Grilla de galería: 5 por fila */
.pro-full2-media {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .6rem;
    margin-top: .7rem;
}
.pro-full2-mediaitem {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--pro-border);
    cursor: pointer;
    transition: border-color .12s ease, transform .12s ease;
}
.pro-full2-mediaitem:hover { border-color: var(--pro-gold); transform: translateY(-2px); }
.pro-full2-mediaitem img,
.pro-full2-mediaitem video { width: 100%; height: 100%; object-fit: cover; display: block; }
.pro-full2-mediaitem .pro-thumb-play {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.35); color: #fff; font-size: 1.6rem;
}

/* Lightbox multimedia */
.pro-lightbox {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,.92);
    display: flex; align-items: center; justify-content: center;
    padding: 2.5rem;
}
.pro-lb-media { max-width: 90vw; max-height: 88vh; display: flex; }
.pro-lb-media img,
.pro-lb-media video { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
.pro-lb-close {
    position: absolute; top: 1rem; right: 1.2rem;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff;
    border: 1px solid rgba(255,255,255,.25); cursor: pointer; font-size: 1.1rem;
}
.pro-lb-close:hover { color: var(--pro-gold); border-color: var(--pro-gold); }
.pro-lb-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.08); color: #fff;
    border: 1px solid rgba(255,255,255,.25); cursor: pointer; font-size: 1.4rem;
    display: flex; align-items: center; justify-content: center;
}
.pro-lb-nav:hover { color: var(--pro-gold); border-color: var(--pro-gold); }
.pro-lb-nav.prev { left: 1.2rem; }
.pro-lb-nav.next { right: 1.2rem; }

/* Modal de comentarios */
.pro-cmodal {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,.6);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
}
.pro-cmodal-panel {
    width: 100%; max-width: 560px; max-height: 82vh;
    display: flex; flex-direction: column;
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 14px;
    overflow: hidden;
}
.pro-cmodal-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--pro-border);
    font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--pro-text);
}
.pro-cmodal-head i { color: var(--pro-gold); }
.pro-cmodal-body { padding: 1.1rem 1.25rem; overflow-y: auto; }

@media (max-width: 900px) {
    .pro-full2-top { grid-template-columns: 1fr; }
    .pro-full2-mainimg { max-width: 280px; margin: 0 auto; }
    .pro-full2-2col { grid-template-columns: 1fr; }
    .pro-full2-media { grid-template-columns: repeat(3, 1fr); }
}

/* Enlace de tarjeta que abre el detalle en pestaña nueva (catálogo 2) */
.pro-card-open2 {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

/* Catálogo 2: columna izquierda (foto + comentarios) y tarifas a lo ancho */
.pro-full2-left { display: flex; flex-direction: column; gap: 1rem; }
.pro-cmt-btn-full { width: 100%; justify-content: center; }
.pro-full2-tar { margin-top: 1.25rem; }

/* Catálogo 2: fila disponibilidad/metro (izq) + tarifas más ancha (der) */
.pro-full2-cols-b {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
    gap: 1.5rem;
    margin-top: 1.25rem;
    align-items: start;
}
.pro-full2-colstack > .pro-tarifas:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
    .pro-full2-cols-b { grid-template-columns: 1fr; }
}

/* Catálogo 2: alturas parejas + filas planas en dispo/metro */
/* valor a la derecha, mismo estilo que las otras tarjetas (sin celda) */
.pro-tarifa-val { margin-left: auto; color: var(--pro-text); font-weight: 500; }

/* La imagen + comentarios se estira a la altura de los datos del costado */
.pro-full2-top { align-items: stretch; }
.pro-full2-mainimg { flex: 1 1 auto; min-height: 340px; }
.pro-full2-mainimg img { width: 100%; height: 100%; aspect-ratio: auto; object-fit: cover; }

/* Tarifas se estira a la altura de disponibilidad + metro cercano */
.pro-full2-cols-b { align-items: stretch; }
.pro-full2-tarcol { display: flex; }
.pro-full2-tarcol > div { flex: 1 1 auto; display: flex; flex-direction: column; }
.pro-full2-tarcol .pro-tarifas { flex: 1 1 auto; margin-bottom: 0; display: flex; flex-direction: column; }
.pro-full2-tarcol .pro-wa-full { margin-top: auto; }

/* Catálogo 2: responsive móvil del detalle a pantalla completa */
@media (max-width: 640px) {
    .pro-full-topbar { padding: .7rem 1rem; }
    .pro-full-title { font-size: 1.05rem; }
    .pro-full-title .pro-modal-cat { display: none; }
    .pro-full-inner { padding: 1rem; }

    .pro-full2-top { gap: 1rem; }
    .pro-full2-mainimg { max-width: 100%; min-height: 300px; }
    .pro-full2-media { grid-template-columns: repeat(2, 1fr); gap: .5rem; }

    /* Apilado: no forzar estiramientos que se ven raros en una sola columna */
    .pro-full2-tarcol .pro-tarifas { display: block; }
    .pro-full2-tarcol .pro-wa-full { margin-top: .65rem; }

    .pro-cmodal-panel { max-height: 88vh; }
    .pro-lightbox { padding: 1rem; }
    .pro-lb-nav { width: 44px; height: 44px; }
    .pro-lb-nav.prev { left: .4rem; }
    .pro-lb-nav.next { right: .4rem; }
}

/* =====================================================================
   Pie de página del sitio público (premium)
   ===================================================================== */
.pro-foot {
    margin-top: 3rem;
    border-top: 1px solid var(--pro-border);
    background: rgba(0,0,0,.25);
    color: var(--pro-muted);
    font-size: .9rem;
}
.pro-foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2rem;
    padding: 2.6rem 1.25rem 1.6rem;
}
.pro-foot-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: .6rem;
}
.pro-foot-logo i { color: var(--pro-gold); }
.pro-foot-brand p { margin: 0 0 1rem; line-height: 1.6; max-width: 340px; }
.pro-foot-social { display: flex; gap: .6rem; }
.pro-foot-social a {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--pro-surface); border: 1px solid var(--pro-border);
    color: var(--pro-text); text-decoration: none; transition: all .15s ease;
}
.pro-foot-social a:hover { color: var(--pro-gold); border-color: var(--pro-gold); transform: translateY(-2px); }

.pro-foot-col h4 {
    color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
    font-weight: 600; margin: 0 0 .9rem;
}
.pro-foot-col a,
.pro-foot-link {
    display: block; color: var(--pro-muted); text-decoration: none;
    padding: .28rem 0; font-size: .9rem; transition: color .15s ease;
    background: none; border: none; cursor: pointer; text-align: left; font-family: inherit;
}
.pro-foot-col a:hover,
.pro-foot-link:hover { color: var(--pro-gold); }

.pro-foot-18 {
    max-width: 1240px; margin: 0 auto; padding: .9rem 1.25rem;
    border-top: 1px dashed var(--pro-border);
    color: #b9b2a7; font-size: .82rem; line-height: 1.5; display: flex; gap: .6rem; align-items: flex-start;
}
.pro-foot-18 i { color: var(--pro-gold); margin-top: .1rem; }

.pro-foot-bottom {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem;
    max-width: 1240px; margin: 0 auto; padding: 1rem 1.25rem 1.6rem;
    border-top: 1px solid var(--pro-border); font-size: .8rem;
}
.pro-foot-adult {
    color: #1a1407; background: linear-gradient(180deg, var(--pro-gold), var(--pro-gold-2));
    border-radius: 999px; padding: .25rem .8rem; font-weight: 700; font-size: .74rem;
}

@media (max-width: 820px) {
    .pro-foot-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .pro-foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .pro-foot-grid { grid-template-columns: 1fr; }
    .pro-foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* Footer: fuentes del sitio + contacto como link + mejor distribución */
.pro-foot { font-family: 'Poppins', 'Segoe UI', sans-serif; }
.pro-foot-logo { font-family: 'Playfair Display', serif; }
.pro-foot-brand p { font-weight: 300; }
.pro-foot-col h4 { font-family: 'Poppins', 'Segoe UI', sans-serif; }
.pro-nav-btn { cursor: pointer; }
.pro-foot-contacto { cursor: pointer; }

/* Distribución: marca a la izquierda, tres columnas de enlaces a la derecha */
.pro-foot-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1.5rem 2.5rem;
    align-items: start;
    padding: 3rem 1.25rem 1.8rem;
}
.pro-foot-18 { justify-content: center; text-align: center; max-width: 900px; }
.pro-foot-18 { align-items: center; }

/* Footer dentro del detalle a pantalla completa */
.pro-full-foot { margin-top: 2.5rem; }

/* Móvil: ocultar la etiqueta "Medios de pago" (dejar solo el ícono + medios) */
@media (max-width: 640px) {
    .pro-medios-txt { display: none; }
}

/* Términos y condiciones (modal + página) */
.pro-terminos-title {
    font-family: 'Playfair Display', serif;
    color: var(--pro-text);
    font-size: 1.25rem;
    margin: 0 0 1rem;
}
.pro-terminos-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--pro-muted);
    font-size: .92rem;
    line-height: 1.6;
}
.pro-terminos-list li { margin-bottom: .8rem; }
.pro-terminos-list li::marker { color: var(--pro-gold); }
.pro-terminos-box {
    background: var(--pro-surface);
    border: 1px solid var(--pro-border);
    border-radius: 14px;
    padding: 1.6rem 1.8rem;
}
