body {
    margin: 0;
    overflow-x: hidden;
    background-size: contain;
    background-position: top;
    color: var(--color-white);
    background-repeat: no-repeat;
    font-family: var(--font-main);
    background-color: rgba(31, 31, 31, 1);
    background-image: url('../img/bg_body2.png') !important;
}


.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero__content {
    gap: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.hero__highlight {
    color: var(--color-primary);
}

.hero__text {
    font-size: 20px;
    font-weight: 200;
    margin: 10px 0 40px;
    text-align: left;
    color: var(--color-white);
}

.hero__text strong {
    font-weight: 700;
}

.hero__text span {
    font-size: 30px;
    font-weight: 700;
}

.support__glass {
    z-index: 1;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 32px;
    padding: 4rem 1.5rem;
    backdrop-filter: blur(5.1px);
    -webkit-backdrop-filter: blur(5.1px);
    background: linear-gradient(180deg, rgba(47, 47, 47, 0.112) 0%, rgba(47, 47, 47, 0) 100%);
}

.footer__top--JR {
    flex-direction: column !important;
}

.footer__mid {
    margin-top: 48px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}


/* MOBILE FIRST (até 767px) */
@media (max-width: 767px) {


    .header__nav-header {
        display: flex;
        width: 76%;
        padding-left: 66px;
        margin-top: 48px;
        justify-content: space-around;
        align-items: center;
        align-content: center;
        flex-direction: row;
    }

    .header__nav.nav--desktop {
        display: none;
    }

    .hamburger {
        display: block;
        border-radius: 4px;
        background: rgba(0, 0, 0, 0.20);
    }

    .header__nav.nav--mobile {
        display: flex;
    }

    .header__container {
        flex-direction: row;
        padding: 20px 20px 20px 50px;
        width: auto;
        align-items: center;
    }

    .header__container> :first-child {
        margin: 0 auto;
    }

    .header__container> :last-child {
        margin-left: auto;
    }


    .header__nav {
        flex-direction: column;
        gap: 10px;
    }

    .header__nav a {
        padding: 10px 0;
        font-size: 14px;
    }

    .faq__list details {
        padding: 10px 12px !important;
    }

    .faq__list details[open] {
        padding: 10px 24px;
        border: 2px solid var(--color-black);
    }
    .faq__list details {
        width: 100%;

    }

    .faq {
        padding: 60px 24px;
    }

    .hero__text {

        text-align: center;

    }

    .support__grid {
        width: 100%;
    }

    .support__item {
        width: inherit;
        height: auto;
        padding: 24px 24px;
    }

    .support__item--ballon {
        width: 80%;
        height: auto;
        padding: 24px 48px;
    }

    .support__glass {
        width: 100%;
        padding: 0rem 0px !important;
    }

    .footer__top--JR {
        padding: 48px 24px;
        flex-direction: column !important;
    }

    .support__text {
        padding: 0px 0px;
    }

    .footer__mid {
        flex-direction: column;
        gap: 20px;
    }
}

/* TABLET (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {}

/* INTERMEDIÁRIO (1025px – 1199px) */
@media (min-width: 1025px) and (max-width: 1199px) {}