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

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

html {
    font-size: 16px;
    line-height: 1.5;
    /* Tipografia padrão do sistema */
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #212121; /* Cor de texto principal */
    background-color: #FAFAFA; /* Cor de fundo */
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
}

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

/* Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Estrutura de Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Responsividade e Flexbox/Grid */
.header .container,
.nav-list {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    gap: 1.5rem;
}

.content-section {
    padding: 4rem 0; /* Espaçamento generoso */
}

.specifications-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        padding: 1rem;
    }
    
    .nav-list {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .content-section {
        padding: 2rem 0;
    }
}
