/*
 * SEO ECONECT - Estilos Principais
 * Guia didático: Marketing → Next.js Development
 */

body {
    font-family: 'Inter', sans-serif;
    background-color: #F8FAFC;
}

* {
    box-sizing: border-box;
}

/* Layout Principal */
.section-header {
    border-left: 4px solid #3949AB;
    padding-left: 16px;
    margin-bottom: 24px;
}

.section-header h2 {
    margin-bottom: 8px;
}

.section-header code {
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
}

/* Códigos */
pre[class*="language-"] {
    border-radius: 8px;
    margin: 0;
    font-size: 0.85em;
    max-height: 300px;
    overflow: auto;
}

pre {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 16px;
    overflow-x: auto;
    margin: 0;
}

pre code {
    color: #d4d4d4;
    font-family: 'Roboto Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Custom UI */
.feature-chip {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsividade */
@media (max-width: 960px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 600px) {
    .section-header h2 {
        font-size: 1.5rem;
    }

    pre {
        font-size: 0.75rem;
    }
}
