@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #FFF;
    background-color: #272727;
}

img {
    max-width: 100%;
    display: block;
    margin: 0;
    height: auto;
}

a:hover {
    cursor: pointer;
    opacity: 80%;
}

.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.graybg {
    background-color: #373737;
}

.greenbg {
    background-color: #9dff3f;
}

/* ================== TIPOGRAFIA ================== */

h1 {
    font-size: 28px;
    font-weight: bold;
}

h2 {
    margin: 30px 0 5px 0px;
    font-size: 24px;
    font-weight: 800;
}

h3 {
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    color: #999;
}

p {
    margin: 15px 0;
}

p a {
    color: #9dff3f;
    text-decoration: none;
}

b {
    font-weight: bold;
}

i {
    font-style: italic;
}

.green {
    color: #9dff3f;
}

/* ================== BTN ================== */

.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 10px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    text-shadow: 0px 1px 2px #000;
    color: #FFF;
    background-image: linear-gradient(#9dff3f, #71bb2c);
    border-radius: 10px;
}

.btn:hover, .btn:active {
    opacity: 80%;
}

/* ================== HEADER ================== */

header {
    background-color: #171717;
}

header > section > div {
    max-width: 1280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 20px;
}

header img {
    margin: 0 15px 0 0;
}

header ul {
    display: flex;
    color: #fff;
}

header li {
    display: flex;
    align-items: center;
    margin: 0 5px;
    text-align: center;
}

header li a {
    color: #FFF;
    text-decoration: none;
}

header li a:hover, header li a:active {
    color: #9dff3f;
}

header li:first-child {
    margin: 0 5px 0 0;
}

header li:last-child {
    margin: 0 0 0 5px;
}

header .btn {
    margin: 0 0 0 15px;
    border-radius: 5px;
}

@media screen and (max-width: 741px) {
    header nav {
        display: none;
    }
}

/* ================== MAIN ================== */

main > section > div {
    max-width: 1280px;
    display: block;
    margin: 0 auto;
    padding: 20px;
}

main > section > div:last-child {
    max-width: calc(1280px - 40px);
}

/* banners */

main > section > div:first-child {
    padding: 0;
}

.bg1 {
    background-image: url(media/banner-maromba-bet-registrar.webp);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner {
    height: calc(350px - 30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: #FFF;
    background-color: #9dff3f;
}

.banner .btn {
    display: block;
    max-width: fit-content;
    margin: 30px 0 0 0;
    padding: 10px 20px;
    font-size: 22px;
    font-weight: 600;
    background-image: linear-gradient(#000, #000);
    border-radius: 10px;
}

@media screen and (max-width: 741px) {
    .bg1 {
        background-image: url(media/banner-maromba-bet-registrar-mobile.webp);
    }

    .banner .btn {
        margin: 15px 0 0 0;
    }
}

/* promo */

@media screen and (min-width: 741px) {
    .promo {
        max-width: calc(1280px - 40px);
        display: flex;
        align-items: center;
        flex-direction: row;
    }
}

.dnone-mob {
    display: none;
}

.promo > div {
    margin: 0 40px 0 0;
}

.promo > div > span  {
    display: flex;
}

.promo div > span > span:last-child {
    margin-left: 20px;
}

.promo .btn {
    width: 50%;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 20px;
}

@media screen and (max-width: 741px) {
    .promo > div {
        margin: 0;
    }

    .promo > div > span {
        display: block;
    }

    .promo .btn {
        width: 75%;
    }

    .promo div > span > span:last-child {
        margin: 0;
    }

    .dnone-mob {
        display: block;
        margin: 0 auto;
    }

    .dnone-pc {
        display: none;
    }
}

/* antes do footer */

.rating {
    max-width: 50%;
    display: flex;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 14px;
    color: #000;
    background-color: #F7F7F7;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 741px) {
    .rating {
        max-width: 100%;
    }
}

/* ================== FOOTER ================== */

footer > section > div {
    max-width: calc(1280px - 40px);
    margin: 0 auto;
    padding: 20px;
}

.footer-links {
    display: block;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
}

.footer-links a {
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
    color: #999;
}

@media screen and (min-width: 741px) {
    footer {
        text-align: center;
    }

    footer div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer ul {
        display: flex;
    }

    footer li {
        margin: 0px 5px;
    }
}