* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Google Sans', Arial, sans-serif;
}

body {
    background: #013AA1;
    background: radial-gradient(at right top, #013AA1, #02061C);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

header {
    background-color: transparent;
    padding: 20px;
    text-align: center;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

main {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    padding: 10px;
}

@media (max-width: 900px) {
    .left-content, .right-content {
        display: none;
    }
}

div.left-content, div.right-content {
    background-color: transparent;
    width: 300px;
    min-width: 300px;
    height: 80vh;
    flex-shrink: 0;
}

.cor-esq, .cor-dir {
    width: 300px;
    height: 100vh;
}


section {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5px;
    min-width: 0;
    flex: 1;
    
}

.logo {
    margin: 10px 10px;
    width: 50%;
    display: flex;
    justify-content: center;
    
}

.logo-img {
    width: 100%;
    height: 100%;
}

.text-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


footer {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 200;
}

