@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #020617; /* bg-slate-950 */
    color: #f8fafc; /* text-slate-100 */
    antialiased: true;
}

/* Seleção personalizada */
::selection {
    background-color: #34d399; /* bg-emerald-400 */
    color: #020617; /* text-slate-950 */
}

/* Gradiente customizado para a Hero Section */
.hero-gradient {
    background: radial-gradient(ellipse at top, rgba(52, 211, 153, 0.1), #020617 70%);
}