﻿body{
    font-family: "Outfit", sans-serif;
}


.uno{
    background: #ab163c;
    height: 100vh;
}


header{
    color: white;
    padding: 0 80px !important;
}
header strong{
    width: 100%;
    font-family: "Archivo Black", sans-serif;
    font-size: 30px;
    display: inline-block;
    margin: 12px 0 40px 0;
}
header p{
    font-size: 22px;
}

.logotipo{
    background: white;
    width: 100%;
    margin-top: 120px;
    padding: 12px;
}

.logotipo img{
    width: 100%;
}


.enlaces{
    text-align: center;
    margin-top: 12px;
}
.enlaces a{
    color: white;
    text-decoration: none;
}

.e{
    border: 2px solid transparent;
    background: #81112d;
    font-size: 20px;
    margin-bottom: 12px;
    display: inline-block;
    margin: 0 20px 20px 0;
    padding: 8px 12px;

    border-radius: 20px;
}
.e img{
    height: 30px;
}

.e:hover{
    border: 2px solid white;
}


.efecto{
    padding: 0;
}

.efecto img{
    height: 100vh;
}


.galeria{
    background: #ab163c;
    padding-top: 60px;
    padding-bottom: 60px;
}

.titulo{
    text-align: center;
    color: white;
    font-family: "Archivo Black", sans-serif;
    font-size: 33px;
    margin-bottom: 30px;
}
.subtitulo{
    text-align: center;
    color: white;
    font-family: "Archivo Black", sans-serif;
    font-size: 33px;
}


.video{
    padding: 0;
    cursor: pointer;
}
.video video{
    width: 100%;
    height: 100vh;
}


.galeria img{
    width: 100%;
    height: 300px;
    cursor: pointer;

    object-fit: cover;
}

.galeria .col-md-3{
    padding: 0;
}


.mas{
    background: #ab163c;
    color: white;
    font-size: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
}
.mas strong{
    width: 100%;
    font-size: 27px;
    display: inline-block;
    margin-bottom: 30px;
}

.imagen img{
    width: 100%;
    height: 440px;

    object-fit: cover;
}



.mapa{
    padding: 0;
}
.mapa iframe{
    width: 100%;
    height: 550px;
}


.lugares{
    background: #bf8b61;
    padding-top: 45px;
    padding-bottom: 45px;
}

.l{
    background-color: white;
    text-align: center;
    font-weight: 300;
    color:#bf8b61;
    font-size: 22px;
    padding: 12px;
}
.l img{
    width: 100%;
    height: 250px;

    object-fit: cover;
}
.l strong{
    width: 100%;
    min-height: 58px;
    font-size: 22px;
    line-height: 27px;
    display: inline-block;
    margin-top: 10px;
}



footer{
    background: #81112d;
    padding-top: 60px;
    padding-bottom: 60px;
}

.logo{
    background: white;
    padding: 12px;
}
.logo img{
    width: 100%;
    height: auto;
}

footer iframe{
    width: 100%;
    height: 220px;
}

.pd{
    text-align: center;
}

.pdf{
    height: 90px;
}

footer strong{
    width: 100%;
    text-align: center;
    color: white;
    font-size: 22px;
    display: inline-block;
    margin-bottom: 12px;
}


@media screen and (max-width:1400px){

}

@media screen and (max-width:1200px){

}

@media screen and (max-width:992px){

}

@media screen and (max-width:768px){
    .uno{
        height: auto;
    }
    .logotipo{
        width: 80%;
        margin-top: 30px;
    }
    
    header{
        padding: 0 20px !important;
    }
    .efecto img{
        height: auto;
    }

    .video video{
        height: auto;
    }

    .galeria img{
        height: 250px;
    }
    .l{
        margin-bottom: 30px;
    }
}

@media screen and (max-width:576px){
    .e{
        font-size: 16px;
    }
}



/* =========================
   ✅ CAMBIO PRO: Lightbox Galería
   ========================= */

.galeria [data-gallery] img{
    transition: transform .18s ease, filter .18s ease;
}
.galeria [data-gallery] img:hover{
    transform: scale(1.02);
    filter: brightness(1.06);
}

.lightbox-galeria{
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;
    background: radial-gradient(circle at top, rgba(255,255,255,0.07), rgba(0,0,0,0.78) 35%, rgba(0,0,0,0.93) 100%);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .18s ease;
}

.lightbox-galeria.is-open{
    display: flex;
    opacity: 1;
}

/* Animación de entrada */
.lightbox-galeria.is-opening .lb-content{
    transform: translateY(10px) scale(.985);
    opacity: 0;
}
.lightbox-galeria.is-open .lb-content{
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: transform .22s ease, opacity .22s ease;
}

