@font-face {
    font-family: 'Beni';
    src: url('../fonts/BeniBold.eot');
    src: url('../fonts/BeniBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BeniBold.woff2') format('woff2'),
        url('../fonts/BeniBold.woff') format('woff'),
        url('../fonts/BeniBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/AvenirNextLTPro-Bold.eot');
    src: url('../fonts/AvenirNextLTPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirNextLTPro-Bold.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-Bold.woff') format('woff'),
        url('../fonts/AvenirNextLTPro-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/AvenirNextLTPro-Demi.eot');
    src: url('../fonts/AvenirNextLTPro-Demi.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirNextLTPro-Demi.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-Demi.woff') format('woff'),
        url('../fonts/AvenirNextLTPro-Demi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next LT Pro';
    src: url('../fonts/AvenirNextLTPro-Regular.eot');
    src: url('../fonts/AvenirNextLTPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AvenirNextLTPro-Regular.woff2') format('woff2'),
        url('../fonts/AvenirNextLTPro-Regular.woff') format('woff'),
        url('../fonts/AvenirNextLTPro-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}








body, html {
    margin: 0;
    padding: 0;
    font-family: 'Avenir Next LT Pro';
}

.container {
    width: 1280px;
    max-width: 1280px;
    padding-right: 20px;
    padding-left: 20px;
}

@media (max-width: 768px) {
    .container {
        width: 90;
        max-width: 90%;
        padding-right: 0;
        padding-left: 0;
    }   
}

header {
    background-color: #FF4606;
    height: 74px;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.header__btn {
    width: 220px;
    height: 51px;
}

@media (max-width: 768px) {
    .header__btn {
        width: auto;
        height: 51px;
    }
}

.header__btn a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    border: 2px solid #FFF;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .header__btn a {
        font-size: 14px;
        padding: 0 5px;
    }
}

/* BANNER */
.banner{
    position: relative;
}
.banner img {
    width: 100%;
    height: auto;
}
.banner__cta {
    position: absolute;
    bottom: 20%;
    left: 15%;
}

@media (max-width: 768px) {
    .banner__cta {
        bottom: 50%;
        left: 50%;
        transform: translateX(-50%);
    }
}


.banner__cta a {
    color: #FF4606;
    text-align: center;
    font-family: 'Beni';
    font-size: 44px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    text-decoration: none;
    width: fit-content;
    height: 60px;
    padding: 0 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

@media (max-width: 768px) {
    .banner__cta a {
        font-size: 32px;
        padding: 0 20px;
        width: 150px;
    }
}


/* BONUS */
.bonus {
    background-image: url('../images/bonus__bg.png');
    height: 368px;
    margin-top: -6px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@media (max-width: 768px) {
    .bonus {
        background-image: url('../images/bonus__bg-mobile.png');
        background-position: center;
        height: auto;
        margin-top: -6px;
    }
}

.bonus .container {
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 768px) {
    .bonus .container {
        margin: 40px auto;
    }
}

.bonus__title {
    font-family: 'Beni';
    color: #FFF;
    font-size: 60px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .bonus__title {
        font-size: 40px;
    }
}


.bonus__items {
    display: flex;
    justify-content: center;
    gap: 80px;
}

@media (max-width: 768px) {
    .bonus__items {
        flex-direction: column;
        gap: 40px;
    }
}

.bonus__items .item {
    display: flex;
    justify-content: start;
    align-items: center;
}
.bonus__items .item__content {
    display: flex;
    flex-direction: column;
    color: white;
    padding-left: 15px;
}
.bonus__items .item__title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (max-width: 768px) {
    .bonus__items .item__title {
        font-size: 16px;
        font-weight: bold;
    }
}

.bonus__items .item__subtitle {
    font-weight: 100;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .bonus__items .item__subtitle {
        font-size: 12px;
    }
}

.bonus__btn {
    width: 100%;
    text-align: center;  
}

.bonus__btn a {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    gap: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

/* ESCOLHA */
.escolher {
    background-color: #FF4606;
    height: 335px;
}

@media (max-width: 768px) {
    .escolher {
        height: auto;
        padding: 40px 0;
    }
}

.escolher .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .escolher .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .escolher__image {
        width: 80%;
    }

    .escolher__image img {
        width: 100%;
        height: auto;
    }
}

.escolher__items {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin-left: 80px;
}

@media (max-width: 768px) {
    .escolher__items {
        flex-direction: column;
        margin-left: 0;
        margin-top: 40px;
        gap: 40px;
    }
}

.escolher__items .item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 300px;
    gap: 10px;
    text-align: center;
}

@media (max-width: 768px) {
    .escolher__items .item {
        flex-direction: row;
        justify-content: start;
        width: 100%;
        gap: 20px;
    }
}

.escolher__items .item__image img{
    width: 80px;
    height: 80px;
}

@media (max-width: 768px) {
    .escolher__items .item__image img{
        width: 60px;
        height: 60px;
    }
}

.escolher__items .item__title {
    color: #73339A;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .escolher__items .item__title {
        font-size: 16px;
        text-align: left;
    }
}

.escolher__items .item__description {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .escolher__items .item__description {
        text-align: left;
        padding-left: 0;
        padding-right: 20px;
    }
}

.escolher__items .item__description b {
    font-weight: 600;
}


/* FOOTER */
footer {
    background-color: #73339A;
    padding: 20px 0;
}

.footer .container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer__image {
    width: 192px;
    height: 53px;
}
.footer__image img {
    width: 100%;
}

.footer__socials ul {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
}

.footer__legal {
    color: white;
    text-align: center;
    font-size: 12px;
}
