/* Importação da fonte Nunito do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* Definição das variáveis de fonte */
:root {
    --font-primary: 'Nunito', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Aplicação da fonte principal */
h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link, .btn, .section-title {
    font-family: var(--font-primary);
}

/* Aplicação da fonte secundária */
body, p, span, li, input, textarea, select, label {
    font-family: var(--font-secondary);
}

/* Estilos específicos para títulos */
h1, h2, h3 {
    font-weight: 700;
}

h4, h5, h6 {
    font-weight: 600;
}

/* Estilos para elementos de destaque */
.hero h1, .section-title h2, .cta-section h2 {
    font-family: var(--font-primary);
    font-weight: 800;
}

/* Estilos para botões */
.btn {
    font-family: var(--font-primary);
    font-weight: 600;
}
