/* assets/css/base.css - Reset e Estrutura Básica */

/* Reset Básico */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Tipografia Padrão do Sistema */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: #333; /* Cor de texto padrão */
    background-color: #fff; /* Cor de fundo padrão */
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Estrutura de Conteúdo */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsividade com Flexbox e Grid */
.container {
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 15px 0;
}

header .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px; /* Tamanho do logo */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    padding: 5px 10px;
    transition: color 0.3s;
}

/* Main Sections */
main section {
    padding: 60px 0; /* Espaçamento generoso */
}

main section .container {
    gap: 30px;
}

/* Footer */
footer {
    padding: 20px 0;
    text-align: center;
}

footer .contact-info {
    padding: 10px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        margin-top: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }

    main section {
        padding: 40px 0;
    }
}