.lb-content{
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lb-img{
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 28px 90px rgba(0,0,0,.60);
    background: rgba(255,255,255,0.03);

    /* Pro: transición en cambios */
    opacity: 1;
    transform: scale(1);
    transition: opacity .18s ease, transform .18s ease;
    will-change: opacity, transform;
}

/* Estado durante cambio */
.lb-img.is-changing{
    opacity: 0;
    transform: scale(.99);
}

/* Botón cerrar */
.lb-close{
    position: absolute;
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 30px;
    line-height: 46px;
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .15s ease, opacity .2s ease;
    opacity: .95;
}
.lb-close:hover{
    transform: scale(1.06);
    background: rgba(255,255,255,0.18);
    opacity: 1;
}

/* Flechas */
.lb-nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 34px;
    display: grid;
    place-items: center;
    transition: transform .15s ease, background .15s ease, opacity .2s ease;
    user-select: none;
    opacity: .65; /* Pro: más discreto */
}
.lb-prev{ left: 18px; }
.lb-next{ right: 18px; }

.lb-nav:hover{
    transform: translateY(-50%) scale(1.06);
    background: rgba(255,255,255,0.22);
    opacity: 1;
}

/* Pro: en desktop, cuando mueves el mouse dentro, suben */
.lightbox-galeria.is-interactive .lb-nav,
.lightbox-galeria.is-interactive .lb-close{
    opacity: 1;
}

/* Contador */
.lb-counter{
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    color: #fff;
    font-size: 14px;
    letter-spacing: .5px;
    opacity: .9;
}

/* Pequeño hint swipe (opcional) */
.lb-hint{
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,0.08);
    padding: 6px 10px;
    border-radius: 999px;
    opacity: .85;
}

/* Responsive */
@media screen and (max-width:768px){
    .lb-prev{ left: 10px; }
    .lb-next{ right: 10px; }
    .lb-nav{
        width: 48px;
        height: 48px;
        font-size: 28px;
        opacity: .9; /* en móvil sí visibles */
    }
    .lb-close{
        width: 44px;
        height: 44px;
        font-size: 28px;
        line-height: 44px;
        opacity: 1;
    }
}


.mercadoposter{
    padding: 0;
}

.poster2{
    background: url(../images/mercado/poster.jpeg) no-repeat center bottom;
    background-size: cover;
    height: 80vh;
}

.titulos{
    text-align: center;
    font-size: 33px;
    line-height: 70px;
    margin-top: 30px;
}
.titulos strong{
    font-family: 'Pacifico';
    color: #e63e87;
    font-size: 77px;
}
.titulos span{
    background: #5a2b86;
    color: white;
    font-weight: bold;
    padding: 12px;

    border-radius: 50%;
}
.titulos b{
    font-size: 100px;
    color: #5a2b86;
}
.titulos p{
    color: #5a2b86;
    font-size: 22px;
    line-height: 32px;
}


.rosa{
    background: #d92f78;
    padding-top: 60px;
    padding-bottom: 60px;
}



.p1{
    color: white;
    font-size: 20px;
    font-weight: bold;
}
.p2{
    color: #d2d2d2;
}

.t1{
    width: 100%;
    color: white;
    font-size: 43px;
    line-height: 43px;
    font-weight: bold;
    display: inline-block;
}
.t2{
    color: #19d0ff;
    font-size: 50px;
    line-height: 43px;
    font-weight: bold;
}
.t3{
    color: #6a2aa6;
    font-weight: bold;
    font-size: 50px;
}
.t4{
    color: yellow;
    font-size: 60px;
    font-weight: bold;
}




.vids{
    background: #bf8b61;
    padding-top: 40px;
    padding-bottom: 40px;
}

.vid video{
    width: 100%;
}







:root{
    --pink: #e63e87;
    --pink2:#d92f78;
    --purple:#5a2b86;
    --purple2:#6a2aa6;
    --light:#eef3f6;
    --white:#ffffff;
}



/* Polaroids */
.polaroid-row{
    position: relative;
    margin-top: -86px; /* sube sobre la foto grande */
    padding: 0 18px;
}

.polaroid{
    background: var(--white);
    border: 10px solid var(--white);
    border-bottom-width: 24px;
    border-radius: 6px;
    box-shadow: 0 16px 30px rgba(0,0,0,.18);
    overflow: hidden;
    transform: rotate(var(--r, 0deg));
}

.polaroid img{
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.polaroid.p1{ --r: -8deg; }
.polaroid.p2{ --r: 4deg; }
.polaroid.p3{ --r: 10deg; }

/* Polaroids versión rosa */
.polaroid-mini img{ height: 220px; }
.polaroid-mini{ border-width: 9px; border-bottom-width: 18px; }

.polaroid-mini.a{ --r: -8deg; }
.polaroid-mini.b{ --r: 6deg; }
.polaroid-mini.c{ --r: -4deg; }
.polaroid-mini.d{ --r: 10deg; }