.volver{

    display:inline-flex;

    align-items:center;

    gap:.5rem;

    padding:.75rem 1.3rem;

    margin-bottom:2rem;

    color:#F5F5F5;

    text-decoration:none;

    font-weight:500;

    border-radius:999px;

    border:1px solid rgba(155,109,255,.35);

    background:rgba(155,109,255,.08);

    backdrop-filter:blur(10px);

    transition:
        background .25s ease,
        border-color .25s ease,
        box-shadow .25s ease,
        transform .25s ease;

}

.volver:hover{

    color:#FFFFFF;

    background:rgba(155,109,255,.18);

    border-color:#9B6DFF;

    box-shadow:0 0 20px rgba(155,109,255,.35);

    transform:translateY(-2px);

}

.volver:active{

    transform:translateY(0);

}

/* ==========================================================
   GALERÍAS
   ========================================================== */

body{

    background:#111111;

    color:#ffffff;

    font-family: "Montserrat", sans-serif;

}

/* ==========================================================
   CABECERA
   ========================================================== */

h1{

    font-family: "Cormorant Garamond", serif;

    font-size:3rem;

    font-weight:600;

    letter-spacing:.08em;

    text-align:center;

    margin-bottom:.3rem;

}

h1::after{

    content:"";

    display:block;

    width:120px;

    height:2px;

    margin:18px auto 0;

    background:#9B6DFF;

    border-radius:999px;

}

/* ==========================================================
   GALERÍA
   ========================================================== */

#galeria{

    margin-top:3rem;

}

/* ==========================================================
   TARJETAS
   ========================================================== */

#galeria img,
#galeria video{

    width:100%;

    display:block;

    border-radius:16px;

    border:1px solid rgba(155,109,255,.25);

    background:#1A1A1A;

    transition:
        transform .20s ease,
        box-shadow .20s ease,
        border-color .20s ease;

}

/* ==========================================================
   EFECTO HOVER
   ========================================================== */

#galeria img:hover,
#galeria video:hover{

    border-color:#9B6DFF;

    box-shadow:
        0 0 24px rgba(155,109,255,.35);

    transform:translateY(-2px);

}

/* ==========================================================
   BOTÓN INVISIBLE DEL VISOR
   ========================================================== */

.visor-foto{

    background:none;

    border:none;

    padding:0;

    width:100%;

}

/* ==========================================================
   VÍDEOS
   ========================================================== */

video{

    background:#000;

}

/* ==========================================================
   MODAL
   ========================================================== */

.modal-content{

    background:transparent;

    border:none;

}

.modal-backdrop.show{

    opacity:.92;

}

#imagenGrande{

    border-radius:12px;

    box-shadow:
        0 0 40px rgba(0,0,0,.6);

}

/* ==========================================================
   SCROLLBAR
   ========================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111111;

}

::-webkit-scrollbar-thumb{

    background:#6D4DB8;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#9B6DFF;

}