﻿:root {
    font-size: 19px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #39555E;
    margin: 80px 0 40px 0;
    padding: 0 80px;
}

main {
    text-align: center;
}


/* Barra de navegação */
.navegacao {
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #39555E;
}

.navegacao .paginas {
    display: none;
    background-color: #333;
}

.navegacao a {
    color: white;
    padding: 14px 16px;
    text-decoration: none;
    display: block;
}

.navegacao a.icone {
    background: black;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}

.navegacao a.-paginaAtual {
    background-color: #AC1019;
}

.navegacao a:hover {
    background-color: #ddd;
    color: black;
}

.caixaDestaque {
    background-color: #39555E;
    color: white;
    padding: 20px;
    margin: 10px;
}
.caixaDestaque a {
    color: cyan;
}

.sendoDesenvolvido {
    background-color: #AC1019;
    color: white;
    padding: 20px;
    margin: 20px auto 10px auto;
    width: max-content;
}

/* Footer */
.rodape {
    background-color: #39555E;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    margin-top: 80px;
}

.rodape > div:nth-child(1) {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.rodape a {
    color: cyan;
}

.logos {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    width: 100%;
    height: 100%;
}

.logos img {
    width: 100px;
    height: fit-content;
}

.creditos div {
    margin: 20px 0;
    width: 200px;
}

.creditos div p:not(:nth-child(1)) {
    color: #90c0cf;
    font-size: 0.9rem;
}

p.maisInfo {
    margin-top: 10px;
}


@media (min-width: 800px) {/* Para Desktop */
    :root {
        font-size: 16px;
    }

    main {
        margin: 0 5%;
    }

    .logos {
        flex-direction: row;
    }

    .rodape .logos img {
        width: 110px;
        height: fit-content;
    }

    .creditos {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
    .creditos div {
        width: 250px;
    }
    
    p.maisInfo {
        margin-top: 30px;
    }
}