.page-evento-sem-descartavel {
    margin-top: 75px;
}

.mobile {
    display: none;
}

.container {
    padding: 20px 40px;
    min-height: auto;
    margin-bottom: 20px;
}

.l-s-89 {
    letter-spacing: 0.089em;
}

.grid {
    display: flex;
    justify-content: space-between;
}

.main-banner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 70px;
}

.main-banner .img-banner {
    width: 100%;
    display: flex;
}

.main-banner .img-banner img {
    width: 100%;
    transition: ease-in-out 1s;
}

.main-banner .text-block {
    z-index: 2;
    position: absolute;
    width: 100%;
    max-width: 1450px;
    bottom: 30px;
    margin: 0 auto;
    padding: 0px 40px;
}

.main-banner .text-block h1 {
    font-size: 24px;
    font-family: 'Open sans';
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
    transition: ease-in-out 0.8s;
}

.main-banner .text-block p {
    font-size: var(text) !important;
    color: #fff;
}

.main-banner .text-block .purchase-btn {
    width: 90px;
    height: 32px;
    background-color: var(--orange);
    color: #fff;
    font-size: var(--text) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.wrap {
    background: var(--mid-green);
}

.accordion {
    margin: 0 auto;
    max-width: 1450px;
    padding: 0px 40px;
    padding-bottom: 20px;

    border-radius: 6px;
    overflow: hidden;
}

/* Cada item */
.accordion details {
    background: transparent;
}

.accordion details {
    border-bottom: 1px solid rgba(0, 0, 0);
    /* linha entre itens */
}

/* Linha/summary clicável */
.accordion summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #111;
    position: relative;
    user-select: none;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion .content p {
    color: #000;
    margin-bottom: 5px;
}

.accordion .content p:last-of-type {
    margin-bottom: 0px;
}

/* Ícone à direita (bolinha com chevron) */
.accordion summary .chev {
    margin-left: auto;
    min-width: 14px;
    height: 14px;
    background-color: #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.accordion summary .chev::before {
    content: "";
    width: 4px;
    height: 4px;
    border-right: 2px solid var(--mid-green);
    border-bottom: 2px solid var(--mid-green);
    transform: rotate(-45deg);
    transition: transform .25s ease;
    margin-left: -2px;
}

/* Conteúdo interno (abre/fecha) */
.accordion .content {
    padding: 0 20px 18px 20px;
    color: #3a3a3a;
    line-height: 1.55;
    animation: slide .28s ease;
}

@keyframes slide {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

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

/* Estado aberto: gira o chevron */
.accordion details[open] summary .chev::before {
    transform: rotate(45deg);
    margin-left: 0px;
    margin-bottom: 2px;
}

.infinite-ctn {
    /* background-color: var(--mid-green); */
}

.container.infos {
    display: flex;
    gap: 40px;
    padding: 40px 40px;
    min-height: auto;
}

.container.infos .banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #525252;
    border-radius: 20px;
    width: 640px;
    height: 461px;
    overflow: hidden;
}

.container.infos .content-container {
    flex: 1;
}

/* .container.infos .content-container p {
    line-height: 110%;
} */

.container.infos .banner video {
    height: 100%;
}

.grid.steps {
    gap: 20px;
    cursor: unset !important;
}

.steps .card {
    width: 305px;
    height: 270px;
    text-align: center;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
}

.steps .card:hover {
    background-color: #9193F8;
}

.steps .step {
    width: 100%;
}


.steps .card-img {
    height: 150px;
    width: 100%;
    border-radius: 20px;
    color: white;
    font-size: 34px;
    line-height: 1.2em;
    font-weight: normal;
    text-decoration: underline;
    text-align: left;
}

.steps .card .card-text {
    color: black;
    display: block;
    width: 100%;
    text-align: start;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    text-transform: uppercase;
    transition: 0.4s ease-in-out;
}

.steps .card:hover .card-text {
    color: #fff;
}

.steps .card .card-text p {
    color: white;
    font-size: 14px;
    text-transform: none;
    line-height: 18px;
    font-weight: 300;
    margin-top: 10px;
}

.scrollable {
    user-select: none;
    cursor: grab;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media only screen and (max-width: 1050px) {
    .container.infos {
        flex-direction: column-reverse;
        padding: 40px 20px;
    }

    .container.infos .banner {
        width: 100%;
        height: auto;
    }

    .container.infos .btn {
        display: none;
    }
}

@media only screen and (max-width: 750px) {
    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .accordion {
        padding: 0px 20px;
    }

    .accordion summary {
        padding: 18px 0px;
    }

    .accordion .content {
        padding: 0 0px 18px 0px;
    }

    .accordion .content img {
        width: 100%;
    }

    .main-banner .text-block {
        padding: 0px 20px;
    }

    .container.ctn-steps {
        padding: 40px 20px;
        padding-right: 0px;
    }

    .steps .card {
        background-color: #9193F8;
    }

    .steps .card .card-text {
        color: white;
    }

    .grid.steps {
        padding-right: 20px;
    }
    .container.steps{
        padding: 40px 20px;
        padding-right: 0px;
    }
}