body {
    font-family: 'Poppins', sans-serif;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.fade-up {
    animation: fadeUp .7s ease both;
}

/* Eventos */
.ev-track {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px;
}

.ev-track::-webkit-scrollbar {
    display: none;
}

.ev-item {
    position: relative;
    flex: 0 0 230px;
    padding: 0 24px 32px 0;
}

.ev-item::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(225, 173, 53, .25);
}

.ev-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #E1AD35;
    border: 3px solid #032737;
    outline: 2px solid #E1AD35;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

/* Mosaico */
.mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(3, 240px);
    gap: 5px;
}

.m-item:nth-child(1) {
    grid-column: 1/6;
    grid-row: 1/3;
}

.m-item:nth-child(2) {
    grid-column: 6/9;
    grid-row: 1/2;
}

.m-item:nth-child(3) {
    grid-column: 9/13;
    grid-row: 1/2;
}

.m-item:nth-child(4) {
    grid-column: 6/10;
    grid-row: 2/3;
}

.m-item:nth-child(5) {
    grid-column: 10/13;
    grid-row: 2/3;
}

.m-item:nth-child(6) {
    grid-column: 1/4;
    grid-row: 3/4;
}

.m-item:nth-child(7) {
    grid-column: 4/8;
    grid-row: 3/4;
}

.m-item:nth-child(8) {
    grid-column: 8/11;
    grid-row: 3/4;
}

.m-item:nth-child(9) {
    grid-column: 11/13;
    grid-row: 3/4;
}

@media(max-width:900px) {
    .mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .m-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        height: 200px;
    }

    .m-item:nth-child(1) {
        grid-column: span 2 !important;
        height: 280px;
    }
}

.m-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 3px;
}

.m-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.m-item:hover img {
    transform: scale(1.07);
}

.m-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 39, 55, .85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .35s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.m-item:hover .m-ov {
    opacity: 1;
}

.m-exp {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(225, 173, 53, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .3s, transform .3s;
}

.m-item:hover .m-exp {
    opacity: 1;
    transform: scale(1);
}

.m-item.hidden-item {
    display: none;
}

/* Filtros */
.gf {
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid #d1d5db;
    cursor: pointer;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: transparent;
    color: #032737;
}

.gf.active {
    background: #032737;
    color: #E1AD35;
    border-color: #032737;
}

/* Vida ISEU hover */
.vida-i {
    border-left: 2px solid transparent;
    transition: border-color .3s, background .3s;
    padding: 1.25rem 1.5rem;
    border-radius: 0 12px 12px 0;
}

.vida-i:hover {
    border-left-color: #E1AD35;
    background: rgba(225, 173, 53, .05);
}

/* Mapa tooltip */
.map-tip {
    position: absolute;
    background: #032737;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    pointer-events: none;
    opacity: 0;
    transition: opacity .2s;
    white-space: nowrap;
    border-left: 3px solid #E1AD35;
    z-index: 10;
}

.map-tip.show {
    opacity: 1;
}

.epin {
    cursor: pointer;
}

/* Lightbox */
.lb {
    position: fixed;
    inset: 0;
    background: rgba(3, 39, 55, .97);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.lb.open {
    opacity: 1;
    pointer-events: all;
}

#lb-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}

.lb-btn {
    position: fixed;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: #fff;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: border-color .2s, background .2s;
}

.lb-btn:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.lb-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lb-prev {
    top: 50%;
    left: 1.5rem;
    transform: translateY(-50%);
}

.lb-next {
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
}

.lb-cap {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
}