/* Variáveis */
:root {
    --amarelinho-primary: #ffc107;
    --amarelinho-dark: #000000;
    --amarelinho-light: #fff7e6;
    --amarelinho-gray: #666666;
}

/* Reset */
.amarelinho-vitrine,
.amarelinho-login-container,
.amarelinho-form-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Responsivo */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .amarelinho-filtros {
        flex-direction: column;
        align-items: stretch;
    }
    
    .amarelinho-header h1 {
        font-size: 24px;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.amarelinho-card-vaga {
    animation: fadeIn 0.5s ease-out;
}

/* Badges */
.badge-destaque {
    background: #ffc107;
    color: #000;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.badge-novo {
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}