
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono:wght@100..900&family=Quicksand:wght@300..700&display=swap');

:root {
    --cor-body: #FFF2D0;
    --cor-section: #FFFBF1;
    --cor-texto: #37353E;
    --cor-inputs: #FFFFFF;
    --cor-borda: #ddd;
    --cor-input-focus: #FFB2B2;
    --cor-botao-primario: #E36A6A; 
    --cor-botao-secundario: #FFB2B2;
    --cor-botao-hover: #d1d5db;
    --fonte-titulo: 'Noto Sans Mono', monospace;
    --fonte-corpo: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


a, a:hover {
    color: var(--cor-texto);
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    background-color: var(--cor-body);
    font-family: var(--fonte-corpo);
    width: 100%; 
    max-width: 100vw; 
    min-width: 160px;
    overflow-x: hidden; 
}

header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--cor-body);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    height: 7dvh;
}

nav {
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

nav a {
    font-weight: bolder;
    transition: color 0.3s ease;
    font-size: clamp(1rem, 4vw, 2rem);
}

.header_nav_menu_icon{
    max-width: 40px;
    margin-left: 5px;
}

main {
    width: 100%;
    margin: 0 auto;
    padding: 40px;
    height: 93dvh;
}

section {
    height: 100%;
}

section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    background-color: var(--cor-section);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}



@media (max-width: 768px) {
    nav {
        gap: 2rem;
    }
    
}

@media (min-width: 769px) {
    .header_nav_menu {
        display: none;
    }
}

@media (max-width: 768px) {
    nav {
        justify-content: left;
    }
    .header_nav_links {
        display: none;
    }
    main {
        padding: 5px;
    }
} 

@media (max-width: 480px) {
    main {
        padding: 5px;
    }
    section > div {
        padding: 10px;
    }
} 