@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Aplicação no Body */
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #0a0a0a; 
    color: #e2e8f0; 
}

.neon-text { 
    text-shadow: 0 0 10px #4ade80, 0 0 20px #4ade80; 
}

.neon-text-small { 
    text-shadow: 0 0 5px #4ade80, 0 0 10px #4ade80; 
}

.neon-border { 
    box-shadow: 0 0 15px rgba(74, 222, 128, 0.3); 
    border-color: #4ade80; 
}

.bg-dark-card { 
    background-color: #161616; 
}

.gradient-btn { 
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%); 
    transition: all 0.3s ease; 
}

.gradient-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4); 
}
