section.saiba-mais h6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row-reverse;
    flex-wrap: wrap-reverse;
    width: 100%;
}
section.area-acompanhe {
    background-color: eeeeee;
}
section.area-acompanhe .tag-arrow {
    background-color: transparent;
}
main.box-main {
    background-image: url('../img/constelacao/background-main.webp');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    width: 100%;
    padding: 0 1rem 3rem;
}
.box-introduction p {
    margin-bottom: 2rem;
    font-weight: 500;
}
.constelacao .box-introduction {
    position: relative;
}
.constelacao .box-introduction::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -50px;
    background-image: url('../img/constelacao/aspas.webp');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
}
.constelacao .box-introduction::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -50px;
    background-image: url('../img/constelacao/aspas.webp');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    width: 150px;
    height: 150px;
    transform: rotate(180deg);
}
.constelacao .area-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 1rem;
    margin-top: 3rem;
}
.item-gallery.video {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    background-color: #a4a48d;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}
.item-gallery img,
.item-gallery video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
@media (max-width: 1500px) {
    .constelacao .box-introduction::before {
        top: -35px;
        left: -0.5rem;
        width: 100px;
        height: 100px;
    }
    .constelacao .box-introduction::after {
        right: -0.5rem;
        width: 100px;
        height: 100px;
    }
    .constelacao .box-introduction::before,
    .constelacao .box-introduction::after {
        opacity: 0.8;
    }
}
@media (max-width: 950px) {
    .constelacao .area-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .item-gallery.video {
        grid-column: auto;
        grid-row: auto;
    }
    .item-gallery {
        height: 400px;
    }
    .box-introduction p {
        font-size: 16px;
    }
}
@media (max-width: 800px) {
    main.box-main {
        background-position-x: 85%;
    }
}
    