/*  GERAL  */


body{
    color: #ffff;
    background-color: #151515;
    font-family: 'Fira Sans', sans-serif;
}

main{
    padding-bottom: 140px;
    padding-top: var(--header-height);
    margin-top: calc(0px - var(--header-height));
}
@media (max-width:768px) {
    main{
        padding-bottom: 70px;
    }
}


/* GALERIA */
.galeria h2{
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 900;
}
@media (max-width:768px) {
    .galeria h2{
        margin-top: 14px;
        margin-bottom: 22px;
        font-size: 20px;
    }
}

.imagem-maior-container{
    height: 463px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
@media (max-width:768px) {
    .imagem-maior-container{
        margin-bottom: 30px;
        height: 400px;
    }
}


.imagem-maior{
    height: 100%;
    max-height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 100%;
}

/* SLIDER */


.slider{
    position: relative;
    max-width: 100%;
    margin: auto;
    padding: 0 44px;
}
@media (max-width: 768px) {
    .slider{
    padding: 0 25px;    
    }
}

.slider li{
    display: flex !important;
    justify-content: center;
    align-items: center;
}

.slider .thumbnail-container{
    border: 7px solid white;
    height: 170px;
    width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}
@media (max-width:768px) {
    .slider .thumbnail-container{
        border-width: 5px;
        height: 82px;
        width: 82px;
    }
}

.slider .thumbnail-container img{
    height: 100%;
}

.slick-arrow{
    height: 35px;
    width: 35px;
    border: 7px solid white;
    border-bottom: none;
    position: absolute;
    top: calc(50% - 17px);
    border-radius: 5px;
    --offset: 25px;
    cursor: pointer;
    transition: opacity 0.4s;
}
@media (max-width: 768px) {
   .slick-arrow{
    --offset: 10px;    
    border: 3px solid white;
    border-bottom: none;
    height: 22px;
    width: 22px;
    border-radius: 2px;
    top: calc(50% - 11px);
    }
}

.slick-arrow.slick-prev{
    border-right: none;
    transform: rotate(-45deg);
    left: var(--offset); 
}

.slick-arrow.slick-next{
    border-left: none;
    transform: rotate(45deg);
    right: var(--offset);
}

.slick-disabled{
    opacity: 0;
    pointer-events: none;
}


/* MAIN */
.galeria{
    display: flex;
    flex-direction: column;
    align-items: center;
}
