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

/* Aplica a fonte para todos os elementos */
* {
    font-family: 'Poppins', sans-serif;
}

link[rel="icon"] {
    display: none; /* Evita flashes durante o carregamento */
}

/* Estilos da Navbar (ajustados para Poppins) */
.navbar {
    /* ... (mantenha todos os estilos existentes da navbar) ... */
    font-weight: 500; /* Peso médio para os itens do menu */
}

.nav-btn {
    /* ... (estilos existentes do botão) ... */
    font-weight: 600; /* Peso semi-bold para o botão */
}

/* Estilos da Home Section */
.home-section {
    /* ... (mantenha todos os estilos existentes) ... */
}

.home-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400; /* Regular */
}

.home-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700; /* Bold */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.home-description {
    font-size: 1.2rem;
    font-weight: 300; /* Light */
    line-height: 1.6;
    max-width: 600px;
}

/* Responsividade */
@media (max-width: 768px) {
    .home-title {
        font-size: 2.5rem;
        letter-spacing: -0.3px;
    }
    
    .home-subtitle {
        font-size: 1.2rem;
    }
    
    .home-description {
        font-size: 1rem;
    }
}