@font-face {
    font-family: "adelle_bold";
    src: url("/font/Adelle_Bold.otf");
}

@font-face {
    font-family: "adelle_heavy";
    src: url("/font/Adelle_Heavy.otf");
}

@font-face {
    font-family: "adelle_semibold";
    src: url("/font/Adelle_Semibold.otf");
}

:root {
    --font-family-bold: "adelle_bold";
    --font-family-semibold: "adelle_semibold";
    --font-family-heavy: "adelle_heavy";

    --color-red-01: #dd0209;
    --color-red-02: #ff0003;
    --color-red-03: #c20821;
    --color-red-04: #bc0a11;
    --color-menu-hover: #febc01;
    --color-white: white;
    --color-black: #1b0a03;
    --color-green: #01b900;
    --color-green2: #3e7f05;

    .btn-black {
        font-family: var(--font-family-bold);
        font-size: 1.5rem;
        width: 290px;
        height: 65px;
        background-color: var(--color-black);
        border: none;
        cursor: pointer;
        color: white;
        border-radius: 20px 20px 0 20px;
    }

    .btn-green {
        font-family: var(--font-family-bold);
        background-color: var(--color-green);
        color: white;
        border-radius: 20px 20px 0 20px;
    }

    .btn-red {
        font-family: var(--font-family-bold);
        font-size: 1.5rem;
        background-color: var(--color-red-01);
        border: none;
        cursor: pointer;
        color: white;
        text-align: center;
        align-items: center;
        border-radius: 20px 20px 0 20px;
    }
}

/* STYLE DEFAULT */

html {
    font-family: var(--font-family-semibold);
}

body {
    margin: 0px auto;
    background-color: var(--color-menu-hover);
}

h1 {
    font-family: var(--font-family-bold);
}

h2 {
    font-family: var(--font-family-bold);
    font-size: 3.1rem;
}

h3 {
    font-family: var(--font-family-heavy);
    font-size: 1.08rem;
}

ul,
a {
    list-style: none;
    text-decoration: none;
}

p {
    font-family: var(--font-family-bold);
    font-size: 1rem;
    line-height: 150%;
}

/* STYLE RED TAG NOS TEXTOS */

p>em>strong {
    display: flex;
    align-items: center;
    font-family: var(--font-family-bold);
    font-size: 1.2rem;
    background-color: var(--color-red-02);
    width: fit-content;
    height: fit-content;
    border: none;
    color: white;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 15px 15px 0 15px;
    margin-block: 20px 15PX;
}

/* STYLE HEADER */

.header-nav {
    width: 100%;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    background-color: var(--color-red-01);
}

.header-container {
    position: relative;
    max-width: 1920px;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    /* box-sizing: border-box; */
}

.main-logo {
    width: 170px;
    margin-left: 15px;
}

.menu {
    position: absolute;
    width: 900px;
    left: 50%;
    bottom: -1px;
    transform: translateX(-42%);
    display: flex;
    text-align: center;
    gap: 8px;
    padding: 0px;
}

.menu li {
    font-size: 0.8rem;
    position: relative;
    white-space: nowrap;
}

.menu-item {
    color: var(--color-white);

    &:hover {
        color: var(--color-menu-hover);
    }

}

.menu-item.active {
    color: var(--color-menu-hover);
}

.menu-item.active::after {
    content: "▼";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    font-size: 12px;
    color: var(--color-menu-hover);

}

.media-social {
    display: flex;
    gap: 3px;
    max-width: 200px;
    margin-left: auto;
    margin-right: 15px;
}

.media-social a {
    width: 30px;
}

/* BANNERS PAGINAS + DETALHES */


.banners {
    width: 100%;
    display: block;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.banner-principal {
    display: block;
    max-width: 1920px;
    margin: 0px auto;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}

.banner-detalhe {
    display: block;
    width: 1920px;
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* STYLE FOOTER */

.footer-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--color-white);

}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px auto;
    padding: 20px 0;
}




.footer-logo {
    width: 180px;
    /* margin-left: 100px; */
    padding: 0 20px;
}

.media-social-footer {
    display: flex;
    gap: 5px;
    filter: invert(100%);
    margin-left: auto;
    /* margin-right: 100px; */
    padding: 0 15px;
}

