* { box-sizing: border-box; }

html {
    font-family: Calibri, Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6rem;
    background-image: url(../img/bg-templocoral.svg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body {
    margin: min( 4rem, 5% ) min( 3rem, 4% );
    background-color: rgba( 255, 255, 255, .97 );
    border-radius: .5rem;
    padding: 2rem;
    box-shadow: 2rem 2rem 3.5rem rgba( 60, 60, 60, .7 );
    min-height: 85vh;
}

header {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

header h1 {
    margin: 0;
}
header h1 img {
    max-width: 45vw;
    height: auto;
}

header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.3rem;
}

header ul li {
    display: block;
}

header ul a {
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    color: #777;
    padding: .7rem 1rem;
}

header ul li.ativo a {
    color: #f36917;
}

header ul li a:hover {
    color: #803b12;
}

header > input, header > ul {
    display: none;
}

header > label, header li.close-menu {
    display: block;
    font-size: 2.5rem;
    cursor: pointer;
    color: #444;
}

@media screen and (max-width: 639px) {
    header > ul {
        position: fixed;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #FFF;
        text-align: center;
    }
    header > input:checked + ul {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
    }
}

@media screen and (min-width: 640px) {
    header {
        justify-content: space-between;
    }
    header > label {
        display: none;
    }
    header ul {
        display: block;
        line-height: 1.6rem;
    }
    header ul li {
        display: inline-block;
    }    
    header ul a {
        font-size: 1.2rem;
    }
    header li.close-menu {
        display: none;
    }
}

blockquote {
    padding-left: 1.2rem;
    margin: 0;
    border-left: 2px solid #52c0c2;
}

hr {
    border-color: #316565;
    border-width: 2px 0 0;
}


.embed, iframe, object {
    max-width: 100%;
}

.fluid-width-video-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
}

.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main ol li {
    margin-bottom: .5rem;
}
