.sobre {
    background-color: #f3ffff;
    width: 100%;
    padding-bottom: 6%;
}

/* HEADER */
.head {
    width: 100%;
    height: 70px;
    display: flex;
    padding: 10px;
}

.head .logo {
    margin: 10px;
    transform: scale(2);
}

.head nav {
    margin-left: auto;
    padding: 10px;
}

.head nav a {
    margin: 10px;
    font-size: 1.8em;
}

.head nav a:hover {
    text-decoration: underline;
}

.head nav a.btn {
    background-color: white;
    border-radius: 10%;
    padding: 4px 12px;
}

.head nav a.btn:hover {
    background-color: var(--color03);
    text-decoration: none;
    color: white;
}

/* CONTENT */
section {
    width: 100%;
    height: 80vh;
    text-shadow: 2px 2px 2px #00000040;
    font-size: 5em;
    padding: 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 10%;
}

section h1 {
    color: var(--color02);
    margin-top: 20%;
}

section h2 {
    color: var(--color03);
    margin-top: -50px;
}

section .text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

section img {
    z-index: 9;
}

/* ABOUT */
.cem {
    height: 100vh;
    position: relative;
}

.cem, .sobre {
    padding: 0 !important;
    margin: 0 !important;
}

.cem svg {
    position: absolute;
    bottom: 0;
}

.sobre {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1.5em;
    z-index: 1;
}

.sobre h2 {
    margin: 20px;
    font-family: var(--fonteprincipal);
}

.sobre p {
    margin: 10px 50px;
    width: 80%;
}

.checks {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin-top: 20px;
}

/* FOOTER */
footer {
    display: flex;
    justify-content: space-evenly;
    padding: 10px;
    background-color: var(--color04);
    bottom: 0;
    width: 100%;
    margin-top: 40px;
}

footer p, footer a {
    margin: 10px;
}

@media screen and (max-width: 815px) {
    .biblia {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .checks {
        flex-wrap: wrap;
    }

    .cem {
        height: 90vh;
    }
}

@media screen and (max-width: 390px){
    .none {
        display: none;
    }

    section {
        font-size: 3em;
        text-shadow: 2px 1px 1px #00000021;
    }

    section h2 {
        margin-top: -40px;
    }
}

@media screen and (max-width: 300px) {
    .head {
        font-size: 0.5em;
    }
}