:root {
    --principal: #222;
    --off: #FFF;
}

body {
    background: url(../imgs/bg.jpg) no-repeat fixed center;
    background-attachment: cover;
    font: 16x Quicksand, Poppins, Verdana;
}

header {
    margin-top: 10px;
    font: 16px Poppins;
    text-transform: uppercase;
    .navbar {
        border-radius: 10px;
        box-shadow: 0 0 20px #CCC;
        .nav-link:hover {
            color: orangered;
        }
    }
    .d-flex a {
        color: var(--principal);
        margin-left: 10px;
        font-size: 1.3em;
    }
}

.dark {
    background: #000 !important;
    color: #FF0 !important;
    #banner {
        h2, h3 {
            color: #FF0 !important;
        }
    }
    .navbar, .card {
        background: #000 !important;
    }
    a {
        color: #ff0 !important;
    }
}

#banner {
    border-bottom: 1px solid #CCC;
    h3 {
        color: orangered;
        font-size: 1.3em;
    }
    h2 {
        font-size: 3em;
        color: var(--principal);
        font-weight: 800;
        line-height: 50px;
    }
}

.top {
    margin-top: 30px;
}

.btn-outline-warning {
    border-color: red !important;
    color: red !important;
    &:hover {
        background-color: red !important;
        color: white !important;
    }
}


#whats {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 20px;
    right: 10px;
    z-index: 999;
    img {
        width: 100%;
    }
}

#privacidade {
    position: fixed;
    bottom: 0px;
    z-index: 1;
    width: 100%;
    border-top: 1px solid #ccc;
    background-color: #f1f1f1;
    padding: 20px;
    box-sizing: border-box;
    box-shadow: 0 0 20px #CCC;
}

#access {
    position: fixed;
    top: 30%;
    left: 0;
    .btn {
        border-radius: 0 5px 5px 0;
    }
}

.card {
    border-radius: 10px;
    box-shadow: 0 0 20px #CCC;
    margin: 15px 0px;
    border: 0;
    padding: 15px;
    box-sizing: border-box;
}

.margin {
    margin: 100px 0;
}

main {
    h2 {
        line-height: 15px;
        color: var(--principal);
        font-size: 2.2em;
        font-family: Quicksand;
        font-weight: bold;
    }
    h3 {
        line-height: 25px;
        color: orangered;
        font-size: 1.5em;
        font-family: Quicksand;
    }
    h4 {
        line-height: 25px;
        font-size: 1.2em;
        font-family: Quicksand;
        font-weight: bold;
    }
    p {
        margin: 15px 0;
        line-height: 30px;
    }
    a {
        text-decoration: none;
        color: #333;
    }
}

.footer {
    margin: 30px 0 40px 0;
    a {
        color: var(--principal);
        text-decoration: none;
        &:hover {
            color: orangered;
        }
    }
    .midias a {
        margin-right: 20px;
        font-size: 1.3em;
    }
}

section {
    padding: 30px 0;
}

@media (max-width: 480px) {
    #access {
        top: 90%;
        bottom: 10px !important;
        z-index: 999;
    }
}