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

/* ********************************** INÍCIO - ORACOES-HOME-CAROUSEL ******************* */

/* ****************** BLOCK_SLIDER_CONTENT */
#block_slider_content {
    width: 100%;
    padding: 0;
    margin: 0;
    transform-style: preserve-3d;
}

/* ****************** BLOCK_SLIDER_CAROUSEL */
#block_slider_carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 0;
    margin: 0;
    transform-style: preserve-3d;
}

/* ****************** BOX */
.box {
    position: relative;
    display: flex;
    transform-style: preserve-3d;
    perspective: 500px;
}

/* ****************** BOX / ITEM */
.box .item {
    position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 100px);
    width: 200px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    background-color: var(--color-n7-gray-light);
    transition: all 0.5s ease;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    transform-style: preserve-3d;
    transform-origin: bottom;
    user-select: none;
}

/* ****************** BOX / ITEM:NTH-CHILD(1) */
.box .item:nth-child(1) {
    transform: translate3d(-250px, 0, 0) scale(0.8) rotateY(25deg);
    z-index: 1;
}

/* ****************** BOX / ITEM:NTH-CHILD(2) */
.box .item:nth-child(2) {
    transform: translate3d(-250px, 0, 0) scale(0.8) rotateY(25deg);
    z-index: 2;
}

/* ****************** BOX / ITEM:NTH-CHILD(3) */
.box .item:nth-child(3) {
    transform: translate3d(-150px, 0, 0) scale(0.9) rotateY(15deg);
    z-index: 3;
}

/* ****************** BOX / ITEM:NTH-CHILD(4) */
.box .item:nth-child(4) {
    transform: translate3d(0px, 0, 0) scale(1) rotateY(0deg);
    z-index: 4;
}

/* ****************** BOX / ITEM:NTH-CHILD(5) */
.box .item:nth-child(5) {
    transform: translate3d(150px, 0, 0) scale(0.9) rotateY(-15deg);
    z-index: 3;
}

/* ****************** BOX / ITEM:NTH-CHILD(6) */
.box .item:nth-child(6) {
    transform: translate3d(250px, 0, 0) scale(0.8) rotateY(-25deg);
    z-index: 2;
}

/* ****************** BOX / ITEM:NTH-CHILD(7) */
.box .item:nth-child(7) {
    transform: translate3d(250px, 0, 0) scale(0.8) rotateY(-25deg);
    z-index: 1;
}

/* ****************** BOX / ITEM / IMG */
.box .item img {
    position: absolute;
    top: 30px;
    left: 5px;
    right: 5px;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    padding: 5px;
    object-fit: cover;
}

/* ****************** BOX / ITEM / SPAN */
.box .item span {
    position: absolute;
    top: 250px;
    left: 5px;
    right: 5px;
    width: 100%;
    text-align: center;
}

/* ****************** BUTTONS */
.buttons {
    position: absolute;
    bottom: 10px;
    display: flex;
    gap: 5px;
}

/* ****************** BUTTONS / SPAN */
.buttons span {
    position: relative;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-n7-dark);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    opacity: 0.5;
}

/* ****************** BUTTONS / SPAN:HOVER */
.buttons span:hover {
    opacity: 1;
}

/* ****************** BUTTONS / SPAN::BEFORE */
.buttons span::before  {
    content: "";
    position: absolute;
    left: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-n7-dark);
    border-left: 2px solid var(--color-n7-dark);
    rotate: -45deg;
}

/* ****************** BUTTONS / SPAN:LAST-CHILD::BEFORE */
.buttons span:last-child::before  {
    content: "";
    position: absolute;
    left: initial;
    right: 15px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-n7-dark);
    border-left: 2px solid var(--color-n7-dark);
    rotate: 135deg;
}

/* ********************************** FIM - ORACOES-HOME-CAROUSEL ********************** */

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

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

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

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

@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 ********************** */