@charset "UTF-8";
@import url("../noctua7.css");
@import url("site_page.css");

/* ********************************** INICIO - CONTAINER-APRESENTA-GIF ***************** */

/* ****************** CONTAINER-APRESENTA-GIF */
.container_apresenta_gif {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - (2 * var(--height_42) + var(--height_30)));
    margin: 0;
    padding: 10px 0;
    background-color: var(--color-n7-black);
    box-sizing: border-box;
    animation: abrir_apresentacao_gif 0.8s ease-out;
}

@keyframes abrir_apresentacao_gif {
    from {
        opacity: 0.3;
        scale: 0.2 1;
    }

    to {
        opacity: 1;
        scale: 1 1;
    }
}

/* ****************** CONTAINER-APRESENTA-GIF-MAIN / IMG */
.container_apresenta_gif img {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-n7-light);
    border-bottom: 1px solid var(--color-n7-light);
    box-sizing: border-box;
}

/* ********************************** FIM - CONTAINER-APRESENTACAO-GIF ***************** */

/* ********************************** INICIO - CARDS-HOME-SLIDERS ********************** */

/* ****************** CONTAINER-SLIDERS */
.container-sliders {
    width: 100%;
    margin: 0;
    padding: 5px 0;
    background-color: var(--color-n7-light);
}

/* ****************** SLIDER-CARD */
.slider-card {
    position: relative;
    width: 350px;
    height: 350px;
    margin: 10px auto;
    padding: 0;
    overflow: hidden;
    background-color: var(--color-n7-white);
    border-radius: 10px;
    box-sizing: border-box;
}

/* ****************** SLIDER-CARD / SLIDE-CARD */
.slider-card .slide-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    margin: 0;
    clip-path: circle(0% at 0 50%);
}

/* ****************** SLIDER-CARD / SLIDE-CARD - ACTIVE */
.slider-card .slide-card.active {
    clip-path: circle(150% at 0 50%);
    transition: 2s;
}

/* ****************** SLIDER-CARD / SLIDE-CARD / IMG */
.slider-card .slide-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ****************** NAVIGATION */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 350px;
    transition: opacity 0.5s ease;
}

/* ****************** PREV-BTN / NEXT-BTN */
.prev-btn,
.next-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 50px;
    font-size: 1.7em;
    color: var(--color-n7-middle);
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

/* ****************** PREV-BTN / NEXT-BTN :HOVER */
.prev-btn:hover,
.next-btn:hover {
    color: var(--color-n7-dark);
    background-color: rgba(255, 255, 255, 0.6);
}

/* ****************** PREV-BTN */
.prev-btn {
    border-radius: 0 5px 5px 0;
}

/* ****************** NEXT-BTN */
.next-btn {
    border-radius: 5px 0 0 5px;
}

/* ****************** NAVIGATION-VISIBILITY */
.navigation-visibility {
    display: flex;
    justify-content: center;
    height: 25px;
}

/* ****************** NAVIGATION-VISIBILITY / SLIDE-ICON */
.navigation-visibility .slide-icon {
    width: 15px;
    height: 15px;
    margin: 0 12px;
    border-radius: 50%;
    cursor: pointer;
    background-color: var(--color-n7-gray-light);
    transform: translateY(5px);
}

/* ****************** NAVIGATION-VISIBILITY / SLIDE-ICON - ACTIVE */
.navigation-visibility .slide-icon.active {
    background-color: var(--color-n7-dark);
}

/* ********************************** FIM - CARDS-HOME-SLIDERS ************************* */

/* ********************************** INÍCIO - @MEDIA SCREEN / CARDS ******************* */

@media screen and (min-width: 430px) {

    /* ****************** CONTAINER-APRESENTA-GIF */
    .container_apresenta_gif {
        background-color: var(--color-n7-white);
    }

    /* ****************** CONTAINER-APRESENTA-GIF-MAIN / IMG */
    .container_apresenta_gif img {
        width: 420px;
        border-top: none;
        border-bottom: none;
        border-radius: 5px;
    }
}

@media screen and (min-width: 500px) {

    /* ****************** CONTAINER-APRESENTA-GIF-MAIN */
    .container_apresenta_gif img {
        width: 455px;
    }
}

@media screen and (min-width: 576px) {

    /* ****************** SLIDER-CARD */
    .slider-card {
        width: 440px;
        min-height: 440px;
    }

    /* ****************** NAVIGATION */
    .navigation {
    height: 440px;
}
}

@media screen and (min-width: 576px) and (max-height: 430px) {}

@media screen and (min-width: 768px) {}

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

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

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

/* ********************************** FIM - @MEDIA SCREEN / CARDS ********************** */