/* .label-menu,
.checkbox,
.menu-mobile {
    display: none;
} */

.btn-menu-mobile,
.menu-mobile {
    display: none;
}

/* STYLE TABLET */

@media (max-width: 992px) {

    .media-social-mobile {
        display: none;
    }

    .media-social {
        gap: 15px;

    }

    .media-social a {
        width: 30px;
        padding: 0 3px;
    }

    .header-menu {
        display: none;
    }


    .btn-menu-mobile .hamburger {
        border-top: 0.125rem solid;
        width: 1.25rem;
        color: var(--color-white);
        z-index: 12;
    }

    .btn-menu-mobile .hamburger::before,
    .btn-menu-mobile .hamburger::after {
        content: "";
        display: block;
        width: 1.25rem;
        height: .125rem;
        background: currentColor;
        margin-top: 0.3125rem;
        position: relative;
        transition: 0.3s ease;
    }

    .container-menu-mobile {
        margin-top: 64px;
        display: flex;
        position: absolute;
        width: 100%;
        height: 57px;
        overflow: hidden;
        z-index: 1;
    }

    .header-menu-mobile.active .menu-mobile {
        top: 0;
    }

    .hamburger.active {
        border-top-color: transparent;
    }

    .hamburger.active::before {
        transform: rotate(135deg);
    }

    .hamburger.active::after {
        transform: rotate(-135deg);
        top: -0.4375rem;
    }


    .menu-mobile {
        display: flex;
        position: absolute;
        top: -4rem;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        gap: 10px;
        width: 100%;
        background-color: var(--color-red-03);
        margin: 0px auto;
        padding: 20px 0px;
        /* box-sizing: border-box; */
        transition: 0.5s ease;
    }

    .menu-mobile li {
        font-size: 0.875rem;
        position: relative;
    }

    .menu-item-mobile {
        color: var(--color-white);

        &:hover {
            color: var(--color-menu-hover);
        }

    }

    .menu-item-mobile.active {
        color: var(--color-menu-hover);
    }

    .menu-item-mobile.active::after {
        content: "▼";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        font-size: 12px;
        color: var(--color-menu-hover);

    }

    .btn-menu-mobile {
        background: none;
        border: none;
        font: inherit;
        display: flex;
        cursor: pointer;
        margin: 0 20px 5px 0;
        padding: 0.875rem;
    }
}


@media (max-width:768px) {

    .main-logo {
        margin-left: 25px;
    }

    .media-social {
        display: none;
    }

    .media-social-mobile {
        display: flex;
        max-width: 200px;
    }

    .media-social-mobile a {
        width: 30px;
        padding: 0 3px;
    }

    .container-menu-mobile {
        margin-top: 64px;
        display: flex;
        /* position: absolute; */
        width: 100%;
        height: 350px;
        /* overflow: hidden; */
        z-index: 1;
    }

    .menu-mobile {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        top: -20rem;
        transform: translateX(-50%);
        width: 100%;
        background-color: var(--color-red-03);
        margin: 0px auto;
        padding: 20px 0px;
        /* box-sizing: border-box; */
        transition: 0.5s ease;
    }

    /* .header-menu-mobile {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: black;
    } */

    .header-menu-mobile.active .menu-mobile {
        top: 0;
    }

    .menu-mobile li {
        padding: 5px 0;
        font-size: 0.875rem;
        position: relative;
    }

    .menu-item {
        color: var(--color-white);

        &:hover {
            color: var(--color-menu-hover);
        }

    }

    .menu-item.active {
        color: var(--color-menu-hover);
    }

    .menu-item.active::after {
        content: "▼";
        position: absolute;
        /* left: 50%; */
        /* transform: translateX(-50%); */
        /* bottom: -15px; */
        top: 50%;
        left: 100%;
        transform: translateX(15px) translateY(-56%) rotate(-90deg);
        font-size: 12px;
        color: var(--color-menu-hover);

    }

    .footer-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0px auto;
        padding: 20px 0;
        flex-direction: column;
    }

    .media-social-footer {
        display: flex;
        gap: 5px;
        filter: invert(100%);
        margin-left: auto;
        padding: 0 15px;
        margin: 15px 0 0 0;
    }

    .contato-info {
        width: 100%;
        padding: 0 20px;
    }
}